-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathclassPush.py
192 lines (167 loc) · 6.22 KB
/
classPush.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
import json # json 解析
import random
import os
import requests # http 请求库
import datetime
from wechatpy import WeChatClient
from wechatpy.client.api import WeChatMessage
id = os.environ["STUDENT_ID"] # 学号
pwd = os.environ["PASSWORD"] # 密码
# 微信公众号 ID
app_id = os.environ["APP_ID"]
# 微信公众号 app_secret
app_secret = os.environ["APP_SECRET"]
semester = '2022-2023-1' # 学期
firstDay = '2022-08-29' # 学期开始日期
# 用户ID
user_id_1 = os.environ["USER_ID_1"]
user_id_2 = os.environ["USER_ID_2"]
template_id_class = os.environ["TEMPLATE_ID_CLASS"]
template_id_noclass = os.environ["TEMPLATE_ID_NOCLASS"]
# "jsxm": "老师", // 教师姓名
# "jsmc": "一教101", // 教室名称
# "jssj": "9:35", // 结束时间
# "kssj": "08:00", // 开始时间
# "kkzc": "1", // 开课周次,有三种已知格式1)a - b、2)a, b, c、3)a - b, c - d
# "kcsj": "10102", // 课程时间,格式x0a0b,意为星期x的第a, b节上课
# "kcmc": "大学英语", // 课程名称
# "sjbz": "0" // 具体意义未知,据观察值为1时本课单周上,2时双周上
user_id_list = [
{'user_id': user_id_1, "name": 'Orange', "date": "2021-04-02", "birthday": "05-28",
'city': '110108'}
# ,{'user_id': user_id_2, "name": 'Orange', "date": "2021-04-02", "birthday": "05-28",
# 'city': '110108'}
]
week = '6'
table = [[{'jsxm': '无', 'jsmc': '无', 'jssj': '00:00', 'kssj': '00:00', 'kkzc': '0', 'kcsj': '00000', 'kcmc': '本节无课',
'sjbz': '0'} for i in range(1, 100)] for j in range(1, 100)]
# 获取当前日期
def getNowDate():
now = datetime.datetime.now()
return now.strftime('%Y-%m-%d')
# 判断当前日期所在周数
def getWeek():
# 获取现在时间
now = datetime.datetime.now()
# 第一周
firstWeek = datetime.datetime.strptime(firstDay, '%Y-%m-%d')
# 当前周数
week = (now - firstWeek).days // 7 + 1
print("第" + str(week) + "周")
return week
# 判断今天星期几
def getWeekDay():
d = datetime.datetime.now()
weekd = d.weekday() + 1
# 如果时间在16:00-23:59之间,那么weekd+1
if 16 <= d.hour <= 23:
weekd += 1
print("星期" + str(weekd))
return int(weekd)
# 判断当前所在第几节课
def getNowClass():
# 获取现在时间
now = datetime.datetime.now()
# 获取现在时间的小时和分钟
year = now.year
hour = now.hour
minute = now.minute + 20
second = now.second
# 如果分钟大于60,小时加1,分钟减60
if minute >= 60:
hour += 1
minute -= 60
# 拼接为时间格式
if hour < 10:
nowTime = '0' + str(hour) + ':' + str(minute) + ':' + str(second)
else:
nowTime = str(hour) + ':' + str(minute) + ':' + str(second)
if hour == 24:
nowTime = '00' + ':' + str(minute) + ':' + str(second)
print("现在时间:" + nowTime)
# 判断当前时间所在第几节课
# 如果当前时间位于 8:00 到 9:35 之间,返回 1
# Github采用UTC时间,北京时间比UTC时间早8小时
dt1 = datetime.datetime.strptime('00:00:00', '%H:%M:%S')
dt2 = datetime.datetime.strptime('01:50:00', '%H:%M:%S')
dt3 = datetime.datetime.strptime('05:30:00', '%H:%M:%S')
dt4 = datetime.datetime.strptime('07:20:00', '%H:%M:%S')
dt5 = datetime.datetime.strptime('10:30:00', '%H:%M:%S')
dtNow = datetime.datetime.strptime(nowTime, '%H:%M:%S')
# print((dtNow - dt1).seconds)
if 0 <= (dtNow - dt1).seconds < 5700:
return 1
elif 0 <= (dtNow - dt2).seconds < 8700:
return 3
elif 0 <= (dtNow - dt3).seconds < 5700:
return 6
elif 0 <= (dtNow - dt4).seconds < 5700:
return 8
elif 0 <= (dtNow - dt5).seconds < 8700:
return 10
else:
return -1
def Crawl():
loginLink = "http://newjwxt.bjfu.edu.cn/app.do?method=authUser&xh=" + id + "&pwd=" + pwd
rep = requests.get(loginLink)
res = json.loads(rep.text)
# 使用账号密码换取网站 token
token = res["token"]
tableUrl = "http://newjwxt.bjfu.edu.cn/app.do?method=getKbcxAzc&xh=" + id + "&xnxqid=" + semester + "&zc=" + week
header = {
"token": token # 传入 token ,鉴权
}
res = requests.get(url=tableUrl, headers=header)
schedule = json.loads(res.text) # 读取课表 json
# nowClass = getNowClass() # 获取当前所在第几节课
# print("当前第" + str(nowClass) + "节课")
# 显示 schedule 中第 nowClass 节课的课程
# print(schedule[nowClass - 1]['kcmc'])
# print(schedule) # 打印课表 json
# 初始化二维列表
# 将 schedule 中的课程信息赋值给 table
for i in schedule:
classNum = int(i['kcsj'][1] + i['kcsj'][2])
# 将课程信息写入列表
wd = int(i['kcsj'][0])
table[wd][classNum] = i
def QueryClass():
nowClass = getNowClass()
nowWd = getWeekDay()
if nowClass == -1:
print("当前无课")
else:
print("当前第" + str(nowClass) + "节课")
print(table[nowWd][nowClass])
return table[nowWd][nowClass]
# 随机文字颜色
def get_random_color():
return "#%06x" % random.randint(0, 0xFFFFFF)
# 发送消息 支持批量用户
def send_message():
for user in user_id_list:
user_id = user.get('user_id')
lesson = QueryClass()
client = WeChatClient(app_id, app_secret)
wm = WeChatMessage(client)
# 获取今天日期
# Date=today.strftime("%Y-%m-%d")
print(lesson['kcmc'])
ks = lesson['kcsj'][1] + lesson['kcsj'][2] + '~' + lesson['kcsj'][3] + lesson['kcsj'][4]
data = {
"kcmc": {"value": str(lesson['kcmc']), "color": get_random_color()},
"sksj": {"value": str(ks), "color": get_random_color()},
"jsmc": {"value": str(lesson['jsmc']), "color": get_random_color()},
"jsxm": {"value": str(lesson['jsxm']), "color": get_random_color()},
}
if (lesson['kcmc'] == '本节无课'):
# res = wm.send_template(user_id, template_id_noclass, data)
print('无课')
else:
res = wm.send_template(user_id, template_id_class, data)
print(res)
if __name__ == "__main__":
week = str(getWeek())
Crawl()
# QueryClass()
send_message()