forked from libuke/aliyundrive-checkin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage_send.py
144 lines (131 loc) · 5.56 KB
/
message_send.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
import requests
import json
class MessageSend:
def __init__(self):
self.sender = {}
self.register("pushplus_token", self.pushplus)
self.register("serverChan_token", self.serverChan)
self.register("weCom_tokens", self.weCom)
self.register("weCom_webhook", self.weCom_bot)
self.register("bark_deviceKey", self.bark)
def register(self, token_name, callback):
assert token_name not in self.sender, "Register fails, the token name exists."
self.sender[token_name] = callback
def send_all(self, message_tokens, title, content):
def check_valid_token(token):
if isinstance(token, type(None)):
return False
if isinstance(token, str) and len(token) == 0:
return False
if isinstance(token, list) and (token.count(None) != 0 or token.count("") != 0):
return False
return True
for token_key in message_tokens:
token_value = message_tokens[token_key]
if token_key in self.sender and check_valid_token(token_value):
try:
ret = self.sender[token_key](token_value, title, content)
except:
print(f"[Sender]Something wrong happened when handle {self.sender[token_key]}")
def pushplus(self, token, title, content):
assert type(token) == str, "Wrong type for pushplus token."
content = content.replace("\n", "\n\n")
payload = {
'token': token,
"title": title,
"content": content,
"channel": "wechat",
"template": "markdown"
}
resp = requests.post("http://www.pushplus.plus/send", data=payload)
resp_json = resp.json()
if resp_json["code"] == 200:
print(f"[Pushplus]Send message to Pushplus successfully.")
if resp_json["code"] != 200:
print(f"[Pushplus][Send Message Response]{resp.text}")
return -1
return 0
def serverChan(self, sendkey, title, content):
assert type(sendkey) == str, "Wrong type for serverChan token."
content = content.replace("\n", "\n\n")
payload = {
"title": title,
"desp": content,
}
resp = requests.post(f"https://sctapi.ftqq.com/{sendkey}.send", data=payload)
resp_json = resp.json()
if resp_json["code"] == 0:
print(f"[ServerChan]Send message to ServerChan successfully.")
if resp_json["code"] != 0:
print(f"[ServerChan][Send Message Response]{resp.text}")
return -1
return 0
def weCom(self, tokens, title, content):
assert len(tokens) == 3 and tokens.count(None) == 0 and tokens.count("") == 0
weCom_corpId, weCom_corpSecret, weCom_agentId = tokens
get_token_url = f"https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={weCom_corpId}&corpsecret={weCom_corpSecret}"
resp = requests.get(get_token_url)
resp_json = resp.json()
if resp_json["errcode"] != 0:
print(f"[WeCom][Get Token Response]{resp.text}")
access_token = resp_json.get('access_token')
if access_token is None or len(access_token) == 0:
return -1
send_msg_url = f'https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token={access_token}'
data = {
"touser": "@all",
"agentid": weCom_agentId,
"msgtype": "markdown",
"markdown": {
"content": content
},
"duplicate_check_interval": 600
}
resp = requests.post(send_msg_url, data=json.dumps(data))
resp_json = resp.json()
if resp_json["errcode"] == 0:
print(f"[WeCom]Send message to WeCom successfully.")
if resp_json["errcode"] != 0:
print(f"[WeCom][Send Message Response]{resp.text}")
return -1
return 0
def weCom_bot(self, webhook, title, content):
assert type(webhook) == str, "Wrong type for WeCom webhook token."
assert "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?" in webhook, "Please use the whole webhook url."
headers = {
'Content-Type': "application/json"
}
data = {
"msgtype": "markdown",
"markdown": {
"content": content
}
}
resp = requests.post(webhook, headers=headers, data=json.dumps(data))
resp_json = resp.json()
if resp_json["errcode"] == 0:
print(f"[WeCom]Send message to WeCom successfully.")
if resp_json["errcode"] != 0:
print(f"[WeCom][Send Message Response]{resp.text}")
return -1
return 0
def bark(self, device_key, title, content):
assert type(device_key) == str, "Wrong type for bark token."
url = "https://api.day.app/push"
headers = {
"content-type": "application/json",
"charset": "utf-8"
}
data = {
"title": title,
"body": content,
"device_key": device_key
}
resp = requests.post(url, headers=headers, data=json.dumps(data))
resp_json = resp.json()
if resp_json["code"] == 200:
print(f"[Bark]Send message to Bark successfully.")
if resp_json["code"] != 200:
print(f"[Bark][Send Message Response]{resp.text}")
return -1
return 0