-
Notifications
You must be signed in to change notification settings - Fork 1
/
follower.go
423 lines (330 loc) · 6.83 KB
/
follower.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
/* content
Instagram Bot - autofollow, like, comment dan unfollow not followback (c) Free Angel - [email protected]
please subscribe to my channel :
https://www.youtube.com/channel/UC15iFd0nlfG_tEBrt6Qz1NQ
- follower, load to memory, delete node after action eg like,mention etc
*/
package main
import (
"fmt"
"time"
"github.com/jimlawless/whereami"
)
type _FOLLOWER_DATA struct {
prev, next *_FOLLOWER_DATA
id int64
username string
mentioned bool
followback_checked bool
}
type cFollower struct {
enable bool
chance int
interval int64
mention int
max_follow_back_in_day int
max_follow_back_in_session int
follow_back_interval int64
//run_on_start=1
debug bool
// counter
last_search int64
last_follow_back int64
session_follow_back_count int
day_follow_back_count int
head *_FOLLOWER_DATA
count int
max_node int
max_id string
}
func (F *cFollower) _find(id int64) *_FOLLOWER_DATA {
p := F.head.next
for {
if p == F.head {
return nil
}
if p.id == id {
return p
}
p = p.next
}
}
func (F *cFollower) _add(id int64, username string) bool {
if F.max_node == 0 {
return false
}
p := F._find(id)
if p != nil {
// already exists
return false
}
if F.count >= F.max_node {
// delete first node
first := F.head.next
F.head.next = first.next
first.next.prev = F.head
first.username = ""
first.next = nil
first.prev = nil
first = nil
F.count--
}
// add last
p = new(_FOLLOWER_DATA)
p.next = F.head
p.prev = F.head.prev
F.head.prev.next = p
F.head.prev = p
p.id = id
p.mentioned = false
p.followback_checked = false
p.username = username
F.count++
return true
}
func (F *cFollower) del(id int64) {
p := F._find(id)
if p == nil {
return
}
p.prev.next = p.next
p.next.prev = p.prev
p.username = ""
p.next = nil
p.prev = nil
p = nil
F.count--
}
func (F *cFollower) walk() {
p := F.head.next
for {
if p == F.head {
break
}
fmt.Println(p.id, p.username)
p = p.next
}
}
func (F *cFollower) Initialize() {
F.head = new(_FOLLOWER_DATA)
F.head.next = F.head
F.head.prev = F.head
F.max_node = 5000
F.count = 0
section, err := conf.Section("follower")
if err != nil {
mylog(whereami.WhereAmI(), err)
halt()
}
F.enable = section.ValueOf("enable") == "1"
if !F.enable {
mylog(whereami.WhereAmI(), "Follower is OFF")
return
}
F.max_node = strToInt(section.ValueOf("max_node"))
F.chance = strToInt(section.ValueOf("chance"))
if (F.chance < 1) || (F.chance > 100) {
mylog(whereami.WhereAmI(), "invalid chance value, set to default 75")
F.chance = 75
}
F.interval = strToInt64(section.ValueOf("interval"))
if F.interval < 10 {
F.interval = 15
mylog(whereami.WhereAmI(), "invalid interval value, set to default 15")
}
F.interval = F.interval * 60
F.mention = strToInt(section.ValueOf("mention"))
F.max_follow_back_in_day = strToInt(section.ValueOf("max_follow_back_in_day"))
F.max_follow_back_in_session = strToInt(section.ValueOf("max_follow_back_in_session"))
F.follow_back_interval = strToInt64(section.ValueOf("follow_back_interval"))
if F.follow_back_interval < 3 {
mylog(whereami.WhereAmI(), "follow_back_interval too fast, set to default 3 minutes")
F.follow_back_interval = 3
}
F.follow_back_interval = F.follow_back_interval * 60
F.debug = section.ValueOf("debug") == "1"
if section.ValueOf("run_on_start") != "1" {
F.last_search = time.Now().Unix()
F.last_follow_back = F.last_search
}
F.max_id = ""
}
//func (F)
func (F *cFollower) _get_name_to_mention() string {
if F.head.next == F.head {
return ""
}
p := F.head.next
for {
if p == F.head {
return ""
}
if !p.mentioned {
p.mentioned = true
return p.username
}
p = p.next
}
return ""
}
func (F *cFollower) GetMentions() (res string) {
if F.mention < 1 {
return ""
}
if !getChance(F.chance) {
return ""
}
res = ""
i := 0
for {
if i >= F.mention {
return res
}
s := F._get_name_to_mention()
if s == "" {
return res
}
i++
if i == 1 {
res = "@" + s
} else {
res = res + " @" + s
}
}
}
// return one data used to delte
func (F *cFollower) _get_trash() *_FOLLOWER_DATA {
FollowbackEnable := (F.max_follow_back_in_day > 0) && (F.max_follow_back_in_session > 0)
p := F.head.next
for {
if p == F.head {
return nil
}
if !FollowbackEnable {
if p.mentioned {
return p
}
} else {
if p.mentioned && p.followback_checked {
return p
}
}
p = p.next
}
return nil
}
func (F *cFollower) ClearTrash() {
for {
p := F._get_trash()
if p == nil {
return
}
p.prev.next = p.next
p.next.prev = p.prev
p.username = ""
p.next = nil
p.prev = nil
p = nil
F.count--
}
}
func (F *cFollower) _get_follow_back_not_checked() *_FOLLOWER_DATA {
p := F.head.next
for {
if p == F.head {
return nil
}
if !p.followback_checked {
return p
}
p = p.next
}
return nil
}
func (F *cFollower) _follow_back(CurTime int64) bool {
if F.session_follow_back_count >= F.max_follow_back_in_session {
return false
}
if F.day_follow_back_count >= F.max_follow_back_in_day {
return false
}
if CurTime-F.last_follow_back < F.follow_back_interval {
return false
}
F.last_follow_back = CurTime
if !getChance(F.chance) {
return false
}
// check for followback
p := F._get_follow_back_not_checked()
if p == nil {
return false
}
res, err := Instagram.UserFriendShip(p.id)
p.followback_checked = true
if err != nil {
mylog(whereami.WhereAmI(), err)
return true
}
if !res.FollowedBy {
F.day_follow_back_count++
F.session_follow_back_count++
_, err = Instagram.Follow(p.id)
if err != nil {
mylog(whereami.WhereAmI(), err)
} else {
s := intToStr(F.session_follow_back_count) + ":" + intToStr(F.max_follow_back_in_session) + "," +
intToStr(F.day_follow_back_count) + ":" + intToStr(F.max_follow_back_in_day)
mylog(whereami.WhereAmI(), "Followback :", p.username, s)
s = ""
}
}
return true
}
func (F *cFollower) _search(CurTime int64) bool {
if CurTime-F.last_search < F.interval {
return false
}
F.last_search = CurTime
if !getChance(F.chance) {
return false
}
res, err := Instagram.SelfUserFollowers(F.max_id)
if err != nil {
mylog(whereami.WhereAmI(), err)
return true
}
if len(res.Users) < 1 {
F.max_id = ""
return true
}
i := 0
for _, user := range res.Users {
if F._add(user.ID, user.Username) {
i++
}
}
if i > 0 {
mylog(whereami.WhereAmI(), "Added To Node :", i)
}
return true
}
func (F *cFollower) execute(CurTime int64) bool {
if !F.enable {
return false
}
if F._search(CurTime) {
return true
}
if F._follow_back(CurTime) {
return true
}
F.ClearTrash()
return false
}
func (F *cFollower) new_session() {
F.session_follow_back_count = 0
}
func (F *cFollower) new_day() {
F.day_follow_back_count = 0
}