添加ifttt推送

This commit is contained in:
XiangS 2022-11-18 19:13:46 +08:00
parent 6a235de34c
commit b070102ba5
2 changed files with 34 additions and 5 deletions

View File

@ -46,6 +46,12 @@ api_url=http://xxx.xxx.cn
token=AMxxxx
priority=7
[ifttt]
# If (Receive a web request) Then (Send a rich notification from the IFTTT app)
# 使用value1(标题),value2(内容)
event=mihoyo_push
key=xxxxxxxxxxxxxxxxxxxxxx
# 邮件推送
[smtp]
# 一般情况下465端口会使用ssl加密默认465端口不加密走25端口。

23
push.py
View File

@ -77,6 +77,7 @@ def cqhttp(send_title, push_message):
}
)
# smtp mail(电子邮件)
# 感谢 @islandwind 提供的随机壁纸api 个人主页https://space.bilibili.com/7600422
def smtp(send_title, push_message):
@ -170,6 +171,7 @@ def dingrobot(send_title, push_message):
).json()
log.info(f"推送结果:{rep.get('errmsg')}")
# 飞书机器人
def feishubot(send_title, push_message):
api_url = cfg.get('feishubot', 'webhook') # https://open.feishu.cn/open-apis/bot/v2/hook/XXX
@ -182,6 +184,7 @@ def feishubot(send_title, push_message):
).json()
log.info(f"推送结果:{rep.get('msg')}")
# Bark
def bark(send_title, push_message):
rep = http.get(
@ -203,6 +206,26 @@ def gotify(send_title, push_message):
).json()
log.info(f"推送结果:{rep.get('errmsg')}")
# ifttt
def ifttt(send_title, push_message):
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": send_title,
"value2": push_message
}
)
if 'errors' in rep.text:
log.warning(f"推送执行错误:{rep.json()['errors']}")
return 0
else:
log.info("推送完毕......")
return 1
def push(status, push_message):
if not load_config():