dailycheckin/index.py

85 lines
3.1 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
import json
2020-12-10 12:24:40 +08:00
import os
2020-12-12 08:42:52 +08:00
import sys
2020-12-07 13:29:36 +08:00
import time
from datetime import datetime, timedelta
2020-12-07 13:29:36 +08:00
2020-12-21 21:08:22 +08:00
from motto import Motto
from utils.config import checkin_map, get_checkin_info, get_notice_info
from utils.message import push_message
2020-12-07 13:29:36 +08:00
def main_handler(event, context):
2020-12-10 12:34:33 +08:00
start_time = time.time()
utc_time = datetime.utcnow() + timedelta(hours=8)
2020-12-10 12:24:40 +08:00
if "IS_GITHUB_ACTION" in os.environ:
message = os.getenv("ONLY_MESSAGE")
motto = os.getenv("MOTTO")
notice_info = get_notice_info(data=None)
2021-01-10 10:13:19 +08:00
check_info = get_checkin_info(data=None)
else:
2020-12-10 12:24:40 +08:00
if isinstance(event, dict):
message = event.get("Message")
else:
message = None
2021-01-12 07:03:34 +08:00
try:
with open(os.path.join(os.path.dirname(__file__), "config/config.json"), "r", encoding="utf-8") as f:
2021-01-12 07:03:34 +08:00
data = json.loads(f.read())
motto = data.get("MOTTO")
notice_info = get_notice_info(data=data)
2021-01-12 07:03:34 +08:00
check_info = get_checkin_info(data=data)
except Exception as e:
raise e
2020-12-10 12:45:24 +08:00
content_list = [f"当前时间: {utc_time}"]
2020-12-10 17:08:36 +08:00
if message == "xmly":
2021-01-10 10:13:19 +08:00
if check_info.get("xmly_cookie_list"):
check_name, check_func = checkin_map.get("XMLY_COOKIE_LIST")
for check_item in check_info.get("xmly_cookie_list", []):
2021-01-11 18:05:04 +08:00
try:
msg = check_func(check_item).main()
content_list.append(f"{check_name}\n{msg}")
2021-01-11 18:05:04 +08:00
except Exception as e:
print(check_name, e)
else:
for one_check, check_tuple in checkin_map.items():
check_name, check_func = check_tuple
if one_check not in ["XMLY_COOKIE_LIST"]:
if check_info.get(one_check.lower()):
print(f"----------已检测到正确的配置,并开始执行 {one_check} 签到----------")
for check_item in check_info.get(one_check.lower(), []):
try:
msg = check_func(check_item).main()
content_list.append(f"{check_name}\n{msg}")
except Exception as e:
print(check_name, e)
else:
print(f"----------未检测到正确的配置,并跳过执行 {one_check} 签到----------")
if motto:
2021-01-10 10:13:19 +08:00
try:
msg_list = Motto().main()
except Exception as e:
print(e)
msg_list = []
content_list += msg_list
content_list.append(f"任务使用时间: {int(time.time() - start_time)}")
if message == "xmly":
if utc_time.hour in [9, 18] and utc_time.minute == 0:
flag = True
else:
flag = False
else:
flag = True
if flag:
push_message(content_list=content_list, notice_info=notice_info)
return
2020-12-07 13:29:36 +08:00
if __name__ == "__main__":
2020-12-12 08:42:52 +08:00
args = sys.argv
if len(args) > 1:
event = {"Message": args[1]}
2020-12-12 08:42:52 +08:00
else:
event = None
main_handler(event=event, context=None)