-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmastodon.go
190 lines (165 loc) · 5.72 KB
/
mastodon.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
package main
import (
"encoding/json"
"errors"
"fmt"
"strconv"
"strings"
"time"
md "github.com/JohannesKaufmann/html-to-markdown"
"github.com/go-resty/resty/v2"
log "github.com/sirupsen/logrus"
"github.com/slack-go/slack"
"gorm.io/gorm"
)
var mastodonIconURL = "https://emoji.slack-edge.com/T085AJH3L/mastodon/18ff0c46d671d904.png"
type MastodonToot struct {
ID int32 `gorm:"AUTO_INCREMENT" form:"id" json:"id"`
TootID string `gorm:"not null" form:"toot_id" json:"toot_id"`
}
type MastodonTootResult struct {
ID string `json:"id"`
CreatedAt time.Time `json:"created_at"`
InReplyToID interface{} `json:"in_reply_to_id"`
InReplyToAccountID interface{} `json:"in_reply_to_account_id"`
Sensitive bool `json:"sensitive"`
SpoilerText string `json:"spoiler_text"`
Visibility string `json:"visibility"`
Language string `json:"language"`
URI string `json:"uri"`
URL string `json:"url"`
RepliesCount int `json:"replies_count"`
ReblogsCount int `json:"reblogs_count"`
FavouritesCount int `json:"favourites_count"`
EditedAt interface{} `json:"edited_at"`
Content string `json:"content"`
Reblog interface{} `json:"reblog"`
Account struct {
ID string `json:"id"`
Username string `json:"username"`
Acct string `json:"acct"`
DisplayName string `json:"display_name"`
Locked bool `json:"locked"`
Bot bool `json:"bot"`
Discoverable bool `json:"discoverable"`
Group bool `json:"group"`
CreatedAt time.Time `json:"created_at"`
Note string `json:"note"`
URL string `json:"url"`
Avatar string `json:"avatar"`
AvatarStatic string `json:"avatar_static"`
Header string `json:"header"`
HeaderStatic string `json:"header_static"`
FollowersCount int `json:"followers_count"`
FollowingCount int `json:"following_count"`
StatusesCount int `json:"statuses_count"`
LastStatusAt string `json:"last_status_at"`
Emojis []interface{} `json:"emojis"`
Fields []struct {
Name string `json:"name"`
Value string `json:"value"`
VerifiedAt time.Time `json:"verified_at"`
} `json:"fields"`
} `json:"account"`
MediaAttachments []interface{} `json:"media_attachments"`
Mentions []interface{} `json:"mentions"`
Tags []struct {
Name string `json:"name"`
URL string `json:"url"`
} `json:"tags"`
Emojis []interface{} `json:"emojis"`
Card interface{} `json:"card"`
Poll interface{} `json:"poll"`
}
func getToots(config *Config) ([]MastodonTootResult, error) {
var response []MastodonTootResult
client := resty.New()
_, err := client.R().
SetResult(&response).
Get(fmt.Sprintf("http://mastodon.social/api/v1/timelines/tag/%s", config.Tag))
return response, err
}
func sendSlackNotificationForMastodonToot(result MastodonTootResult, config *Config) error {
if !config.NotifySlack {
return nil
}
logFields := log.Fields{
"toot_id": result.ID,
}
converter := md.NewConverter("", true, nil)
markdown, err := converter.ConvertString(result.Content)
if err != nil {
return err
}
markdown = strings.ReplaceAll(markdown, "\\*", "*")
link := result.URL
attachment := slack.Attachment{
Color: "#36a64f",
Fallback: "New toot on Mastodon!",
AuthorName: result.Account.Acct,
AuthorLink: result.Account.URL,
Title: "New toot on Mastodon!",
TitleLink: link,
Text: markdown,
MarkdownIn: []string{"text"},
Footer: "Mastodon Toot Notification",
FooterIcon: mastodonIconURL,
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(":mastodon:"),
slack.MsgOptionText("New toot on <"+link+"|Mastodon>", false),
slack.MsgOptionUsername("Mastodon Toot Notifications"),
slack.MsgOptionDisableLinkUnfurl(),
}
api := slack.New(config.SlackToken)
if _, _, err := api.PostMessage(config.SlackChannelID, messageOpts...); err != nil {
return err
}
return nil
}
func processMastodon(config *Config, db *gorm.DB) error {
if err := db.AutoMigrate(&MastodonToot{}); err != nil {
return fmt.Errorf("error migrating MastodonToot: %w", err)
}
log.Info("Fetching toots")
results, err := getToots(config)
if err != nil {
return err
}
inserted := 0
notified := 0
log.WithField("story_count", len(results)).Info("Processing toots")
for _, result := range results {
logFields := log.Fields{
"toot_id": result.ID,
}
var entity MastodonToot
if dbResult := db.First(&entity, "toot_id = ?", result.ID); !errors.Is(dbResult.Error, gorm.ErrRecordNotFound) {
continue
}
log.WithFields(logFields).Info("Inserting new toot")
entity = MastodonToot{
TootID: result.ID,
}
if dbResult := db.Create(&entity); dbResult.Error != nil {
log.WithError(dbResult.Error).WithFields(logFields).Fatal("error inserting toot into database")
continue
}
inserted += 1
if err := sendSlackNotificationForMastodonToot(result, config); err != nil {
log.WithError(err).WithFields(logFields).Fatal("error posting toot to slack")
continue
}
notified += 1
}
log.WithFields(log.Fields{
"processed_toot_count": len(results),
"inserted_toot_count": inserted,
"notified_toot_count": notified,
}).Info("Done with mastodon.social toots")
return nil
}