数据库 DB 设计#
1. 数据库表结构设计#
数据库包含以下表项:用户信息表、收集信息表、题目信息表、选项信息表、答案信息表、提交信息表、内容信息表
1.1 用户信息表#
用户信息表项代码设计如下。
Bases: db.Model
, UserMixin
用户信息表。
记录已注册用户的相关信息。
Attributes:
Name | Type | Description |
---|---|---|
id |
db.Interger
|
主键,自增 |
name |
db.String
|
用户昵称(不可为空) |
username |
db.String
|
用户名(不可为空,不可重复) |
password_hash |
db.String
|
密码散列值(不可为空) |
userpath |
db.String
|
用户空间路径(不可为空,不可重复) |
email |
db.String
|
用户邮箱(不可为空) |
authorization_code |
db.String
|
邮箱授权码 |
Source code in Flask\models.py
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 |
|
email_authentication(user_email=email, user_pwd=authorization_code, host='smtp.sina.com')
#
邮箱认证
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user_email |
str
|
用户邮箱 |
email
|
user_pwd |
str
|
邮箱授权码 |
authorization_code
|
host |
str
|
发送邮件服务器地址 |
'smtp.sina.com'
|
Source code in Flask\models.py
send_email(to_email, email_title, email_message)
#
发送邮件,可以单发也可以群发,取决于传入参数 to_email 的类型
Parameters:
Name | Type | Description | Default |
---|---|---|---|
to_email |
str | list
|
目标邮箱地址,若为列表则代表群发 |
required |
email_title |
str
|
邮件标题 |
required |
email_message |
str
|
邮件正文,可以使用 HTML 格式的字符串 |
required |
Returns:
Type | Description |
---|---|
bool
|
布尔值,表示是否发送成功 |
Source code in Flask\models.py
set_email(email)
#
set_password(password)
#
set_userpath()
#
validate_password(password)
#
验证密码
Parameters:
Name | Type | Description | Default |
---|---|---|---|
password |
str
|
密码(明文) |
required |
Returns:
Type | Description |
---|---|
bool
|
布尔值,表示密码是否正确 |
1.2 收集信息表#
收集信息表项代码设计如下。
Bases: db.Model
收集表。
记录已创建收集的相关信息。
Attributes:
Name | Type | Description |
---|---|---|
id |
db.Integer
|
主键 |
creator |
db.String
|
创建人员名称(不可为空) |
creator_id |
db.String
|
创建人员ID(外键:关联user.id;不可为空) |
collection_title |
db.String
|
收集标题(不可为空) |
description |
db.String
|
收集描述(不可为空) |
start_date |
db.String
|
开始时间,自动设置为创建收集的时间(不可为空) |
end_date |
db.String
|
结束时间(不可为空) |
status |
db.Enum
|
收集的状态('0' 发布,'1' 暂存,'2' 已结束,'3' 已失效)(不可为空) |
namelist_path |
db.String
|
应交名单路径 |
Source code in Flask\models.py
1.3 题目信息表#
题目信息表项代码设计如下。
Bases: db.Model
题目表。
记录已创建收集的题目相关信息。
Attributes:
Name | Type | Description |
---|---|---|
id |
db.Integer
|
主键 |
collection_id |
db.String
|
收集id(外键:关联collection_info.id)(不可为空) |
qno |
db.Integer
|
题目序号(不可为空) |
question_type |
db.Enum
|
题目类型(不可为空): '0' 上传文件题; '1' 单选; '2' 多选; '3' 姓名题; '4' 学号题; '5' 问卷题(单选); '6' 问卷题(多选) |
question_title |
db.String
|
问题标题(不可为空) |
question_description |
db.String
|
问题描述 |
rename_rule |
db.String
|
文件重命名规则 |
file_path |
db.String
|
提交文件路径(不可重复)(文件上传题需设置,其余类型不必) |
Source code in Flask\models.py
1.4 选项信息表#
选项信息表项代码设计如下。
Bases: db.Model
问卷题选项表
记录问卷题的每一个选项内容。
Attributes:
Name | Type | Description |
---|---|---|
id |
db.Integer
|
主键 |
question_id |
db.Integer
|
题目id(外键:关联question_info.id)(不可为空) |
collection_id |
db.Integer
|
收集id(不可为空) |
qno |
db.Integer
|
题目序号(不可为空) |
option_sn |
db.Integer
|
选项序号(不可为空) |
option_content |
db.Text
|
选项内容(不可为空) |
Source code in Flask\models.py
1.5 答案信息表#
答案信息表项代码设计如下。
Bases: db.Model
答案表。
记录单选题和多选题的答案。
Attributes:
Name | Type | Description |
---|---|---|
id |
db.Integer
|
主键 |
question_id |
db.Integer
|
题目id(外键:关联question_info.id)(不可为空) |
collection_id |
db.Integer
|
收集id(不可为空) |
qno |
db.Integer
|
题目序号(不可为空) |
answer_option |
db.String
|
答案选项(单选题格式为x,多选题格式为x-x-x-……)(不可为空) |
Source code in Flask\models.py
1.6 提交信息表#
提交信息表项代码设计如下。
Bases: db.Model
收集提交记录
记录所有收集的提交记录。
Attributes:
Name | Type | Description |
---|---|---|
id |
db.Integer
|
主键 |
collection_id |
db.Integer
|
收集id(外键:关联collection_info.id)(不可为空) |
collection_title |
db.String
|
收集标题(不可以为空) |
submitter_name |
db.String
|
提交者姓名(不可以为空) |
submit_time |
db.DateTime
|
提交时间(不可以为空),默认为datetime.datetime.now() |
Source code in Flask\models.py
1.7 内容信息表#
提交内容信息表项代码设计如下。
Bases: db.Model
提交内容信息表。
记录收集每一题的填写情况。
Attributes:
Name | Type | Description |
---|---|---|
id |
db.Integer
|
主键 |
submission_id |
db.Integer
|
提交记录id(外键:关联submission_info.id)(不可为空) |
question_id |
db.Integer
|
题目id(外键:关联question_info.id)(不可为空) |
collection_id |
db.Integer
|
收集id(不可为空) |
qno |
db.Integer
|
题目序号(不可为空) |
result |
db.String
|
某个人对这一题的填写结果(若为文件上传题,则此字段存放上传的文件名称)(不可为空) |
Source code in Flask\models.py
2. 数据库 API 设计#
数据库提供了一系列操作接口方便 Flask 视图函数处理数据。
2.1 帐号信息相关#
2.1.1 修改密码#
修改密码通过 modify_password
实现。
修改密码
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user_id |
int
|
用户id |
required |
original_pswd |
str
|
原始密码 |
required |
new_pswd |
str
|
新密码 |
required |
Returns:
Type | Description |
---|---|
int
|
若为 -1,则用户 id 不存在;若为 0,则原密码错误;若为 1,则修改成功。 |
Source code in Flask\db_manipulation.py
2.1.2 修改个人信息#
修改个人信息通过 modify_personal_info
实现。
修改个人信息(昵称、邮箱、邮箱授权码)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user_id |
int
|
用户id |
required |
new_name |
str
|
新昵称 |
required |
new_email |
str
|
新邮箱 |
required |
authorization_code |
str
|
邮箱授权码 |
required |
Returns:
Type | Description |
---|---|
int
|
若为-1,则用户id不存在;若为1,则修改成功。 |
Source code in Flask\db_manipulation.py
2.2 收集信息相关#
2.2.1 添加收集问卷#
添加收集通过 add_FC
实现。
将新创建的收集存入数据库,并为每个收集分配一个收集者用户目录下的子目录,总长度为 X 位,最后一位代表收集 id。
Parameters:
Name | Type | Description | Default |
---|---|---|---|
question_list |
list
|
题目信息列表 |
required |
user_id |
int
|
用户id |
required |
Returns:
Name | Type | Description |
---|---|---|
collection_id |
int
|
收集id |
Source code in Flask\db_manipulation.py
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 |
|
2.2.2 删除收集问卷#
删除收集通过 delete_collection
实现。
删除id为collection_id的收集在数据库中的所有相关信息
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id |
int
|
收集id |
required |
Source code in Flask\db_manipulation.py
2.2.3 查看收集信息#
查看收集信息通过 get_question_dict
实现。
获取id为collection_id的收集的相关信息
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id |
int
|
收集id |
required |
Returns:
Type | Description |
---|---|
dict
|
一个字典,包含该收集的相关信息(收集标题、收集描述、创建者、截止时间、题目等等)。 格式如下: [('collectionTitle', 'ceshi'), ('collector', '凯'), ('deadline', '2022-11-18T22:31:49'), ('description', ''), ('question_name1', '姓名'), ('detail1', ''), ('question_sno2', '学号'), ('detail2', ''), ('question_file3', '文件'), ('detail3', ''), ('question_radio4', '单选题'), ('detail4', ''), ('checked_radio4', 'A'), ('question_multipleChoice5', '多选题'), ('detail5', ''), ('checked_mulans5', 'B'), ('checked_mulans5', 'C'), ('question_qnaire6', '问卷题目'), ('detail6', ''), ('qn_option6', 'asdf'), ('qn_option6', 'adff'), ('choose_type6', 'single')] |
Source code in Flask\db_manipulation.py
630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 |
|
2.2.4 修改收集信息#
修改已创建收集的信息通过 modify_collection
实现。
修改已创建的收集
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id |
int
|
收集id |
required |
question_list |
list
|
问题信息列表 |
required |
Source code in Flask\db_manipulation.py
1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 |
|
2.2.5 获取提交信息#
获取某个收集的提交信息通过 submission_record
实现。
获取id为collection_id的收集的提交记录(姓名,提交时间,文件数量,文件详情)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id |
int
|
收集id |
required |
Returns:
Type | Description |
---|---|
list
|
一个元组列表,每个元组表示一条提交信息。 For example: [('计胜翔', datetime.datetime(2022, 11, 5, 20, 25, 32, 142115), 2, ['jsx1.pdf', 'jsx2.doc']), ('张隽翊', datetime.datetime(2022, 11, 5, 20, 25, 32, 142115), 1, ['zjy1.pdf'])] |
Source code in Flask\db_manipulation.py
对应的另一个版本是 submission_record_v2
,相比 submission_record
多返回了提交 id。
获取id为collection_id的收集的提交记录(姓名,提交时间,文件数量,文件详情)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id |
int
|
收集id |
required |
Returns:
Type | Description |
---|---|
list
|
一个元组列表,每个元组表示一条提交信息,元组按Submission.id排序。 每个元组格式为(提交记录id: int, 姓名: string, 提交时间: datetime, 文件数量: int, 文件详情: list) 例如: [(1, '计胜翔', datetime.datetime(2022, 11, 5, 20, 25, 32, 142115), 2, ['jsx1.pdf', 'jsx2.doc']), (2, '张隽翊', datetime.datetime(2022, 11, 5, 20, 25, 32, 142115), 1, ['zjy1.pdf'])] |
Source code in Flask\db_manipulation.py
2.2.6 添加提交信息#
向数据库中添加用户填写的内容通过 save_submission
实现。
保存收集提交内容
Parameters:
Name | Type | Description | Default |
---|---|---|---|
submission_list |
list
|
提交信息列表 |
required |
collection_id |
int
|
收集id |
required |
file |
werkzeug.datastructures.ImmutableMultiDict
|
网页提交表单中的文件数据 |
required |
Returns:
Type | Description |
---|---|
int
|
若提交时间超过收集截止时间,则返回-1; |
int
|
若未超时,则返回提交记录id。 |
Source code in Flask\db_manipulation.py
967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 |
|
2.2.7 提交文件存储#
将提交者上传的文件存储到正确的位置通过 file_upload
实现。
将提交的文件重命名后,存储到题目相应的路径中
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id |
int
|
收集id |
required |
question_list |
list
|
问题信息列表 |
required |
file |
werkzeug.datastructures.ImmutableMultiDict
|
网页提交表单中的文件数据 |
required |
Returns:
Type | Description |
---|---|
werkzeug.datastructures.ImmutableMultiDict
|
返回重命名后的表单中的文件数据,以便调用save_submission函数时使用 |
Source code in Flask\db_manipulation.py
2.3 状态更新相关#
2.3.1 计算收集截止倒计时#
计算某个收集还有多长时间截止的倒计时通过 deadline_countdown
实现。
截止倒计时
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id |
int
|
收集id |
required |
Returns:
Type | Description |
---|---|
Datetime
|
截止倒计时。 |
Source code in Flask\db_manipulation.py
2.3.4 修改收集状态为截止#
将收集的状态修改为“已截止”通过 stop_collection
实现。
停止收集
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id |
int
|
收集id |
required |
action_list |
list
|
操作码列表 |
required |
Source code in Flask\db_manipulation.py
2.4 统计汇总相关#
2.4.1 统计提交数量#
统计提交数量通过 count_submission
实现。
统计一个收集的提交数量
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id |
int
|
收集id |
None
|
Returns:
Type | Description |
---|---|
int
|
若collection_id不为 None,则返回该问卷的提交数量,是一个整数;否则返回None。 |
Source code in Flask\db_manipulation.py
2.4.2 统计已收文件数#
统计已收文件数通过 count_filenum
实现。
统计一个收集的已收文件数
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id |
int
|
收集id |
None
|
Returns:
Type | Description |
---|---|
int
|
若collection_id不为None,则返回该问卷的已收文件数,是一个整数;否则返回None。 |
Source code in Flask\db_manipulation.py
2.4.3 获取收集信息和提交记录#
获取收集信息和指定 id 的用户提交内容通过 get_submission_dict
实现。
获取id为collection_id的收集、提交记录id为submission_id的用户提交内容信息
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id |
int
|
收集id |
required |
submission_id |
int
|
提交记录id |
required |
Returns:
Type | Description |
---|---|
dict
|
一个字典,包含该提交记录中用户的提交内容。 格式如下: {'1_collectionTitle': '核酸检测', '2_collector': '张三', '3_deadline': '2022-11-15 15:23:09', '4_description': '', '5_question_name1': '姓名', '6_detail1': '', '7_submit_name1': '王广凯', '8_question_sno2': '学号', '9_detail2': '', '10_submit_sno2': 'U202012345', '11_question_file3': '文件', '12_detail3': '', '13_submit_file3': '系统设计.md', '14_question_radio4': '单选题', '15_detail4': '', '16_checked_radio4': 'A', '17_submit_radio4': 'B', '18_question_multipleChoice5': '多选题', '19_detail5': '', '20_checked_mulans5': 'C', '21_checked_mulans5': 'D', '22_submit_mulans5': 'A', '23_submit_mulans5': 'B', '24_question_qnaire6': '问卷题目', '25_detail6': '是否已做核酸', '26_qn_option6': '是', '27_qn_option6': '否', '28_submit_qnaire6': '2'} |
Source code in Flask\db_manipulation.py
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 |
|
2.4.4 统计答题情况#
统计选择题、问卷题答题情况通过 collection_data_statistics
实现。
对收集中的选择题、问卷题的答题情况进行数据统计
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_id |
int
|
收集id |
required |
Returns:
Name | Type | Description |
---|---|---|
choice_statistics |
dict
|
选择题答题情况数据统计。若收集中无选择题,则返回None;否则返回一个字典,格式如下: choice_data = {'question_1': { 'questionName': '单选题', 'correctAnswer': 'A', 'accuracy': 0.25, 'A': ['王梓熙'], 'B': ['张隽翊'], 'C': ['王广凯'], 'D': ['计胜翔'] }, 'question_2': { 'questionName': '多选题', 'correctAnswer': 'C-D', 'accuracy': 0.25, 'A': ['王梓熙', '计胜翔'], 'B': ['王梓熙', '张隽翊'], 'C': ['张隽翊', '王广凯'], 'D': ['王广凯', '计胜翔'] } } |
qnaire_statistics |
dict
|
问卷题答题情况数据统计。若收集中无问卷题,则返回None;否则返回一个字典,格式如下: qnaire_data = {'question_1': { 'questionName': '你喜欢吃屎吗?', 'optionNumber': 2, 'option_1': { 'optionName': '喜欢', 'peopleNumber': 3, 'people': ['王梓熙', '张隽翊', '王广凯'] }, 'option_2': { 'optionName': '不喜欢', 'peopleNumber': 1, 'people': ['计胜翔'] } } } |
Source code in Flask\db_manipulation.py
1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 |
|