-
Notifications
You must be signed in to change notification settings - Fork 28
/
get_xdoj_outside.py
108 lines (92 loc) · 3.45 KB
/
get_xdoj_outside.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
# 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/>.
# contributed by speroxu
import pkg_resources
import subprocess
import sys
import os
try:
pkg_resources.require(('requests', 'Pillow'))
except (pkg_resources.DistributionNotFound, pkg_resources.VersionConflict):
subprocess.check_call([
sys.executable, '-m', 'pip', 'install', 'requests', 'Pillow'
])
try:
import credentials
USERNAME = credentials.XDOJ_USERNAME
PASSWORD = credentials.XDOJ_PASSWORD
except ImportError:
USERNAME, PASSWORD = [os.getenv(i) for i in ('XDOJ_USER', 'XDOJ_PASS')]
if not USERNAME or not PASSWORD:
print('请设置环境变量 XDOJ_USER 和 XDOJ_PASS')
exit(1)
import re
import requests
from PIL import Image
from io import BytesIO
base = 'http://acm.xidian.edu.cn/'
dir_name = USERNAME + '_xdacm'
os.makedirs(dir_name, exist_ok=True)
def login(sess):
try:
login_url = base + 'loginpage.php'
sess.get(login_url)
vcode_resp = sess.get(base + 'vcode.php')
img = Image.open(BytesIO(vcode_resp.content))
img.show()
vcode = input('验证码:')
if vcode == '':
raise PermissionError
if 'Verify Code Wrong!' in sess.post(base + 'login.php', data={
'user_id': USERNAME,
'password': PASSWORD,
'vcode': vcode,
'submit': 'Submit'
}).text:
raise PermissionError
return sess
except PermissionError:
return login(sess)
def get_status(sess, top=''):
url = base + 'status.php?user_id=' + USERNAME + top
page = sess.get(url).text
status_reg = r"<span class='btn.*?'>(.*?)<\/span>.*?submitpage.php\?id=([0-9]+)&sid=([0-9]+)"
params = re.findall(status_reg, page)
print(params)
for param in params:
get_code(sess, 'submitpage.php?id=%s&sid=%s' % (param[1:]), *param)
np_reg = r'&top=([0-9]+)&prevtop=([0-9]+)>Next\ Page</a>'
np = re.search(np_reg, page)
if np.group(1) != np.group(2):
get_status(sess, np.expand('&top=\\1&prevtop=\\2'))
def get_code(sess, url, status, problem_id, sid):
# print(url, status, id, sid)
code_page = sess.get(base + url).text
code_re_res = re.search(
r'<option value=\d selected>(.*?)</option>', code_page, re.S)
code_type = code_re_res.group(1).strip().lower()
code_type = 'cpp' if code_type == 'c++' else code_type
origin_code = re.search(
r'name="source">(.*?)</textarea>', code_page, re.S).group(1)
os.makedirs(dir_name + '/' + problem_id, exist_ok=True)
filename = dir_name + '/' + problem_id + '/' + sid + '.' + code_type
print(filename)
with open(filename, 'w') as fp:
fp.write(origin_code)
if __name__ == '__main__':
oj_sess = login(requests.Session())
get_status(oj_sess)