forked from realityone/libcet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCetTicket.py
164 lines (122 loc) · 4.87 KB
/
CetTicket.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
#!/usr/bin/env python
# coding=utf-8
import os
import ctypes
import random
import CetConfig
from ctypes import CDLL, c_char, c_int, byref, create_string_buffer, Structure, Union
try:
import requests
except ImportError:
print('You need to install requests to use full functions.')
def random_mac():
return '-'.join(['%.2X' % random.randint(0, 16) for i in xrange(6)])
DES_cblock = c_char * 8
DES_LONG = c_int
class TicketNotFound(Exception):
pass
class ks(Union):
_fields_ = [
('cblock', DES_cblock),
('deslong', DES_LONG * 2)
]
class DES_key_schedule(Structure):
_fields_ = [
('ks', ks * 16),
]
class CetCipher(object):
ticket_number_key = '(YesuNRY'
request_data_key = '?!btwNP^'
DECRYPT = 0
ENCRYPT = 1
def __init__(self, libcrypto_path=None):
if not libcrypto_path:
from ctypes.util import find_library
libcrypto_path = find_library('crypto')
if not libcrypto_path:
raise Exception('libcrypto(OpenSSL) not found')
self.libcrypto = CDLL(libcrypto_path)
if hasattr(self.libcrypto, 'OpenSSL_add_all_ciphers'):
self.libcrypto.OpenSSL_add_all_ciphers()
def process_data(self, indata, key, is_enc=1):
length = len(indata)
indata = create_string_buffer(indata, length)
outdata = create_string_buffer(length)
n = c_int(0)
key = DES_cblock(*tuple(key))
key_schedule = DES_key_schedule()
self.libcrypto.DES_set_odd_parity(key)
self.libcrypto.DES_set_key_checked(byref(key), byref(key_schedule))
self.libcrypto.DES_cfb64_encrypt(byref(indata),
byref(outdata),
c_int(length),
byref(key_schedule), byref(key), byref(n), c_int(is_enc))
return outdata.raw
def decrypt_ticket_number(self, ciphertext):
ciphertext = ciphertext[2:]
return self.process_data(ciphertext, self.ticket_number_key, is_enc=self.DECRYPT)
def encrypt_ticket_number(self, ticket_number):
ciphertext = self.process_data(ticket_number,
self.ticket_number_key, is_enc=self.ENCRYPT)
ciphertext = '\x35\x2c' + ciphertext
return ciphertext
def decrypt_request_data(self, ciphertext):
return self.process_data(ciphertext, self.request_data_key, is_enc=self.DECRYPT)
def encrypt_request_data(self, request_data):
return self.process_data(request_data, self.request_data_key, is_enc=self.ENCRYPT)
class CetTicket(object):
"""
usage:
ct = CetTicket()
print ct.find_ticket_number('浙江', '浙江海洋学院', 'XXX', cet_type=2)
"""
search_url = 'http://find.cet.99sushe.com/search'
score_url = 'http://cet.99sushe.com/findscore'
CET4 = 1
CET6 = 2
USER_AGENT = os.environ.get('USER_AGENT', '高坂穗乃果')
@classmethod
def find_ticket_number(cls, province, school, name, examroom='', cet_type=1):
"""
You can read the `school.json` file to check if your school is supported.
cet_type:
1 ==> cet4
2 ==> cet6
"""
cipher = CetCipher()
province_id = CetConfig.PROVINCE[province]
param_data = u'type=%d&provice=%d&school=%s&name=%s&examroom=%s&m=%s' % (cet_type, province_id,
school, name,
examroom, random_mac())
param_data = param_data.encode('gbk')
encrypted_data = cipher.encrypt_request_data(param_data)
resp = requests.post(url=cls.search_url, data=encrypted_data, headers={'User-Agent': cls.USER_AGENT})
ticket_number = cipher.decrypt_ticket_number(resp.content)
if ticket_number == '':
raise TicketNotFound('Cannot find ticket number.')
return ticket_number
@classmethod
def get_score(cls, ticket_number, name):
name = name.encode('gbk')
params_dict = {
'id': ticket_number,
'name': name[:4]
}
resp = requests.post(url=cls.score_url,
data=params_dict,
headers={'Referer': 'http://cet.99sushe.com/'})
score_data = resp.content.decode('gbk')
if len(score_data) < 10:
return dict(error=True)
score_data = score_data.split(',')
score = {
'name': score_data[6],
'school': score_data[5],
'Listening': score_data[1],
'Reading': score_data[2],
'Writing': score_data[3],
'Total': score_data[4]
}
return score
if __name__ == '__main__':
pass