-
Notifications
You must be signed in to change notification settings - Fork 28
/
get_sports_punch_records.py
79 lines (68 loc) · 2.89 KB
/
get_sports_punch_records.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
# Copyright (C) 2022 by the XiDian Open Source Community.
#
# This file is part of xidian-scripts.
#
# xidian-scripts is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by the
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# xidian-scripts is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
# for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with xidian-scripts. If not, see <http://www.gnu.org/licenses/>.
import pkg_resources
import subprocess
import sys
import os
try:
pkg_resources.require(('libxduauth'))
except (pkg_resources.DistributionNotFound, pkg_resources.VersionConflict):
subprocess.check_call([
sys.executable, '-m', 'pip', 'install', 'libxduauth'
])
try:
import credentials
USERNAME = credentials.SPORTS_USERNAME
PASSWORD = credentials.SPORTS_PASSWORD
except ImportError:
USERNAME, PASSWORD = [os.getenv(i) for i in ('SPORTS_USER', 'SPORTS_PASS')]
if not USERNAME or not PASSWORD:
print('请设置环境变量 SPORTS_USER 和 SPORTS_PASS')
exit(1)
from libxduauth import SportsSession
def get_current_term(session):
response = session.post(session.BASE_URL + 'stuTermPunchRecord/findList',
data={
'userId': session.user_id
}).json()
return (response['data'][0]['sysTermId'], response['data'][0]['sysTerm'])
def get_valid_punch_records(session, term_id):
response = session.post(session.BASE_URL + 'stuPunchRecord/findPagerOk',
data={
'userNum': USERNAME,
'sysTermId': term_id,
'pageSize': 999,
'pageIndex': 1
}).json()
return len(response['data'])
def get_all_punch_records(session, term_id):
response = session.post(session.BASE_URL + 'stuPunchRecord/findPager',
data={
'userNum': USERNAME,
'sysTermId': term_id,
'pageSize': 999,
'pageIndex': 1
}).json()
return len(response['data'])
if __name__ == '__main__':
ses = SportsSession(USERNAME, PASSWORD)
(term_id, term_name) = get_current_term(ses)
print('当前学期: ' + term_name)
valid_count = get_valid_punch_records(ses, term_id)
print('有效打卡次数: ' + str(valid_count))
all_count = get_all_punch_records(ses, term_id)
print('总打卡次数: ' + str(all_count))