forked from 0honus0/CaoLiu_AutoReply
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.py
656 lines (597 loc) · 24.2 KB
/
index.py
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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
import requests
import pickle
import random
import re
import os
import json, yaml
import onetimepass as otp
from time import sleep
from typing import BinaryIO , Dict , List , Union
import base64
import logging.config ,sys
from sendLog import sendLog
DEBUG = False
__verison__ = "2024.08.26-Based-0.23.11.06.1"
def outputLog(projectName):
log = logging.getLogger(f"{projectName}")
log.setLevel(level=logging.DEBUG)
formatter = logging.Formatter('[%(asctime)s] [%(levelname)s]\t%(message)s')
# 输出日志到终端
console_handler = logging.StreamHandler(sys.stdout)
console_handler.level = logging.INFO
console_handler.formatter = formatter
log.addHandler(console_handler)
#输出日志到文件
logdir = os.path.join('/tmp', f'{projectName}.log')
file_handler = logging.FileHandler(logdir, mode='w', encoding='utf-8')
file_handler.formatter = formatter
file_handler.level = logging.DEBUG
log.addHandler(file_handler)
return log
try:
with open("config.yml", "r", encoding='utf8') as file:
config = yaml.load(file, Loader=yaml.FullLoader)
except FileNotFoundError:
log = outputLog('CaoLiu_AutoReply')
log.error("配置文件“config.yml”不存在!")
os._exit(0)
if config.get("gobal_config").get("truecaptcha_config") is not None:
userid : str = config.get("gobal_config").get("truecaptcha_config").get("userid")
apikey : str = config.get("gobal_config").get("truecaptcha_config").get("apikey")
captcha_function = "apitruecaptcha"
elif config.get("gobal_config").get("ttshitu_config") is not None:
userid : str = config.get("gobal_config").get("ttshitu_config").get("userid")
apikey : str = config.get("gobal_config").get("ttshitu_config").get("apikey")
captcha_function = "ttshitu"
usersList = config.get("users_config")
LogFileName : str = config.get("gobal_config").get("LogFileName", "CaoLiu_AutoReply")
AutoUpdate : bool = config.get("gobal_config").get("AutoUpdate", False)
Fid : int = config.get("gobal_config").get("Fid", 7)
PollingTime : int = config.get("gobal_config").get("PollingTime", 5)
ReplyLimit : int = config.get("gobal_config").get("ReplyLimit", 10)
Forbid : bool = config.get("gobal_config").get("Forbid", True)
InputSelf : bool = config.get("gobal_config").get("InputSelf", False)
Like : bool = config.get("gobal_config").get("Like", True)
TimeIntervalStart : int = config.get("gobal_config").get("TimeIntervalStart", 1024)
TimeIntervalEnd : int = config.get("gobal_config").get("TimeIntervalEnd", 2048)
ReplyContent : List = config.get("gobal_config").get("ReplyContent")
ForbidContent : List = config.get("gobal_config").get("ForbidContent")
Proxy : bool = config.get("gobal_config").get("Proxy", False)
if Proxy:
proxies = config.get("gobal_config").get("Proxies")
else:
proxies = {}
DebugMode : bool = config.get("gobal_config").get("DebugMode", False)
log = outputLog(LogFileName)
def getlatest():
url = "https://api.github.com/repos/pooneyy/CaoLiu_AutoReply/releases/latest"
try:
response = requests.get(url, proxies = proxies)
latest = json.loads(response.text)["tag_name"]
return latest
except:return __verison__
def update(latestVesion):
url = f"https://fastly.jsdelivr.net/gh/pooneyy/CaoLiu_AutoReply@{latestVesion}/AutoReply.py"
try:
response = requests.get(url, proxies = proxies)
with open(os.path.basename(__file__), 'wb') as f:
f.write(response.content)
log.info(f"更新到版本 {latestVesion}")
except requests.exceptions.ConnectionError:log.info(f"有新版本 {latestVesion} https://github.com/0honus0/CaoLiu_AutoReply")
def retry(func):
def deco(*args , **kargs):
retry_number = 3
while retry_number > 0:
try:
return func(*args , **kargs)
except IOError:
sleep(3)
retry_number -= 1
except Exception as e:
log.error(e)
break
return deco
def save_cookies(session : requests.Session , filename : str) -> None:
try:
with open(filename, 'wb') as f:
pickle.dump(session.cookies, f)
log.debug(f"save {filename} success")
except:
...
def load_cookies(session : requests.Session , filename : str) -> None:
with open(filename, 'rb') as f:
try:
session.cookies.update(pickle.load(f))
log.debug(f"load {filename} success")
except:
...
def apitruecaptcha(content : BinaryIO) -> str:
image=base64.b64encode(content)
url='https://api.apitruecaptcha.org/one/gettext'
data={
'data':str(image,'utf-8'),
'userid':userid,
'apikey':apikey
}
result = requests.post(url, json.dumps(data), proxies = proxies)
res=result.json()
try:
code = res['result']
except:
log.debug(f"api error,{str(res)}")
code = "XXXX"
log.debug("apitruecaptcha code: %s" % code)
return code
def ttshitu(content : BinaryIO) -> str:
image=base64.b64encode(content)
host='http://api.ttshitu.com/base64'
headers={
'Content-Type':'application/json;charset=UTF-8'
}
data={
'username': userid ,
'password': apikey ,
'image':image.decode('utf-8')
}
res=requests.post(url=host,data=json.dumps(data), proxies = proxies)
if res.json()["code"] == "-1":
log.error("ttshitu api error,info : %s" % res.json()["message"])
os._exit(0)
else:
res=res.text
res=json.loads(res)
res=res['data']['result']
return res
class User:
Like : bool = False
Retry : int = 5
RetryList : int = 10
Host : str = f"https://{config.get('gobal_config').get('Host', 't66y.com')}/"
Index : str = f"{Host}index.php"
Login : str = f"{Host}login.php"
Post : str = f"{Host}post.php?"
Today : str = f"{Host}thread0806.php?fid={Fid}&search=today"
Personal_posted : str = f"{Host}personal.php?action=post"
VerCode : str = f"{Host}require/codeimg.php?"
Api : str = f"{Host}api.php"
UserAgent : str = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36"
ReplyList : List = []
Invalid : bool = False
SleepTime : int = 0
ReplyCount : int = ReplyLimit
Headers : Dict = {
'Host': Host.split("//")[1].replace("/", ""),
'Proxy-Connection': 'keep-alive',
'Referer': Login,
'User-Agent': UserAgent,
'Connection': 'close'
}
def __init__(self, username : str , password : str , secret : str) -> None:
self.username : str = username
self.password : str = password
self.secret : str = secret
self.cookies : requests.cookies = None
self.s : requests.Session = requests.Session()
self.file : str = f"./{username}.cookies"
self.excludeContent : list = ForbidContent.copy()
@retry
def check_cookies_and_login(self):
if os.path.exists(self.file):
load_cookies(self.s, self.file)
if self.is_valid_cookies():
if self.is_ban_cookies():
self.set_invalid()
self.s.close()
return
else:
self.cookies = self.s.cookies
self.s.close()
log.info(f"{self.username} cookies is valid , login success")
return
else:
log.info(f"{self.username} cookies is invalid , login again")
if self.login():
self.cookies = self.s.cookies
save_cookies(self.s, self.file)
if self.is_ban_cookies():
self.set_invalid()
self.s.close()
return
self.s.close()
log.info(f"{self.username} login success")
else:
self.s.close()
log.info(f"{self.username} login failed")
self.set_invalid()
def login(self) -> None:
def login1():
sleep(2)
data : Dict = {
'pwuser': self.username,
'pwpwd': self.password,
'jumpurl': 'index.php',
'cktime': '31536000',
'step': '2'
}
login = self.s.post(self.Login , headers = self.Headers , data = data, proxies = proxies)
return login.text
def login2():
sleep(2)
token = otp.get_totp(self.secret)
data = {
'step': '2',
'cktime': '31536000',
'oneCode': token
}
login=self.s.post(self.Login , headers = self.Headers , data = data, proxies = proxies)
return login.text
def captcha():
sleep(2)
code = random.uniform(0,1)
code = round(code,16)
VerCode = self.VerCode + str(code)
image = self.s.get(VerCode , headers = self.Headers, proxies = proxies)
if InputSelf:
with open("./captcha.png", "wb") as f:
f.write(image.content)
vercode = input("请输入验证码: ")
os.remove("./captcha.png")
else:
if captcha_function == "apitruecaptcha":
vercode = apitruecaptcha(image.content)
elif captcha_function == "ttshitu":
vercode = ttshitu(image.content)
else:
log.error("验证码识别方式错误")
os._exit(0)
data={
'validate': vercode
}
login = self.s.post(self.Login , data = data , headers = self.Headers, proxies = proxies)
if "驗證碼不正確,請重新填寫" in login.text:
log.info(f"{self.username} captcha with code: {vercode} failed")
else:
log.info(f"{self.username} captcha with code: {vercode} success")
res = login1()
if res.find("您已經順利登錄") != -1:
return True
elif res.find("賬號已開啟兩步驗證") != -1:
res = login2()
if res.find("您已經順利登錄") != -1:
return True
elif res.find("登录尝试次数过多") != -1:
captcha()
log.debug(f"{self.username} complete captcha")
# 請輸入您的帳號與密碼
if self.Retry > 0:
log.debug(f"{self.username} retry login,remaining retry times: %d" % self.Retry)
self.Retry -= 1
sleep_time = random.randint(6,60)
log.info(f"{self.username} sleep {sleep_time} seconds")
sleep(sleep_time)
if self.login():
return True
else:
log.debug(f"{self.username} login failed!")
return False
#校验cookies是否有效
def is_valid_cookies(self) -> bool:
sleep(2)
res = self.s.get(self.Index , headers = self.Headers, proxies = proxies)
if res.text.find("上次登錄時間") != -1 :
return True
else:
return False
def is_ban_cookies(self) -> bool:
sleep(2)
res = self.s.get(self.Index , headers = self.Headers, proxies = proxies)
if res.text.find("禁止發言") != -1 :
return True
else:
return False
@retry
def reply(self, url) -> bool:
sleep(2)
if self.ReplyCount == 0:
return False
title = self.get_title(url)
content = self.get_reply_content()
tid = self.get_tid(url)
data = {
'atc_usesign':'1',
'atc_convert':'1',
'atc_autourl': '1',
'atc_title': title,
'atc_content': content ,
'step': '2',
'action': 'reply',
'fid': str(Fid),
'tid': tid,
'page': 'h',
# 'atc_attachment': 'none',
'pid':'',
'article':'',
'touid':'',
'verify':'verify',
'Submit': '正在提交回覆..',
}
res = requests.post(url = self.Post , data = data , headers = self.Headers , cookies = self.cookies , proxies = proxies)
if DEBUG: print(res.text)
if res.text.find("發貼完畢點擊進入主題列表") != -1:
self.ReplyCount -= 1
log.info(f"{self.username} reply {title} with {content} success , remaining reply times: {self.ReplyCount}" )
return True
elif res.text.find("灌水預防機制") != -1:
log.info(f"{self.username} reply failed , user replay too frequency")
return True
elif res.text.find("所屬的用戶組") != -1:
log.info(f"{self.username} reply failed , day reply times is over")
return False
elif res.text.find("管理員禁言, 類型為永久禁言") != -1:
log.info(f"{self.username} reply failed , user is banned")
return False
elif res.text.find("帖子ID非法") != -1:
log.info(f"{self.username} reply failed , {url} is invaild")
return True
elif res.text.find("尚未開啟兩步驗證") != -1:
log.info(f"{self.username} reply failed , user not open two steps verify")
return True
elif res.text.find("該貼已被鎖定") != -1:
log.info(f"{self.username} reply failed , the thread is locked")
return True
elif res.text.find("標題為空或標題太長") != -1 or res.text.find("文章長度錯誤") != -1 :
log.info(f"{self.username} reply failed , the title is {title} , the content is {content}")
return True
elif res.text.find("403 Forbidden") != -1:
log.info(f"{self.username} reply failed , HTTP 403 Error , 可能由于触发了风控 , IP被服务器拦截")
return False
elif res.text.find("500 Internal Server Error") != -1:
log.info(f"{self.username} reply failed , HTTP 500 Error")
return True
elif res.text.find("Bad Gateway") != -1 or res.text.find("Bad gateway") != -1:
log.info(f"{self.username} reply failed , HTTP 502 Error")
return True
elif res.text.find("520: Web server is returning an unknown error") != -1:
log.info(f"{self.username} reply failed , HTTP 520 Error")
return True
elif res.text.find("Cloudflare Ray ID") != -1:
log.info(f"{self.username} reply failed , {re.search(r'<title>(.*?)</title>', res.text)}")
return True
else:
log.error(f"{self.username} reply {url} failed , unknown error")
log.error(res.text)
return False
@retry
def like(self, url : str) -> bool:
if not Like or self.Like:
return
id = self.get_reply_id(url)
if not id:
return
sleep(2)
data={
'action': 'clickLike',
'id': id,
'page': 'h',
'json': '1',
'url': url
}
res = requests.post(self.Api , headers = self.Headers , data = data , cookies = self.cookies, proxies = proxies)
try:
if int(json.loads(res.text)['myMoney']) > 0 :
log.info(f"{self.username} like success")
except:
return
#简单浏览
@retry
def browse(self, url : str) -> None:
sleep(2)
res = requests.get(url = url , headers = self.Headers , cookies = self.cookies, proxies = proxies)
#获取我的回复列表
@retry
def get_personal_posted_list(self):
sleep(2)
res = requests.get(self.Personal_posted , headers = self.Headers , cookies = self.cookies, proxies = proxies)
content = res.text
posted_pat_title_rule : str = '<a[^>]+class="a2">(?:<font[^>]+>)?([^<]+)(?:<\/font>)?<\/a>'
posted_pat_title = re.findall(posted_pat_title_rule, content)
self.excludeContent.extend(posted_pat_title)
#获取今日帖子
@retry
def get_today_list(self):
sleep(2)
res = requests.get(self.Today , headers = self.Headers, proxies = proxies)
content = res.text
pat_title : str = ('htm_data/\w+/\w+/\w+.html')
pat_moderator : str = "版主:([\s\S]*?)<\/span>"
pat_username : str = "username=(\w+)"
pat_user : str = 'class="bl">(.*)?</a>'
pat_all_title : str = '<h3><a href="([\s\S]*?)"'
pat_all_content : str = '<h3><a href=".*" target="_blank" id=".*">(.*)<\/a><\/h3>'
moderator : str = re.search(pat_moderator, content).group(0)
username : List = re.findall(pat_username, moderator)
content = res.text[res.text.find('普通主題'):]
all_username : List = re.findall(pat_user, content)
title = re.findall(pat_title , content)
all_title = re.findall(pat_all_title , content)
all_content = re.findall(pat_all_content , content)
log.debug(f"{self.username} get list number: {str(len(title))}")
if len(all_title) != len(all_username):
if self.RetryList > 0:
log.debug(f"{self.username} get list number error , retry get list , remaining retry times: %d" % self.RetryList)
self.RetryList -= 1
sleep(2)
self.get_today_list()
return
else:
os._exit(0)
if Forbid:
black_list : List = []
log.debug("moderator list: " + str(" ".join(username)))
for index in range(len(all_username)):
if all_username[index].strip() in moderator:
black_list.append(all_title[index])
for item in black_list:
try:
title.remove(item)
except:
...
log.debug(f"{self.username} remove {item} from list")
black_list : List = []
log.debug(f"{self.username} 排除: {self.excludeContent}")
for index in range(len(all_content)):
content = all_content[index]
for item in self.excludeContent:
if item in content:
black_list.append(all_title[index])
break
for item in black_list:
try:
title.remove(item)
except:
...
log.debug(f"{self.username} remove {item} from list")
self.ReplyList = title
log.debug(f"{self.username} get reply list number {str(len(title))}")
#从今日列表中抽取出一个帖子
def get_one_link(self) -> Union[str , None]:
if len(self.ReplyList) == 0:
return None
url = self.ReplyList[random.randint(0,len(self.ReplyList)-1)]
log.debug(f"{self.username} get one link: {url}")
self.ReplyList.remove(url)
return f"{self.Host}{url}"
#从url中提取出tid
def get_tid(self , url : str) -> str:
pat_tid = "/(\d+).html"
tid = re.search(pat_tid , url).group(1)
return tid
#获取回复内容的id用于点赞
@retry
def get_reply_id(self, url : str) -> Union[str , None]:
sleep(2)
res = requests.get(url = url , headers = self.Headers , cookies = self.cookies, proxies = proxies)
reply_id_list = re.findall("<a name=#(\d+)><\/a>", res.text)
if len(reply_id_list) == 0:
return None
else:
return reply_id_list[random.randint(0,len(reply_id_list)-1)]
#获取给定url的主题名字
@retry
def get_title(self , url : str) -> str:
sleep(2)
res = requests.get(url = url , headers = self.Headers , cookies = self.cookies, proxies = proxies)
pat_title = '<b>本頁主題:</b> .*</td>'
try:
title = re.search(pat_title, res.text).group(0)
title = "Re:" + title.replace('<b>本頁主題:</b> ','').replace('</td>','')
except:
title = "Re: "
return title
#随机获取回复内容
def get_reply_content(self) -> str:
return ReplyContent[random.randint(0,len(ReplyContent)-1)]
# 获取回复次数
@retry
def get_reply_number(self) -> str:
sleep(2)
res = requests.get(self.Index , headers = self.Headers , cookies = self.cookies, proxies = proxies)
pat_reply_number = "共發表帖子: \d{1,5}"
reply_number = re.search(pat_reply_number , res.text).group(0).replace('共發表帖子: ','')
return reply_number
@retry
def get_user_usd_prestige(self) -> str:
sleep(2)
res = requests.get(self.Index , headers = self.Headers , cookies = self.cookies, proxies = proxies)
pat_user_usd = "金錢:\d+"
user_usd = re.search(pat_user_usd , res.text).group(0).replace('金錢:','')
pat_user_prestige = "威望:\d+"
user_prestige = re.search(pat_user_prestige , res.text).group(0).replace('威望:','')
return f"{user_usd} USD , {user_prestige} 威望."
def get_username(self) -> str:
return self.username
def set_invalid(self) -> None:
log.debug(f"{self.username} is invalid")
self.Invalid = True
def get_invalid(self) -> bool:
return self.Invalid
def set_sleep_time(self , time : int) -> None:
self.SleepTime = time
def get_sleep_time(self) -> int:
return self.SleepTime
def main():
latestVesion = getlatest()
if __verison__ != latestVesion:
if AutoUpdate:
update(latestVesion)
else:log.info(f"有新版本 {latestVesion} https://github.com/pooneyy/CaoLiu_AutoReply")
users = []
for i in range(len(usersList)):
user=User(usersList[i]['user'],usersList[i]['password'],usersList[i]['secret'])
user.check_cookies_and_login()
if user.get_invalid():
continue
user.get_personal_posted_list()
user.get_today_list()
if not DEBUG:
sleep_time = random.randint(TimeIntervalStart,TimeIntervalEnd)
log.info(f"{user.get_username()} sleep {sleep_time} seconds")
user.set_sleep_time(sleep_time)
users.append(user)
if len(users) == 0:
log.error("No valid users")
os._exit(0)
log.info("--------------------->>>")
for user in users:
log.info(f"{user.get_username()} : {user.get_user_usd_prestige()}")
log.info("--------------------->>>")
while True:
return_flag = True
for user in users:
if user.get_invalid():
continue
else:
return_flag = False
if user.get_sleep_time() > 0:
user.set_sleep_time(user.get_sleep_time() - PollingTime)
continue
url = user.get_one_link()
if url is None:
user.set_invalid()
continue
user.browse(url)
if not user.reply(url):
user.set_invalid()
continue
user.like(url)
sleep_time = random.randint(TimeIntervalStart,TimeIntervalEnd)
log.debug(f"{user.get_username()} sleep {sleep_time} seconds")
user.set_sleep_time(sleep_time)
if return_flag:
log.info("--------------------->>>")
for user in users:
log.info(f"{user.get_username()} : {user.get_user_usd_prestige()}")
log.info("--------------------->>>")
sendLog(LogFileName)
break
sleep(PollingTime)
def checkHosts():
log.info("检查域名")
url = 'https://s.cky.qystu.cc/gh/pooneyy/1024-Host-List@main/1024_hosts.json'
hosts = json.loads(requests.get(url).text)
headers = {
'user-agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36'
}
for i in hosts:
try:
requests.get(f'https://{i}/index.php', headers=headers)
log.info(f"检查 {i} :能访问")
except requests.exceptions.ConnectionError:
log.info(f"检查 {i} :不能访问")
sendLog(LogFileName, ' - 调试模式')
def main_handler(event, context):
if DebugMode:checkHosts()
else:main()
if __name__ == '__main__':
if DebugMode:checkHosts()
else:main()