-
Notifications
You must be signed in to change notification settings - Fork 150
/
push.py
456 lines (398 loc) · 14.5 KB
/
push.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
import os
import hmac
import time
import base64
import config
import urllib
import hashlib
from datetime import datetime, timezone
from request import get_new_session, get_new_session_use_proxy
from loghelper import log
from configparser import ConfigParser, NoOptionError
http = get_new_session()
cfg = ConfigParser()
config_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'config')
config_name = "push"
def get_config_path():
file_path = config_path
file_name = config_name
if os.getenv("AutoMihoyoBBS_push_path"):
file_path = os.getenv("AutoMihoyoBBS_push_path")
if os.getenv("AutoMihoyoBBS_push_name"):
file_name = os.getenv("AutoMihoyoBBS_push_name")
return os.path.join(file_path, f'{file_name}.ini')
def load_config():
file_path = get_config_path()
if os.path.exists(file_path):
cfg.read(file_path, encoding='utf-8')
return True
else:
return False
title = {
-2: "「米游社脚本」StatusID 错误",
-1: "「米游社脚本」Config版本已更新",
0: "「米游社脚本」执行成功!",
1: "「米游社脚本」执行失败!",
2: "「米游社脚本」部分账号执行失败!",
3: "「米游社脚本」社区/游戏道具签到触发验证码!"
}
def get_push_title(status_id) -> str:
"""
获取推送标题
:param status_id: 状态ID
:return:
"""
return title.get(status_id, title.get(-2))
def telegram(status_id, push_message):
"""
Telegram机器人推送
"""
http_proxy = cfg.get('telegram', 'http_proxy', fallback=None)
if http_proxy:
session = get_new_session_use_proxy(http_proxy)
else:
session = http
session.post(
url="https://{}/bot{}/sendMessage".format(cfg.get('telegram', 'api_url'), cfg.get('telegram', 'bot_token')),
data={
"chat_id": cfg.get('telegram', 'chat_id'),
"text": get_push_title(status_id) + "\r\n" + push_message
}
)
def ftqq(status_id, push_message):
"""
Server酱推送,具体推送位置在server酱后台配置
"""
http.post(
url="https://sctapi.ftqq.com/{}.send".format(cfg.get('setting', 'push_token')),
data={
"title": get_push_title(status_id),
"desp": push_message
}
)
def pushplus(status_id, push_message):
"""
PushPlus推送
"""
http.post(
url="https://www.pushplus.plus/send",
data={
"token": cfg.get('setting', 'push_token'),
"title": get_push_title(status_id),
"content": push_message,
"topic": cfg.get('setting', 'topic')
}
)
def cqhttp(status_id, push_message):
"""
OneBot V11(CqHttp)协议推送
"""
http.post(
url=cfg.get('cqhttp', 'cqhttp_url'),
json={
"user_id": cfg.getint('cqhttp', 'cqhttp_qq'),
"message": get_push_title(status_id) + "\r\n" + push_message
}
)
# 感谢 @islandwind 提供的随机壁纸api 个人主页:https://space.bilibili.com/7600422
def smtp(status_id, push_message):
"""
SMTP 电子邮件推送
"""
import smtplib
from email.mime.text import MIMEText
def get_background_url():
try:
_image_url = http.get("https://api.iw233.cn/api.php?sort=random&type=json").json()["pic"][0]
except:
_image_url = "unable to get the image"
log.warning("获取随机背景图失败,请检查图片api")
return _image_url
def get_background_img_html(background_url):
if background_url:
return f'<img src="{background_url}" alt="background" style="width: 100%; filter: brightness(50%)">'
return ""
def get_background_img_info(background_url):
if background_url:
return f'p style="color: #fff;text-shadow:0px 0px 10px #000;">背景图片链接</p>\n' \
f'<a href="{background_url}" style="color: #fff;text-shadow:0px 0px 10px #000;">{background_url}</a>'
return ""
image_url = None
if cfg.getboolean('smtp', 'background', fallback=True):
image_url = get_background_url()
with open("assets/email_example.html", encoding="utf-8") as f:
EMAIL_TEMPLATE = f.read()
message = EMAIL_TEMPLATE.format(title=get_push_title(status_id), message=push_message.replace("\n", "<br/>"),
background_image=get_background_img_html(image_url),
background_info=get_background_img_info(image_url))
message = MIMEText(message, "html", "utf-8")
message['Subject'] = cfg["smtp"]["subject"]
message['To'] = cfg["smtp"]["toaddr"]
message['From'] = f"{cfg['smtp']['subject']}<{cfg['smtp']['fromaddr']}>"
if cfg.getboolean("smtp", "ssl_enable"):
server = smtplib.SMTP_SSL(cfg["smtp"]["mailhost"], cfg.getint("smtp", "port"))
else:
server = smtplib.SMTP(cfg["smtp"]["mailhost"], cfg.getint("smtp", "port"))
server.login(cfg["smtp"]["username"], cfg["smtp"]["password"])
server.sendmail(cfg["smtp"]["fromaddr"], cfg["smtp"]["toaddr"], message.as_string())
server.close()
log.info("邮件发送成功啦")
def wecom(status_id, push_message):
"""
企业微信推送
感谢linjie5493@github 提供的代码
"""
secret = cfg.get('wecom', 'secret')
corpid = cfg.get('wecom', 'wechat_id')
try:
touser = cfg.get('wecom', 'touser')
except NoOptionError:
# 没有配置时赋默认值
touser = '@all'
push_token = http.post(
url=f'https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={corpid}&corpsecret={secret}',
data=""
).json()['access_token']
push_data = {
"agentid": cfg.get('wecom', 'agentid'),
"msgtype": "text",
"touser": touser,
"text": {
"content": get_push_title(status_id) + "\r\n" + push_message
},
"safe": 0
}
http.post(f'https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token={push_token}', json=push_data)
def wecomrobot(status_id, push_message):
"""
企业微信机器人
"""
rep = http.post(
url=f'{cfg.get("wecomrobot", "url")}',
headers={"Content-Type": "application/json; charset=utf-8"},
json={
"msgtype": "text",
"text": {
"content": get_push_title(status_id) + "\r\n" + push_message,
"mentioned_mobile_list": [f'{cfg.get("wecomrobot", "mobile")}']
}
}
).json()
log.info(f"推送结果:{rep.get('errmsg')}")
def pushdeer(status_id, push_message):
"""
PushDeer推送
"""
http.get(
url=f'{cfg.get("pushdeer", "api_url")}/message/push',
params={
"pushkey": cfg.get("pushdeer", "token"),
"text": get_push_title(status_id),
"desp": str(push_message).replace("\r\n", "\r\n\r\n"),
"type": "markdown"
}
)
def dingrobot(status_id, push_message):
"""
钉钉群机器人推送
"""
api_url = cfg.get('dingrobot', 'webhook') # https://oapi.dingtalk.com/robot/send?access_token=XXX
secret = cfg.get('dingrobot', 'secret') # 安全设置 -> 加签 -> 密钥 -> SEC*
if secret:
timestamp = str(round(time.time() * 1000))
sign_string = f"{timestamp}\n{secret}"
hmac_code = hmac.new(
key=secret.encode("utf-8"),
msg=sign_string.encode("utf-8"),
digestmod=hashlib.sha256
).digest()
sign = urllib.parse.quote_plus(base64.b64encode(hmac_code))
api_url = f"{api_url}×tamp={timestamp}&sign={sign}"
rep = http.post(
url=api_url,
headers={"Content-Type": "application/json; charset=utf-8"},
json={
"msgtype": "text", "text": {"content": get_push_title(status_id) + "\r\n" + push_message}
}
).json()
log.info(f"推送结果:{rep.get('errmsg')}")
def feishubot(status_id, push_message):
"""
飞书机器人(WebHook)
"""
api_url = cfg.get('feishubot', 'webhook') # https://open.feishu.cn/open-apis/bot/v2/hook/XXX
rep = http.post(
url=api_url,
headers={"Content-Type": "application/json; charset=utf-8"},
json={
"msg_type": "text", "content": {"text": get_push_title(status_id) + "\r\n" + push_message}
}
).json()
log.info(f"推送结果:{rep.get('msg')}")
def bark(status_id, push_message):
"""
Bark推送
"""
# make send_title and push_message to url encode
send_title = urllib.parse.quote_plus(get_push_title(status_id))
push_message = urllib.parse.quote_plus(push_message)
rep = http.get(
url=f'{cfg.get("bark", "api_url")}/{cfg.get("bark", "token")}/{send_title}/{push_message}?icon=https://cdn'
f'.jsdelivr.net/gh/tanmx/pic@main/mihoyo/{cfg.get("bark", "icon")}.png'
).json()
log.info(f"推送结果:{rep.get('message')}")
def gotify(status_id, push_message):
"""
gotify
"""
rep = http.post(
url=f'{cfg.get("gotify", "api_url")}/message?token={cfg.get("gotify", "token")}',
headers={"Content-Type": "application/json; charset=utf-8"},
json={
"title": get_push_title(status_id),
"message": push_message,
"priority": cfg.getint("gotify", "priority")
}
).json()
log.info(f"推送结果:{rep.get('errmsg')}")
def ifttt(status_id, push_message):
"""
ifttt
"""
ifttt_event = cfg.get('ifttt', 'event')
ifttt_key = cfg.get('ifttt', 'key')
rep = http.post(
url=f'https://maker.ifttt.com/trigger/{ifttt_event}/with/key/{ifttt_key}',
headers={"Content-Type": "application/json; charset=utf-8"},
json={
"value1": get_push_title(status_id),
"value2": push_message
}
)
if 'errors' in rep.text:
log.warning(f"推送执行错误:{rep.json()['errors']}")
return 0
else:
log.info("推送完毕......")
return 1
def webhook(status_id, push_message):
"""
WebHook
"""
rep = http.post(
url=f'{cfg.get("webhook", "webhook_url")}',
headers={"Content-Type": "application/json; charset=utf-8"},
json={
"title": get_push_title(status_id),
"message": push_message
}
).json()
log.info(f"推送结果:{rep.get('errmsg')}")
def qmsg(status_id, push_message):
"""
qmsg
"""
rep = http.post(
url=f'https://qmsg.zendee.cn/send/{cfg.get("qmsg", "key")}',
headers={"Content-Type": "application/x-www-form-urlencoded"},
data={
"msg": get_push_title(status_id) + "\n" + push_message
}
).json()
log.info(f"推送结果:{rep['reason']}")
def discord(status_id, push_message):
import pytz
def get_color() -> int:
embed_color = 16744192
if status_id == 0: # 成功
embed_color = 1926125
elif status_id == 1: # 全部失败
embed_color = 14368575
elif status_id == 2: # 部分失败
embed_color = 16744192
elif status_id == 3: # 触发验证码
embed_color = 16744192
return embed_color
rep = http.post(
url=f'{cfg.get("discord", "webhook")}',
headers={"Content-Type": "application/json; charset=utf-8"},
json={
"content": None,
"embeds": [
{
"title": get_push_title(status_id),
"description": push_message,
"color": get_color(),
"author": {
"name": "MihoyoBBSTools",
"url": "https://github.com/Womsxd/MihoyoBBSTools",
"icon_url": "https://github.com/DGP-Studio/Snap.Hutao.Docs/blob/main/docs/.vuepress/public"
"/images/202308/hoyolab-miyoushe-Icon.png?raw=true "
},
"timestamp": datetime.now(timezone.utc).astimezone(pytz.timezone('Asia/Shanghai')).isoformat(),
}
],
"username": "MihoyoBBSTools",
"avatar_url": "https://github.com/DGP-Studio/Snap.Hutao.Docs/blob/main/docs/.vuepress/public/images"
"/202308/hoyolab-miyoushe-Icon.png?raw=true",
"attachments": []
}
)
if rep.status_code != 204:
log.warning(f"推送执行错误:{rep.text}")
else:
log.info(f"推送结果:HTTP {rep.status_code} Success")
def wintoast(status_id, push_message):
try:
from win11toast import toast
toast(app_id="MihoyoBBSTools", title=get_push_title(status_id), body=push_message, icon='')
except:
log.error(f"请先pip install win11toast再使用win通知")
# 推送消息中屏蔽关键词
def msg_replace(msg):
block_keys = []
try:
block_str = cfg.get('setting', 'push_block_keys')
block_keys = block_str.split(',')
except:
return msg
else:
for block_key in block_keys:
block_key_trim = str(block_key).strip()
if block_key_trim:
msg = str(msg).replace(block_key_trim, "*" * len(block_key_trim))
return msg
def push(status, push_message):
if not load_config():
return 1
if not cfg.getboolean('setting', 'enable'):
return 0
if cfg.getboolean('setting', 'error_push_only', fallback=False):
if status == 0:
return 0
log.info("正在执行推送......")
func_names = cfg.get('setting', 'push_server').lower()
push_success = True
for func_name in func_names.split(","):
func = globals().get(func_name)
if not func:
log.warning("推送服务名称错误:请检查config/push.ini -> [setting] -> push_server")
continue
log.debug(f"推送所用的服务为: {func_name}")
try:
if not config.update_config_need:
func(status, msg_replace(push_message))
else:
func(-1,
f'如果您多次收到此消息开头的推送,证明您运行的环境无法自动更新config,请手动更新一下,谢谢\r\n'
f'{title.get(status, "")}\r\n{push_message}')
except Exception as r:
log.warning(f"{func_name} 推送执行错误:{str(r)}")
push_success = False
continue
log.info(f"{func_name} - 推送完毕......")
if not push_success:
return 1
return 0
if __name__ == "__main__":
push(0, f'推送验证{int(time.time())}')