forked from OreosLab/checkinpanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
notify_mtr_env.py
691 lines (597 loc) · 27.1 KB
/
notify_mtr_env.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
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
#!/usr/bin/env python3
# _*_ coding:utf-8 _*_
import base64
import hashlib
import hmac
import json
import os
import re
import threading
import time
import traceback
import urllib.parse
import requests
# 原先的 print 函数和主线程的锁
_print = print
mutex = threading.Lock()
# 定义新的 print 函数
def print(text, *args, **kw):
"""使输出有序进行,不出现多线程同一时间输出导致错乱的问题。"""
with mutex:
_print(text, *args, **kw)
# 通知服务
# fmt: off
push_config = {
'HITOKOTO': False, # 启用一言(随机句子)
'BARK_PUSH': '', # bark IP 或设备码,例:https://api.day.app/DxHcxxxxxRxxxxxxcm
'BARK_ARCHIVE': '', # bark 推送是否存档
'BARK_GROUP': '', # bark 推送分组
'BARK_SOUND': '', # bark 推送声音
'BARK_ICON': '', # bark 推送图标
'CONSOLE': True, # 控制台输出
'DD_BOT_SECRET': '', # 钉钉机器人的 DD_BOT_SECRET
'DD_BOT_TOKEN': '', # 钉钉机器人的 DD_BOT_TOKEN
'DEER_KEY': '', # PushDeer 的 {{pushkey}}
'FSKEY': '', # 飞书机器人的 FSKEY
'GOBOT_URL': '', # go-cqhttp
# 推送到个人QQ:http://127.0.0.1/send_private_msg
# 群:http://127.0.0.1/send_group_msg
'GOBOT_QQ': '', # go-cqhttp 的推送群或用户
# GOBOT_URL 设置 /send_private_msg 时填入 user_id=个人QQ
# /send_group_msg 时填入 group_id=QQ群
'GOBOT_TOKEN': '', # go-cqhttp 的 access_token
'GOTIFY_URL': '', # gotify 地址,如 https://push.example.de:8080
'GOTIFY_TOKEN': '', # gotify 的消息应用 token
'GOTIFY_PRIORITY': 0, # 推送消息优先级,默认为 0
'IGOT_PUSH_KEY': '', # iGot 聚合推送的 IGOT_PUSH_KEY
'PUSH_KEY': '', # server 酱的 PUSH_KEY,兼容旧版与 Turbo 版
'PUSH_PLUS_TOKEN': '', # push+ 微信推送的用户令牌
'PUSH_PLUS_USER': '', # push+ 微信推送的群组编码
'QMSG_KEY': '', # qmsg 酱的 QMSG_KEY
'QMSG_TYPE': '', # qmsg 酱的 QMSG_TYPE
'QYWX_AM': '', # 企业微信应用
'QYWX_KEY': '', # 企业微信机器人
'TG_BOT_TOKEN': '', # tg 机器人的 TG_BOT_TOKEN,例:1407203283:AAG9rt-6RDaaX0HBLZQq0laNOh898iFYaRQ
'TG_USER_ID': '', # tg 机器人的 TG_USER_ID,例:1434078534
'TG_API_HOST': '', # tg 代理 api
'TG_PROXY_AUTH': '', # tg 代理认证参数
'TG_PROXY_HOST': '', # tg 机器人的 TG_PROXY_HOST
'TG_PROXY_PORT': '', # tg 机器人的 TG_PROXY_PORT
}
notify_function = []
# fmt: on
# 首先读取 面板变量 或者 github action 运行变量
for k in push_config:
if os.getenv(k):
v = os.getenv(k)
push_config[k] = v
def bark(title: str, content: str) -> None:
"""使用 bark 推送消息。"""
if not push_config.get("BARK_PUSH"):
print("bark 服务的 BARK_PUSH 未设置!!\n取消推送")
return
print("bark 服务启动")
if push_config.get("BARK_PUSH").startswith("http"):
url = (
f'{push_config.get("BARK_PUSH").rstrip("/")}/'
f"{urllib.parse.quote_plus(title)}/{urllib.parse.quote_plus(content)}"
)
else:
url = (
f'https://api.day.app/{push_config.get("BARK_PUSH")}/'
f"{urllib.parse.quote_plus(title)}/{urllib.parse.quote_plus(content)}"
)
bark_params = {
"BARK_ARCHIVE": "isArchive",
"BARK_GROUP": "group",
"BARK_SOUND": "sound",
"BARK_ICON": "icon",
}
params = "".join(
f"{bark_params.get(pair[0])}={pair[1]}&"
for pair in filter(
lambda pairs: pairs[0].startswith("BARK_")
and pairs[0] != "BARK_PUSH"
and pairs[1]
and bark_params.get(pairs[0]),
push_config.items(),
)
)
if params:
url = f'{url}?{params.rstrip("&")}'
try:
response = requests.get(url, timeout=15)
try:
json_data = response.json()
if json_data.get("code") == 200:
print("bark 推送成功!")
elif json_data.get("code") == 400:
print("bark 推送失败!找不到 Key 对应的 DeviceToken。")
else:
print(f"bark 推送失败!响应数据:{json_data}")
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response.text}")
except requests.exceptions.RequestException:
print(f"网络异常,请检查你的网络连接、推送服务器和代理配置。\n{traceback.format_exc()}")
except Exception:
print(f"其他错误信息:\n{traceback.format_exc()}")
def console(title: str, content: str) -> None:
"""使用 控制台 推送消息。"""
print(f"{title}\n\n{content}")
def dingding_bot(title: str, content: str) -> None:
"""使用 钉钉机器人 推送消息。"""
if not push_config.get("DD_BOT_SECRET") or not push_config.get("DD_BOT_TOKEN"):
print("钉钉机器人 服务的 DD_BOT_SECRET 或者 DD_BOT_TOKEN 未设置!!\n取消推送")
return
print("钉钉机器人 服务启动")
timestamp = str(round(time.time() * 1000))
secret_enc = push_config.get("DD_BOT_SECRET").encode("utf-8")
string_to_sign = f'{timestamp}\n{push_config.get("DD_BOT_SECRET")}'
string_to_sign_enc = string_to_sign.encode("utf-8")
hmac_code = hmac.new(
secret_enc, string_to_sign_enc, digestmod=hashlib.sha256
).digest()
sign = urllib.parse.quote_plus(base64.b64encode(hmac_code))
url = (
f"https://oapi.dingtalk.com/robot/send?"
f'access_token={push_config.get("DD_BOT_TOKEN")}×tamp={timestamp}&sign={sign}'
)
headers = {"Content-Type": "application/json;charset=utf-8"}
json = {"msgtype": "text", "text": {"content": f"{title}\n\n{content}"}}
try:
response = requests.post(url=url, json=json, headers=headers, timeout=15)
try:
json_data = response.json()
if json_data.get("errcode") == 0:
print("钉钉机器人 推送成功!")
else:
print(f"钉钉机器人 推送失败!响应数据:{json_data}")
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response.text}")
except requests.exceptions.RequestException:
print(f"网络异常,请检查你的网络连接、推送服务器和代理配置。\n{traceback.format_exc()}")
except Exception:
print(f"其他错误信息:\n{traceback.format_exc()}")
def pushdeer(title: str, content: str) -> None:
"""通过 PushDeer 推送消息"""
if not push_config.get("DEER_KEY"):
print("PushDeer 服务的 DEER_KEY 未设置!!\n取消推送")
return
print("PushDeer 服务启动")
data = {
"text": title,
"desp": content,
"type": "markdown",
"pushkey": push_config.get("DEER_KEY"),
}
url = "https://api2.pushdeer.com/message/push"
try:
response = requests.post(url=url, data=data, timeout=15)
try:
json_data = response.json()
if json_data.get("content").get("result"):
print("PushDeer 推送成功!")
else:
print(f"PushDeer 推送失败!响应数据:{json_data}")
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response.text}")
except requests.exceptions.RequestException:
print(f"网络异常,请检查你的网络连接、推送服务器和代理配置。\n{traceback.format_exc()}")
except Exception:
print(f"其他错误信息:\n{traceback.format_exc()}")
def feishu_bot(title: str, content: str) -> None:
"""使用 飞书机器人 推送消息。"""
if not push_config.get("FSKEY"):
print("飞书 服务的 FSKEY 未设置!!\n取消推送")
return
print("飞书 服务启动")
url = f'https://open.feishu.cn/open-apis/bot/v2/hook/{push_config.get("FSKEY")}'
data = {"msg_type": "text", "content": {"text": f"{title}\n\n{content}"}}
try:
response = requests.post(url, data=json.dumps(data), timeout=15)
try:
json_data = response.json()
if json_data.get("StatusCode") == 0:
print("飞书 推送成功!")
else:
print(f"飞书 推送失败!响应数据:{json_data}")
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response.text}")
except requests.exceptions.RequestException:
print(f"网络异常,请检查你的网络连接、推送服务器和代理配置。\n{traceback.format_exc()}")
except Exception:
print(f"其他错误信息:\n{traceback.format_exc()}")
def go_cqhttp(title: str, content: str) -> None:
"""使用 go_cqhttp 推送消息。"""
if not push_config.get("GOBOT_URL") or not push_config.get("GOBOT_QQ"):
print("go-cqhttp 服务的 GOBOT_URL 或 GOBOT_QQ 未设置!!\n取消推送")
return
print("go-cqhttp 服务启动")
url = (
f'{push_config.get("GOBOT_URL")}?'
f'access_token={push_config.get("GOBOT_TOKEN")}&{push_config.get("GOBOT_QQ")}&'
f"message=标题:{title}\n内容:{content}"
)
try:
response = requests.get(url, timeout=15)
try:
json_data = response.json()
if json_data.get("status") == "ok":
print("go-cqhttp 推送成功!")
else:
print(f"go-cqhttp 推送失败!响应数据:{json_data}")
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response.text}")
except requests.exceptions.RequestException:
print(f"网络异常,请检查你的网络连接、推送服务器和代理配置。\n{traceback.format_exc()}")
except Exception:
print(f"其他错误信息:\n{traceback.format_exc()}")
def gotify(title: str, content: str) -> None:
"""使用 gotify 推送消息。"""
if not push_config.get("GOTIFY_URL") or not push_config.get("GOTIFY_TOKEN"):
print("gotify 服务的 GOTIFY_URL 或 GOTIFY_TOKEN 未设置!!\n取消推送")
return
print("gotify 服务启动")
url = f'{push_config.get("GOTIFY_URL")}/message?token={push_config.get("GOTIFY_TOKEN")}'
data = {
"title": title,
"message": content,
"priority": push_config.get("GOTIFY_PRIORITY"),
}
try:
response = requests.post(url, data=data, timeout=15)
try:
json_data = response.json()
if json_data.get("id"):
print("gotify 推送成功!")
else:
print(f"gotify 推送失败!响应数据:{json_data}")
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response.text}")
except requests.exceptions.RequestException:
print(f"网络异常,请检查你的网络连接、推送服务器和代理配置。\n{traceback.format_exc()}")
except Exception:
print(f"其他错误信息:\n{traceback.format_exc()}")
def iGot(title: str, content: str) -> None:
"""使用 iGot 推送消息。"""
if not push_config.get("IGOT_PUSH_KEY"):
print("iGot 服务的 IGOT_PUSH_KEY 未设置!!\n取消推送")
return
print("iGot 服务启动")
url = f'https://push.hellyw.com/{push_config.get("IGOT_PUSH_KEY")}'
data = {"title": title, "content": content}
headers = {"Content-Type": "application/x-www-form-urlencoded"}
try:
response = requests.post(url, data=data, headers=headers, timeout=15)
try:
json_data = response.json()
if json_data.get("ret") == 0:
print("iGot 推送成功!")
else:
print(f'iGot 推送失败!错误信息:{json_data.get("errMsg")}')
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response.text}")
except requests.exceptions.RequestException:
print(f"网络异常,请检查你的网络连接、推送服务器和代理配置。\n{traceback.format_exc()}")
except Exception:
print(f"其他错误信息:\n{traceback.format_exc()}")
def serverJ(title: str, content: str) -> None:
"""通过 serverJ 推送消息。"""
if not push_config.get("PUSH_KEY"):
print("serverJ 服务的 PUSH_KEY 未设置!!\n取消推送")
return
print("serverJ 服务启动")
data = {"text": title, "desp": content.replace("\n", "\n\n")}
if push_config.get("PUSH_KEY").index("SCT") != -1:
url = f'https://sctapi.ftqq.com/{push_config.get("PUSH_KEY")}.send'
else:
url = f'https://sc.ftqq.com/${push_config.get("PUSH_KEY")}.send'
try:
response = requests.post(url, data=data, timeout=15)
try:
json_data = response.json()
if json_data.get("errno") == 0 or json_data.get("code") == 0:
print("serverJ 推送成功!")
elif json_data.get("code") == 40001:
print("serverJ 推送失败!PUSH_KEY 错误。")
else:
print(f'serverJ 推送失败!错误码:{json_data.get("message")}')
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response.text}")
except requests.exceptions.RequestException:
print(f"网络异常,请检查你的网络连接、推送服务器和代理配置。\n{traceback.format_exc()}")
except Exception:
print(f"其他错误信息:\n{traceback.format_exc()}")
def pushplus_bot(title: str, content: str) -> None:
"""通过 push+ 推送消息。"""
if not push_config.get("PUSH_PLUS_TOKEN"):
print("PUSHPLUS 服务的 PUSH_PLUS_TOKEN 未设置!!\n取消推送")
return
print("PUSHPLUS 服务启动")
url = "http://www.pushplus.plus/send"
data = {
"token": push_config.get("PUSH_PLUS_TOKEN"),
"title": title,
"content": content,
"topic": push_config.get("PUSH_PLUS_USER"),
}
body = json.dumps(data).encode(encoding="utf-8")
headers = {"Content-Type": "application/json"}
try:
response = requests.post(url=url, data=body, headers=headers, timeout=15)
try:
json_data = response.json()
if json_data.get("code") == 200:
print("PUSHPLUS 推送成功!")
elif json_data.get("code") == 600:
url2 = "http://pushplus.hxtrip.com/send"
headers["Accept"] = "application/json"
response2 = requests.post(
url=url2, data=body, headers=headers, timeout=15
)
try:
json_data2 = response2.json()
if json_data2.get("code") == 200:
print("PUSHPLUS(hxtrip) 推送成功!")
elif json_data2.get("code") == 600:
print("PUSHPLUS 推送失败!PUSH_PLUS_TOKEN 错误。")
else:
print(f"PUSHPLUS(hxtrip) 推送失败!响应数据:{json_data2}")
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response2.text}")
else:
print(f"PUSHPLUS 推送失败!响应数据:{json_data}")
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response.text}")
except requests.exceptions.RequestException:
print(f"网络异常,请检查你的网络连接、推送服务器和代理配置。\n{traceback.format_exc()}")
except Exception:
print(f"其他错误信息:\n{traceback.format_exc()}")
def qmsg_bot(title: str, content: str) -> None:
"""使用 qmsg 推送消息。"""
if not push_config.get("QMSG_KEY") or not push_config.get("QMSG_TYPE"):
print("qmsg 的 QMSG_KEY 或者 QMSG_TYPE 未设置!!\n取消推送")
return
print("qmsg 服务启动")
url = f'https://qmsg.zendee.cn/{push_config.get("QMSG_TYPE")}/{push_config.get("QMSG_KEY")}'
payload = {"msg": f'{title}\n\n{content.replace("----", "-")}'.encode("utf-8")}
try:
response = requests.post(url=url, params=payload, timeout=15)
try:
json_data = response.json()
if json_data.get("code") == 0:
print("qmsg 推送成功!")
else:
print(f'qmsg 推送失败!错误信息:{json_data.get("reason")}')
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response.text}")
except requests.exceptions.RequestException:
print(f"网络异常,请检查你的网络连接、推送服务器和代理配置。\n{traceback.format_exc()}")
except Exception:
print(f"其他错误信息:\n{traceback.format_exc()}")
def wecom_app(title: str, content: str) -> None:
"""通过 企业微信 APP 推送消息。"""
if not push_config.get("QYWX_AM"):
print("QYWX_AM 未设置!!\n取消推送")
return
QYWX_AM_AY = re.split(",", push_config.get("QYWX_AM"))
if 4 < len(QYWX_AM_AY) > 5:
print("QYWX_AM 设置错误!!\n取消推送")
return
print("企业微信 APP 服务启动")
corpid = QYWX_AM_AY[0]
corpsecret = QYWX_AM_AY[1]
touser = QYWX_AM_AY[2]
agentid = QYWX_AM_AY[3]
try:
media_id = QYWX_AM_AY[4]
except IndexError:
media_id = ""
wx = WeCom(corpid, corpsecret, agentid)
# 如果没有配置 media_id 默认就以 text 方式发送
try:
if not media_id:
message = title + "\n\n" + content
result = wx.send_text(message, touser)
else:
result = wx.send_mpnews(title, content, media_id, touser)
if result == "ok":
print("企业微信推送成功!")
else:
print(f"企业微信推送失败!错误信息:{result}")
except requests.exceptions.RequestException:
print(f"网络异常,请检查你的网络连接、推送服务器和代理配置。\n{traceback.format_exc()}")
except Exception:
print(f"其他错误信息:\n{traceback.format_exc()}")
class WeCom:
def __init__(self, corpid, corpsecret, agentid):
self.CORPID = corpid
self.CORPSECRET = corpsecret
self.AGENTID = agentid
def get_access_token(self):
url = "https://qyapi.weixin.qq.com/cgi-bin/gettoken"
values = {"corpid": self.CORPID, "corpsecret": self.CORPSECRET}
response = requests.post(url, params=values, timeout=15)
json_data = json.loads(response.text)
return json_data.get("access_token")
def send_text(self, message, touser="@all"):
send_url = (
"https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token="
+ self.get_access_token()
)
send_values = {
"touser": touser,
"msgtype": "text",
"agentid": self.AGENTID,
"text": {"content": message},
"safe": "0",
}
send_msgs = bytes(json.dumps(send_values), "utf-8")
response = requests.post(send_url, send_msgs, timeout=15)
try:
json_data = response.json()
return json_data.get("errmsg")
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response.text}")
return response.text
def send_mpnews(self, title, message, media_id, touser="@all"):
send_url = (
"https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token="
+ self.get_access_token()
)
send_values = {
"touser": touser,
"msgtype": "mpnews",
"agentid": self.AGENTID,
"mpnews": {
"articles": [
{
"title": title,
"thumb_media_id": media_id,
"author": "Author",
"content_source_url": "",
"content": message.replace("\n", "<br/>"),
"digest": message,
}
]
},
}
send_msgs = bytes(json.dumps(send_values), "utf-8")
response = requests.post(send_url, send_msgs, timeout=15)
try:
json_data = response.json()
return json_data.get("errmsg")
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response.text}")
return response.text
def wecom_bot(title: str, content: str) -> None:
"""通过 企业微信机器人 推送消息。"""
if not push_config.get("QYWX_KEY"):
print("企业微信机器人 服务的 QYWX_KEY 未设置!!\n取消推送")
return
print("企业微信机器人服务启动")
url = f"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key={push_config.get('QYWX_KEY')}"
headers = {"Content-Type": "application/json;charset=utf-8"}
data = {"msgtype": "text", "text": {"content": f"{title}\n\n{content}"}}
try:
response = requests.post(
url=url, data=json.dumps(data), headers=headers, timeout=15
)
try:
json_data = response.json()
if json_data.get("errcode") == 0:
print("企业微信机器人 推送成功!")
else:
print(f"企业微信机器人 推送失败!响应数据:{json_data}")
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response.text}")
except requests.exceptions.RequestException:
print(f"网络异常,请检查你的网络连接、推送服务器和代理配置。\n{traceback.format_exc()}")
except Exception:
print(f"其他错误信息:\n{traceback.format_exc()}")
def telegram_bot(title: str, content: str) -> None:
"""使用 telegram 机器人 推送消息。"""
if not push_config.get("TG_BOT_TOKEN") or not push_config.get("TG_USER_ID"):
print("tg 服务的 bot_token 或者 user_id 未设置!!\n取消推送")
return
print("tg 服务启动")
if push_config.get("TG_API_HOST"):
url = f"https://{push_config.get('TG_API_HOST')}/bot{push_config.get('TG_BOT_TOKEN')}/sendMessage"
else:
url = (
f"https://api.telegram.org/bot{push_config.get('TG_BOT_TOKEN')}/sendMessage"
)
headers = {"Content-Type": "application/x-www-form-urlencoded"}
payload = {
"chat_id": str(push_config.get("TG_USER_ID")),
"text": f"{title}\n\n{content}",
"disable_web_page_preview": "true",
}
proxies = None
if push_config.get("TG_PROXY_HOST") and push_config.get("TG_PROXY_PORT"):
if push_config.get("TG_PROXY_AUTH") is not None and "@" not in push_config.get(
"TG_PROXY_HOST"
):
push_config["TG_PROXY_HOST"] = (
push_config.get("TG_PROXY_AUTH")
+ "@"
+ push_config.get("TG_PROXY_HOST")
)
proxy_str = f'http://{push_config.get("TG_PROXY_HOST")}:{push_config.get("TG_PROXY_PORT")}'
proxies = {"http": proxy_str, "https": proxy_str}
try:
response = requests.post(
url=url, headers=headers, params=payload, proxies=proxies, timeout=15
)
try:
json_data = response.json()
if json_data.get("ok") is True:
print("tg 推送成功!")
elif json_data.get("error_code") == 400:
print("tg 推送失败!请主动给 bot 发送一条消息并检查接收用户 TG_USER_ID 是否正确。")
elif json_data.get("error_code") == 401:
print("tg 推送失败!TG_BOT_TOKEN 填写错误。")
else:
print(f"tg 推送失败!响应数据:{json_data}")
except json.JSONDecodeError:
print(f"推送返回值非 json 格式,请检查网址和账号是否填写正确。\n{response.text}")
except requests.exceptions.RequestException:
print(f"网络异常,请检查你的网络连接、推送服务器和代理配置。\n{traceback.format_exc()}")
except Exception:
print(f"其他错误信息:\n{traceback.format_exc()}")
def one() -> str:
"""
获取一条一言。
:return:
"""
try:
url = "https://v1.hitokoto.cn/"
res = requests.get(url).json()
return res["hitokoto"] + " ----" + res["from"]
except (requests.exceptions.ConnectionError, requests.exceptions.JSONDecodeError):
return ""
if push_config.get("BARK_PUSH"):
notify_function.append(bark)
if push_config.get("CONSOLE"):
notify_function.append(console)
if push_config.get("DD_BOT_TOKEN") and push_config.get("DD_BOT_SECRET"):
notify_function.append(dingding_bot)
if push_config.get("DEER_KEY"):
notify_function.append(pushdeer)
if push_config.get("FSKEY"):
notify_function.append(feishu_bot)
if push_config.get("GOBOT_URL") and push_config.get("GOBOT_QQ"):
notify_function.append(go_cqhttp)
if push_config.get("GOTIFY_URL") and push_config.get("GOTIFY_TOKEN"):
notify_function.append(gotify)
if push_config.get("IGOT_PUSH_KEY"):
notify_function.append(iGot)
if push_config.get("PUSH_KEY"):
notify_function.append(serverJ)
if push_config.get("PUSH_PLUS_TOKEN"):
notify_function.append(pushplus_bot)
if push_config.get("QMSG_KEY") and push_config.get("QMSG_TYPE"):
notify_function.append(qmsg_bot)
if push_config.get("QYWX_AM"):
notify_function.append(wecom_app)
if push_config.get("QYWX_KEY"):
notify_function.append(wecom_bot)
if push_config.get("TG_BOT_TOKEN") and push_config.get("TG_USER_ID"):
notify_function.append(telegram_bot)
def send(title: str, content: str) -> None:
if not content:
print(f"{title} 推送内容为空!")
return
hitokoto = push_config.get("HITOKOTO")
text = one() if hitokoto else ""
content += "\n\n" + text
ts = [
threading.Thread(target=mode, args=(title, content), name=mode.__name__)
for mode in notify_function
]
[t.start() for t in ts]
[t.join() for t in ts]
def main():
send("title", "content")
if __name__ == "__main__":
main()