-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathoutput.go
164 lines (144 loc) · 5.57 KB
/
output.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
package main
import (
"encoding/json"
"fmt"
"github.com/fbiville/markdown-table-formatter/pkg/markdown"
"github.com/google/go-github/v50/github"
"os"
"strings"
)
const awesomeGnoEmbedURL = "**[gnolang/awesome-Gno](https://github.com/gnolang/awesome-gno)**"
const gnoEmbedURL = "**[gnolang/gno](https://github.com/gnolang/gno)**"
func createOutputFile() (*os.File, error) {
if _, err := os.Stat(opts.outputPath); os.IsNotExist(err) {
err = os.MkdirAll(opts.outputPath, os.ModePerm)
if err != nil {
return nil, err
}
}
outputFile, err := os.Create(opts.outputPath + "report.md")
if err != nil {
return nil, err
}
return outputFile, nil
}
// TODO: Refacto table creation ~Don't repeat yourself
func writeChangelog(issues []*github.Issue, pullRequests []*github.PullRequest, commits []*github.RepositoryCommit, outputFile *os.File) error {
var issuesTable [][]string
for _, issue := range issues {
issuesTable = append(issuesTable, []string{issue.GetTitle(), issue.GetURL(), issue.GetUser().GetLogin()})
}
markdownTable, err := markdown.NewTableFormatterBuilder().
Build("Title", "Link to Body", "Assignee").
Format(issuesTable)
if err != nil {
return err
}
result := fmt.Sprintf("# Changelog ⚙️\n\nThere is **%d new closed issues** in %s since %s\n\n%s", len(issues), gnoEmbedURL, opts.since, markdownTable)
var pullRequestRows [][]string
for _, pr := range pullRequests {
pullRequestRows = append(pullRequestRows, []string{pr.GetTitle(), pr.GetURL(), pr.GetUser().GetLogin()})
}
pullRequestsTable, err := markdown.NewTableFormatterBuilder().
Build("Title", "Link to PR", "Author").
Format(pullRequestRows)
if err != nil {
return err
}
result += fmt.Sprintf("\n\n## New PR\nThere is **%d new closed PR** in %s since %s\n\n%s", len(pullRequests), gnoEmbedURL, opts.since, pullRequestsTable)
result += fmt.Sprintf("\n\n## New commits\nThere is **%d new commits** in %s since %s\n\n", len(commits), gnoEmbedURL, opts.since)
_, err = outputFile.WriteString(result)
if err != nil {
return err
}
return nil
}
// TODO: Refacto table creation ~Don't repeat yourself
func writeBacklog(issues []*github.Issue, pullRequests []*github.PullRequest, outputFile *os.File) error {
var issuesTable [][]string
for _, issue := range issues {
issuesTable = append(issuesTable, []string{issue.GetTitle(), issue.GetURL(), issue.GetUser().GetLogin()})
}
markdownTable, err := markdown.NewTableFormatterBuilder().
Build("Title", "Link to Body", "Assignee").
Format(issuesTable)
if err != nil {
return err
}
result := fmt.Sprintf("# Backlog 💡\n\nThere is **%d new open issues** in %s since %s\n\n%s", len(issues), gnoEmbedURL, opts.since, markdownTable)
var pullRequestRows [][]string
for _, pr := range pullRequests {
pullRequestRows = append(pullRequestRows, []string{pr.GetTitle(), pr.GetURL(), pr.GetUser().GetLogin()})
}
pullRequestsTable, err := markdown.NewTableFormatterBuilder().
Build("Title", "Link to PR", "Author").
Format(pullRequestRows)
if err != nil {
return err
}
result += fmt.Sprintf("\n\n## New PR\nThere is **%d new open PR** in %s since %s\n\n%s", len(pullRequests), gnoEmbedURL, opts.since, pullRequestsTable)
_, err = outputFile.WriteString(result)
if err != nil {
return err
}
return nil
}
// TODO: Refacto table creation ~Don't repeat yourself
func writeCuration(issues []*github.Issue, pullRequests []*github.PullRequest, commits []*github.RepositoryCommit, outputFile *os.File) error {
// Format at Markdown format
var issuesRows [][]string
for _, issue := range issues {
issuesRows = append(issuesRows, []string{issue.GetTitle(), issue.GetURL(), issue.GetUser().GetLogin()})
}
issuesTable, err := markdown.NewTableFormatterBuilder().
Build("Title", "Link to issue", "Author").
Format(issuesRows)
if err != nil {
return err
}
result := fmt.Sprintf("# Curation 📚\n\n## New issues\nThere is **%d updated issues** in %s since %s\n\n%s", len(issues), awesomeGnoEmbedURL, opts.since, issuesTable)
var pullRequestRows [][]string
for _, pr := range pullRequests {
pullRequestRows = append(pullRequestRows, []string{pr.GetTitle(), pr.GetURL(), pr.GetUser().GetLogin()})
}
pullRequestsTable, err := markdown.NewTableFormatterBuilder().
Build("Title", "Link to PR", "Author").
Format(pullRequestRows)
if err != nil {
return err
}
result += fmt.Sprintf("\n\n## New PR\nThere is **%d updated PR** in %s since %s\n\n%s", len(pullRequests), awesomeGnoEmbedURL, opts.since, pullRequestsTable)
result += fmt.Sprintf("\n\n## New commits\nThere is **%d new commits** in %s since %s\n\n", len(commits), awesomeGnoEmbedURL, opts.since)
_, err = outputFile.WriteString(result)
if err != nil {
return err
}
return nil
}
// TODO: Refacto table creation ~Don't repeat yourself
func writeTips(data string, outputFile *os.File) error {
// Format at Markdown format
var rows [][]string
var tweets TweetSearch
authors := make(map[string]string)
_ = json.Unmarshal([]byte(data), &tweets)
for _, user := range tweets.Includes.Users {
authors[user.Id] = user.Username
}
for _, tweet := range tweets.Data {
rows = append(rows, []string{authors[tweet.AuthorId], strings.Replace(tweet.Text, "\n", " ", -1), tweet.CreatedAt})
}
//Maybe build our own table formatter
table, err := markdown.NewTableFormatterBuilder().
Build("Author", "Text", "Created at").
Format(rows)
if err != nil {
return err
}
result := fmt.Sprintf("# Tips 🐦\n\n## New Tweets with #gnotips\nThere is **%d new tweet** about gnotips since %s\n\n%s", tweets.Meta.ResultCount, opts.since, table)
_, err = outputFile.WriteString(result)
if err != nil {
return err
}
return nil
}