-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
463 lines (391 loc) · 11 KB
/
main.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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
package main
import (
"bytes"
"encoding/json"
"flag"
"fmt"
"github.com/Davincible/goinsta"
"github.com/aldor007/insti/storage"
"github.com/gorilla/mux"
"github.com/jasonlvhit/gocron"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"io/ioutil"
"log"
"net/http"
"os"
"regexp"
"strconv"
"sync"
"time"
)
var lock sync.RWMutex
var insta *goinsta.Instagram
var users map[string]*goinsta.Instagram
var postSchedule *storage.InstaSchedule
var followersStore map[string]struct{}
var unfollowers []string
var prevFollowCount int
func handleNewUser(w http.ResponseWriter, r *http.Request) {
err := r.ParseForm()
if err != nil {
log.Println("Error parsing form", err)
http.Error(w, "Error parsing form", http.StatusBadRequest)
return
}
login := r.FormValue("login")
password := r.FormValue("password")
if login == "" || password == "" {
log.Println("invalid data", login, password)
http.Error(w, "Invalid data", http.StatusBadRequest)
return
}
localInsta := goinsta.New(login, password)
if err := localInsta.Login(); err != nil {
log.Println("Error login to instagram", err)
http.Error(w, "Error login to instagram", http.StatusBadRequest)
return
}
users[login] = localInsta
fmt.Fprintf(w, "user "+login+" added to local db")
}
func handleUser(w http.ResponseWriter, r *http.Request) {
if r.Method == "POST" {
handleNewUser(w, r)
return
} else {
keys := make([]string, 0, len(users))
for k := range users {
keys = append(keys, k)
}
w.Header().Set("content-type", "application/json")
d, _ := json.Marshal(keys)
w.Write(d)
}
}
func handlePostData(w http.ResponseWriter, r *http.Request) {
err := r.ParseMultipartForm(32 << 20)
if err != nil {
log.Println("Error parsing form", err)
http.Error(w, "Error parsing form", http.StatusBadRequest)
return
}
publishDate, err := strconv.ParseInt(r.PostFormValue("publishDate"), 10, 64)
if err != nil {
log.Println("Error parsing publishDate", err)
http.Error(w, "Error parsing publishDate", http.StatusBadRequest)
return
}
user := r.PostFormValue("user")
publishDate = publishDate / 1000
tm := time.Unix(publishDate, 0)
log.Println("Run at ", tm, " after", tm.Sub(time.Now()))
caption := r.PostFormValue("caption")
file, _, err := r.FormFile("image")
if err != nil {
http.Error(w, "image upload error", http.StatusInternalServerError)
return
}
imageBuf, err := ioutil.ReadAll(file)
if user != "" {
var ok bool
_, ok = users[user]
if !ok {
log.Println("Error unknown user", user)
http.Error(w, "Error unknown user", http.StatusBadRequest)
return
}
}
post := storage.NewInstaPost(user, caption, r.PostFormValue("location"), tm, imageBuf)
err = postSchedule.Set(post)
if err != nil {
log.Println("Unable to store image", err)
http.Error(w, "image save error", http.StatusInternalServerError)
return
}
file.Close()
}
func handleGetSchedule(w http.ResponseWriter, r *http.Request) {
w.Header().Set("content-type", "application/json")
data := postSchedule.GetAll()
list := make([]storage.InstaPost, 0)
for _, v := range data {
v.ImageBuf = nil
list = append(list, v)
}
jsonData := make(map[string][]storage.InstaPost)
jsonData["data"] = list
d, _ := json.Marshal(jsonData)
w.Write(d)
}
func handleGetImage(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
post, err := postSchedule.Get(vars["id"])
if post.ImageBuf == nil || err != nil {
log.Println("Error getting image", err)
http.Error(w, "No image", http.StatusBadRequest)
return
}
w.Header().Set("content-type", "image/jpeg")
w.Header().Set("cache-control", "max-age=3600, public")
w.Write(post.ImageBuf)
}
func handleFollowers(w http.ResponseWriter, r *http.Request) {
unfollowersStr, _ := json.Marshal(unfollowers)
followersArr := make([]string, 0)
for f, _ := range followersStore {
followersArr = append(followersArr, f)
}
followerStr, _ := json.Marshal(followersArr)
res := fmt.Sprintf("Followers count %d followers %s recent unfollows %s", prevFollowCount, string(followerStr), string(unfollowersStr))
fmt.Fprint(w, res)
}
func handleRemovePost(_ http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
postSchedule.Remove(vars["id"])
}
func publishImage(post storage.InstaPost) {
errorCounter := 0
var userInsta *goinsta.Instagram
user := post.User
if user == "" {
userInsta = insta
} else {
var ok bool
userInsta, ok = users[user]
if !ok {
log.Println("Error unknown user", user)
return
}
}
var location *goinsta.Location
if post.Location != "" {
results, err := insta.Searchbar.SearchLocation("Chicago")
if err != nil || len(results.Places) == 0 {
log.Println("Unable to get location")
} else {
location = results.Places[1].Location
results.RegisterLocationClick(location)
}
}
for i := 0; i < 3; i++ {
if !postSchedule.Has(post.ID) {
log.Println("Skip publish", post.ID)
return
}
up := &goinsta.UploadOptions{
File: bytes.NewReader(post.ImageBuf),
Thumbnail: nil,
Album: nil,
Caption: post.Caption,
IsStory: false,
IsIGTV: false,
IGTVPreview: false,
MuteAudio: false,
DisableComments: false,
DisableLikeViewCount: false,
DisableSubtitles: false,
UserTags: nil,
AlbumTags: nil,
}
if location != nil {
up.Location = location.NewPostTag()
}
item, err := userInsta.Upload(up)
if err != nil && errorCounter < 3 {
errorCounter++
log.Println("image upload error", err)
time.Sleep(time.Minute * 5)
} else {
item.Location.City = post.Location
log.Println("Published image")
postSchedule.Remove(post.ID)
return
}
}
}
func postWorker(postsIn *storage.InstaSchedule) {
ticker := time.NewTicker(time.Minute * 1)
go func() {
for {
select {
case <-ticker.C:
posts := postsIn.GetAll()
log.Println("postWorker schedule len", len(posts))
for _, value := range posts {
if time.Now().Sub(value.PublishDate).Seconds() >= 0 {
publishImage(value)
}
}
default:
time.Sleep(1 * time.Second)
}
}
}()
}
var (
followersCount = prometheus.NewGaugeVec(prometheus.GaugeOpts{
Name: "instagram_followers_count",
Help: "followers count for give account",
},
[]string{"account"},
)
errorsMonitoring = prometheus.NewCounter(prometheus.CounterOpts{
Name: "instagram_errors_count",
Help: "instrgram API errors count",
})
likesCount = prometheus.NewGaugeVec(prometheus.GaugeOpts{
Name: "instagram_likes_count",
Help: "likes count for given image",
},
[]string{"imageId"},
)
commentsCount = prometheus.NewGaugeVec(prometheus.GaugeOpts{
Name: "instagram_comments_count",
Help: "comments count for given image",
},
[]string{"imageId"},
)
tagRegexp = regexp.MustCompile("#[a-z_]+")
)
func setInterval(someFunc func(), minutes int) chan bool {
interval := time.Duration(minutes) * time.Minute
ticker := time.NewTicker(interval)
clear := make(chan bool)
someFunc()
go func() {
for {
select {
case <-ticker.C:
someFunc()
case <-clear:
ticker.Stop()
return
}
}
}()
return clear
}
func collectStats(userName *string, ) {
user, err := insta.Profiles.ByName(*userName)
if err != nil {
log.Println("Error getting user", err)
errorsMonitoring.Inc()
return
}
followersCount.WithLabelValues(*userName).Set(float64(user.FollowerCount))
media := user.Feed()
media.Next()
for _, item := range media.Items {
likesCount.WithLabelValues(item.Code).Set(float64(item.Likes))
commentsCount.WithLabelValues(item.Code).Set(float64(item.CommentCount))
}
err = user.Sync()
if err != nil {
log.Println("Sync error", err)
}
if err != nil {
log.Println("Error", err)
}
}
func collectFollowers(userName string) {
user, err := insta.Profiles.ByName(userName)
if err != nil {
log.Println("Error getting user", err)
errorsMonitoring.Inc()
return
}
err = user.Sync()
if err != nil {
log.Println("Sync error", err)
}
currentFollowers := make([]string, 0)
followersCount.WithLabelValues(userName).Set(float64(user.FollowerCount))
followers := user.Followers()
if user.FollowerCount == prevFollowCount {
return
}
log.Println("current followers", user.FollowerCount, prevFollowCount)
prevFollowCount = user.FollowerCount
log.Println(followers.PageSize, len(followers.Users))
followers.Next()
for _, u := range followers.Users {
currentFollowers = append(currentFollowers, u.Username)
}
for followers.Next() {
for _, u := range followers.Users {
currentFollowers = append(currentFollowers, u.Username)
log.Println("Adding2", u.Username)
}
}
log.Println("Checking current followers checker", len(currentFollowers))
for _, u := range currentFollowers {
if _, ok := followersStore[u]; !ok {
followersStore[u] = struct{}{}
log.Println("User added to follower store", u)
}
}
for uInStore, _ := range followersStore {
found := false
for _, u := range currentFollowers {
if uInStore == u {
found = true
log.Println("User found in store", uInStore)
break
}
}
if !found {
log.Println("User unfollow", uInStore)
unfollowers = append(unfollowers, uInStore)
delete(followersStore, uInStore)
}
}
}
func main() {
addr := flag.String("listen", ":8080", "The address to listen on for HTTP requests.")
userName := os.Getenv("USER_TO_OBSERV")
dbPath := flag.String("dbPath", "./data", "CSV file path")
flag.Parse()
users = make(map[string]*goinsta.Instagram)
followersStore = make(map[string]struct{})
unfollowers = make([]string, 0)
postSchedule = storage.NewInstaSchedule(*dbPath)
if userName == "" {
panic("Missing required parameter username")
}
if os.Getenv("INSTA_USERNAME") == "" || os.Getenv("INSTA_PASSWORD") == "" {
panic("Missing env variables with insta user/password for collect user")
}
permStore := os.Getenv("INSTA_DATA_PATH")
log.Println("Collecting data for ", userName)
log.Println("Server listen", *addr)
prometheus.MustRegister(followersCount, likesCount, commentsCount, errorsMonitoring)
var err error
insta, err = goinsta.Import(permStore + ".goinsta")
if err != nil {
insta = goinsta.New(os.Getenv("INSTA_USERNAME"), os.Getenv("INSTA_PASSWORD"))
if err := insta.Login(); err != nil {
log.Println("login error", err)
return
}
}
insta.Export(permStore + ".goinsta")
collectFollowers(userName)
//gocron.Every(1).Hours().Do(collectStats, userName)
gocron.Every(7).Hours().Do(collectFollowers, userName)
go gocron.Start()
go postWorker(postSchedule)
flag.Parse()
fs := http.FileServer(http.Dir("static"))
rtr := mux.NewRouter()
rtr.Handle("/metrics", promhttp.Handler())
rtr.HandleFunc("/post", handlePostData).Methods("POST")
rtr.HandleFunc("/post/{id}", handleRemovePost).Methods("DELETE")
rtr.HandleFunc("/schedule", handleGetSchedule).Methods("GET")
rtr.HandleFunc("/image/{id}", handleGetImage).Methods("GET")
rtr.HandleFunc("/user", handleUser)
rtr.HandleFunc("/followers", handleFollowers)
rtr.PathPrefix("/").Handler(fs)
http.Handle("/", rtr)
log.Fatal(http.ListenAndServe(*addr, nil))
}