This repository was archived by the owner on Nov 4, 2024. It is now read-only.
forked from Friedrich-M/AutoClock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDingRobot.py
69 lines (61 loc) · 2.49 KB
/
DingRobot.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
import requests
import hmac
import urllib.parse
import time
import json
import hashlib
import base64
"""
钉钉 消息推送类
"""
class dingpush():
def __init__(self,title, content, DD_BOT_TOKEN, DD_BOT_SECRET):
self.DD_BOT_TOKEN = DD_BOT_TOKEN
self.DD_BOT_SECRET= DD_BOT_SECRET #哈希算法验证
self.title = title
self.content = content
def EncryptionPush(self):
timestamp = str(round(time.time() * 1000)) # 时间戳
secret_enc = self.DD_BOT_SECRET.encode('utf-8')
string_to_sign = '{}\n{}'.format(timestamp, self.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)) # 签名
print('开始使用 钉钉机器人 推送消息...')
url = f'https://oapi.dingtalk.com/robot/send?access_token={self.DD_BOT_TOKEN}×tamp={timestamp}&sign={sign}'
headers = {'Content-Type': 'application/json;charset=utf-8'}
data = {
'msgtype': 'text',
'text': {'content': f'{self.title}\n\n{self.content}'}
}
try:
r = requests.post(url=url, data=json.dumps(data), headers=headers, timeout=15).json()
if not r['errcode']:
print('INFO: 钉钉推送成功!')
else:
print("INFO: 钉钉推送失败!","错误详情:"+ r["errmsg"])
except Exception as e:
print(f'ERROR: {e}')
print(' WARNNING: 你好像没配置DD_BOT_TOKEN或者DD_BOT_SECRET?')
def NormalPush(self):
url = f'https://oapi.dingtalk.com/robot/send?access_token={self.DD_BOT_TOKEN}'
headers = {'Content-Type': 'application/json;charset=utf-8'}
data = {
"msgtype": "text",
"text": {
"content": f'{self.title}\n\n{self.content}'
},
}
try:
r = requests.post(url,data=json.dumps(data),headers=headers).json()
if not r['errcode']:
print("INFO: 钉钉推送成功")
else:
print("INFO: 钉钉推送失败!","错误详情:"+ r["errmsg"])
except Exception as e:
print("好像发生了什么奇怪的问题",f"ERROR: {e}")
def SelectAndPush(self):
if self.DD_BOT_SECRET :
self.EncryptionPush()
else :
self.NormalPush()