-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhackernews_comment.go
179 lines (154 loc) · 4.64 KB
/
hackernews_comment.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
package main
import (
"encoding/json"
"errors"
"fmt"
"strconv"
"strings"
"github.com/go-resty/resty/v2"
log "github.com/sirupsen/logrus"
"github.com/slack-go/slack"
"gorm.io/gorm"
)
type HackerNewsComment struct {
ID int32 `gorm:"AUTO_INCREMENT" form:"id" json:"id"`
ObjectID string `gorm:"not null" form:"object_id" json:"object_id"`
}
func getHackernewsComments(config *Config) ([]HackerNewsResult, error) {
var results []HackerNewsResult
page := 0
for {
log.WithField("page", page).Info("Fetching page")
var response HackerNewsResponse
client := resty.New()
_, err := client.R().
SetQueryParams(map[string]string{
"query": config.Tag,
"tags": "comment",
"page": strconv.FormatInt(int64(page), 10),
}).
SetResult(&response).
Get("http://hn.algolia.com/api/v1/search_by_date")
if err != nil {
return results, err
}
page += 1
if len(response.Hits) == 0 {
break
}
for _, result := range response.Hits {
if len(result.HighlightResult.Author.MatchedWords) > 0 {
if !strings.Contains(strings.ToLower(result.HighlightResult.Author.Value), config.Tag) {
continue
}
}
if len(result.HighlightResult.CommentText.MatchedWords) > 0 {
if !strings.Contains(strings.ToLower(result.HighlightResult.CommentText.Value), config.Tag) {
continue
}
}
if len(result.HighlightResult.StoryTitle.MatchedWords) > 0 {
if !strings.Contains(strings.ToLower(result.HighlightResult.StoryTitle.Value), config.Tag) {
continue
}
}
if len(result.HighlightResult.StoryURL.MatchedWords) > 0 {
if !strings.Contains(strings.ToLower(result.HighlightResult.StoryURL.Value), config.Tag) {
continue
}
}
results = append(results, result)
}
}
return results, nil
}
func sendSlackNotificationForHackernewsComment(result HackerNewsResult, config *Config) error {
if !config.NotifySlack {
return nil
}
logFields := log.Fields{
"comment_id": result.ObjectID,
}
link := fmt.Sprintf("https://news.ycombinator.com/item?id=%s", result.ObjectID)
fields := []slack.AttachmentField{
{
Title: "Type",
Value: "✍️",
Short: true,
},
}
if len(result.HighlightResult.URL.Value) > 0 {
fields = append(fields, slack.AttachmentField{
Title: "Original Link",
Value: result.HighlightResult.URL.Value,
Short: true,
})
}
attachment := slack.Attachment{
Color: "#36a64f",
Fallback: "New comment on Hacker News!",
AuthorName: result.Author,
AuthorLink: fmt.Sprintf("https://news.ycombinator.com/user?id=%s", result.Author),
TitleLink: link,
Footer: "Hacker News Comment Notification",
FooterIcon: hackernewsIconURL,
Ts: json.Number(strconv.FormatInt(int64(result.CreatedAt.Unix()), 10)),
Fields: fields,
}
log.WithFields(logFields).Info("Notifying slack")
messageOpts := []slack.MsgOption{
slack.MsgOptionAsUser(false),
slack.MsgOptionAttachments(attachment),
slack.MsgOptionIconEmoji(":hacker-news:"),
slack.MsgOptionText("New comment on <"+link+"|Hacker News>", false),
slack.MsgOptionUsername("Hacker News Comment Notifications"),
slack.MsgOptionDisableLinkUnfurl(),
}
api := slack.New(config.SlackToken)
if _, _, err := api.PostMessage(config.SlackChannelID, messageOpts...); err != nil {
return err
}
return nil
}
func processHackernewsComments(config *Config, db *gorm.DB) error {
if err := db.AutoMigrate(&HackerNewsComment{}); err != nil {
return fmt.Errorf("error migrating HackerNewsComment: %w", err)
}
log.Info("Fetching comments")
results, err := getHackernewsComments(config)
if err != nil {
return err
}
inserted := 0
notified := 0
log.WithField("comment_count", len(results)).Info("Processing comments")
for _, result := range results {
logFields := log.Fields{
"comment_object_id": result.ObjectID,
}
var entity HackerNewsComment
if dbResult := db.First(&entity, "object_id = ?", result.ObjectID); !errors.Is(dbResult.Error, gorm.ErrRecordNotFound) {
continue
}
log.WithFields(logFields).Info("Inserting new comment")
entity = HackerNewsComment{
ObjectID: result.ObjectID,
}
if dbResult := db.Create(&entity); dbResult.Error != nil {
log.WithError(dbResult.Error).WithFields(logFields).Fatal("error inserting comment into database")
continue
}
inserted += 1
if err := sendSlackNotificationForHackernewsComment(result, config); err != nil {
log.WithError(err).WithFields(logFields).Fatal("error posting comment to slack")
continue
}
notified += 1
}
log.WithFields(log.Fields{
"processed_comment_count": len(results),
"inserted_comment_count": inserted,
"notified_comment_count": notified,
}).Info("Done with hacker news comments")
return nil
}