-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.py
191 lines (172 loc) · 4.92 KB
/
models.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
import datetime
import pymysql
from config import *
# 数据库信息(请按实际情况修改)
def db_info():
db = pymysql.connect(
host=get_mysql_host(),
port=get_mysql_port(),
user=get_mysql_user(),
password=get_mysql_password(),
database=get_mysql_database(),
charset=get_mysql_charset()
)
return db
# 排序查询数据库里的学生准考证号和姓名
def getstudents():
# 打开数据库连接
db = db_info()
# 使用 cursor() 方法创建一个游标对象 cursor
cursor = db.cursor()
# SQL 查询语句
sql = "SELECT * FROM students ORDER BY priority,zkzh"
# print(sql)
try:
# 执行SQL语句
cursor.execute(sql)
# 获取所有记录列表
results = cursor.fetchall()
# print(results)
# 关闭数据库连接
db.close()
return results
except:
# 关闭数据库连接
db.close()
return False
# 保存cookie到数据库
def setCookie(zkzh, cookie):
# 打开数据库连接
db = db_info()
# 使用 cursor() 方法创建一个游标对象 cursor
cursor = db.cursor()
# SQL 查询语句
cookies_timeout = datetime.datetime.now() + datetime.timedelta(minutes=5)
sql = "UPDATE students SET cookies='%s',cookies_timeout='%s' WHERE zkzh='%s'" % (cookie, cookies_timeout, zkzh)
# print(sql)
try:
# 执行SQL语句
cursor.execute(sql)
# 提交到数据库执行
db.commit()
# 关闭数据库连接
db.close()
return True
except:
# 发生错误时回滚
db.rollback()
# 关闭数据库连接
db.close()
return False
# 查询数据库中的Cookie
def getCookie(zkzh):
# 打开数据库连接
db = db_info()
# 使用 cursor() 方法创建一个游标对象 cursor
cursor = db.cursor()
# SQL 查询语句
sql = "SELECT * FROM students WHERE zkzh=" + zkzh
# print(sql)
try:
# 执行SQL语句
cursor.execute(sql)
# 获取所有记录列表
results = cursor.fetchall()
for row in results:
# zkzh = row[0]
# name = row[1]
# email = row[2]
# priority = row[3]
cookies = row[4]
cookies_timeout = row[5]
# 关闭数据库连接
db.close()
return [cookies, cookies_timeout]
except:
# 关闭数据库连接
db.close()
return False
# 查询数据库中的Cookie
def getname_email(zkzh):
# 打开数据库连接
db = db_info()
# 使用 cursor() 方法创建一个游标对象 cursor
cursor = db.cursor()
# SQL 查询语句
sql = "SELECT * FROM students WHERE zkzh=" + zkzh
# print(sql)
try:
# 执行SQL语句
cursor.execute(sql)
# 获取所有记录列表
results = cursor.fetchall()
for row in results:
# zkzh = row[0]
name = row[1]
email = row[2]
# priority = row[3]
# cookies = row[4]
# cookies_timeout = row[5]
# 关闭数据库连接
db.close()
return [name, email]
except:
# 关闭数据库连接
db.close()
return False
# 查询数据库中学生的考期和订阅情况
def getexam_month(zkzh):
# 打开数据库连接
db = db_info()
# 使用 cursor() 方法创建一个游标对象 cursor
cursor = db.cursor()
# SQL 查询语句
sql = "SELECT * FROM students WHERE zkzh=" + zkzh
# print(sql)
try:
# 执行SQL语句
cursor.execute(sql)
# 获取所有记录列表
results = cursor.fetchall()
for row in results:
# zkzh = row[0]
# name = row[1]
# email = row[2]
# priority = row[3]
# cookies = row[4]
# cookies_timeout = row[5]
exam_month = row[6]
# 关闭数据库连接
db.close()
if exam_month not in [1,4,7,10]:
print("\nexam_month的值不正确,请检查数据表数据!")
input("回车以退出")
exit(1)
return exam_month
except:
# 关闭数据库连接
db.close()
return False
# 设置数据库中学生的考期和订阅情况
def setexam_month(zkzh, exam_month):
# 打开数据库连接
db = db_info()
# 使用 cursor() 方法创建一个游标对象 cursor
cursor = db.cursor()
# SQL 查询语句
sql = "UPDATE students SET exam_month=%d WHERE zkzh='%s'" % (exam_month, zkzh)
# print(sql)
try:
# 执行SQL语句
cursor.execute(sql)
# 提交到数据库执行
db.commit()
# 关闭数据库连接
db.close()
return True
except:
# 发生错误时回滚
db.rollback()
# 关闭数据库连接
db.close()
return False