-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdevto.go
196 lines (171 loc) · 5.89 KB
/
devto.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
package main
import (
"encoding/json"
"errors"
"fmt"
"strconv"
"time"
"github.com/go-resty/resty/v2"
log "github.com/sirupsen/logrus"
"github.com/slack-go/slack"
"gorm.io/gorm"
)
var devtoIconURL = "https://emoji.slack-edge.com/T085AJH3L/devto-rainbow/387781e03f7a17fe.png"
type DevtoArticle struct {
ID int32 `gorm:"AUTO_INCREMENT" form:"id" json:"id"`
ArticleID int64 `gorm:"not null" form:"article_id" json:"article_id"`
Title string `gorm:"not null" form:"title" json:"title"`
}
type DevtoResponse []DevtoArticleResult
type DevtoArticleResult struct {
TypeOf string `json:"type_of"`
ID int `json:"id"`
Title string `json:"title"`
Description string `json:"description"`
ReadablePublishDate string `json:"readable_publish_date"`
Slug string `json:"slug"`
Path string `json:"path"`
URL string `json:"url"`
CommentsCount int `json:"comments_count"`
PublicReactionsCount int `json:"public_reactions_count"`
CollectionID int `json:"collection_id"`
PublishedTimestamp time.Time `json:"published_timestamp"`
PositiveReactionsCount int `json:"positive_reactions_count"`
CoverImage string `json:"cover_image"`
SocialImage string `json:"social_image"`
CanonicalURL string `json:"canonical_url"`
CreatedAt time.Time `json:"created_at"`
EditedAt *time.Time `json:"edited_at"`
CrosspostedAt *time.Time `json:"crossposted_at"`
PublishedAt time.Time `json:"published_at"`
LastCommentAt time.Time `json:"last_comment_at"`
ReadingTimeMinutes int `json:"reading_time_minutes"`
TagList []string `json:"tag_list"`
Tags string `json:"tags"`
User struct {
Name string `json:"name"`
Username string `json:"username"`
TwitterUsername string `json:"twitter_username"`
GithubUsername string `json:"github_username"`
UserID int `json:"user_id"`
WebsiteURL string `json:"website_url"`
ProfileImage string `json:"profile_image"`
ProfileImage90 string `json:"profile_image_90"`
} `json:"user"`
Organization struct {
Name string `json:"name"`
Username string `json:"username"`
Slug string `json:"slug"`
ProfileImage string `json:"profile_image"`
ProfileImage90 string `json:"profile_image_90"`
} `json:"organization"`
FlareTag struct {
Name string `json:"name"`
BgColorHex string `json:"bg_color_hex"`
TextColorHex string `json:"text_color_hex"`
} `json:"flare_tag"`
}
func getDevtoArticles(config *Config) ([]DevtoArticleResult, error) {
var results []DevtoArticleResult
page := 1
for {
log.WithField("page", page).Info("Fetching page")
var response DevtoResponse
client := resty.New()
_, err := client.R().
SetQueryParams(map[string]string{
"per_page": "100",
"page": strconv.FormatInt(int64(page), 10),
"tag": config.Tag,
}).
SetResult(&response).
Get("https://dev.to/api/articles")
if err != nil {
return results, err
}
page += 1
if len(response) == 0 {
break
}
results = append(results, response...)
}
return results, nil
}
func sendSlackNotificationForDevtoArticle(result DevtoArticleResult, config *Config) error {
if !config.NotifySlack {
return nil
}
logFields := log.Fields{
"article_id": result.ID,
"title": result.Title,
}
attachment := slack.Attachment{
Color: "#36a64f",
Fallback: "New article on Dev.to!",
AuthorName: result.User.Username,
AuthorLink: fmt.Sprintf("https://dev.to/%s", result.User.Username),
Title: result.Title,
TitleLink: result.URL,
Footer: "Dev.to Article Notification",
FooterIcon: devtoIconURL,
Ts: json.Number(strconv.FormatInt(int64(result.CreatedAt.Unix()), 10)),
}
log.WithFields(logFields).Info("Notifying slack")
messageOpts := []slack.MsgOption{
slack.MsgOptionAsUser(false),
slack.MsgOptionAttachments(attachment),
slack.MsgOptionIconEmoji(":devto-rainbow:"),
slack.MsgOptionText("New article on <"+result.URL+"|Dev.to>", false),
slack.MsgOptionUsername("Dev.to Article Notifications"),
slack.MsgOptionDisableLinkUnfurl(),
}
api := slack.New(config.SlackToken)
if _, _, err := api.PostMessage(config.SlackChannelID, messageOpts...); err != nil {
return err
}
return nil
}
func processDevtoArticles(config *Config, db *gorm.DB) error {
if err := db.AutoMigrate(&DevtoArticle{}); err != nil {
return fmt.Errorf("error migrating DevtoArticle: %w", err)
}
log.Info("Fetching articles")
results, err := getDevtoArticles(config)
if err != nil {
return err
}
inserted := 0
notified := 0
log.WithField("article_count", len(results)).Info("Processing articles")
for _, result := range results {
logFields := log.Fields{
"article_id": result.ID,
"title": result.Title,
}
var entity DevtoArticle
if dbResult := db.First(&entity, "article_id = ?", result.ID); !errors.Is(dbResult.Error, gorm.ErrRecordNotFound) {
continue
}
log.WithFields(logFields).Info("Inserting new article")
entity = DevtoArticle{
ArticleID: int64(result.ID),
Title: result.Title,
}
if dbResult := db.Create(&entity); dbResult.Error != nil {
log.WithError(dbResult.Error).WithFields(logFields).Fatal("error inserting article into database")
continue
}
inserted += 1
if err := sendSlackNotificationForDevtoArticle(result, config); err != nil {
log.WithError(err).WithFields(logFields).Fatal("error posting article to slack")
continue
}
notified += 1
}
log.WithFields(log.Fields{
"processed_article_count": len(results),
"inserted_article_count": inserted,
"notified_article_count": notified,
}).Info("Done with dev.to articles")
return nil
}