add combine phone

This commit is contained in:
lijingwei233 2020-02-20 22:42:16 +08:00
parent a1f73370d2
commit 5f7d17fc5d
5 changed files with 39 additions and 3 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -137,9 +137,12 @@ def connect(data):
# 用户密码
pwd = data['pwd']
# 进行登录
phone = ''
if data.get('phone'):
phone = data['phone']
try:
# 这里教务没问题账户没问题就是200密码错了就是101
res = connection(cid,pwd)
res = connection(cid,pwd,phone)
return res
except:
# 这了就是教务挂了

View File

@ -5,7 +5,26 @@ import base64
from bs4 import BeautifulSoup
import random
def connection(username,password):
def addphonenumber():
return '''
<html>
<head align="center">
<p>请输入手机号</p>
<p>教务新要求需要绑定手机</p>
<p>如果不放心可以登录教务查看</p>
<p>谢谢</p>
</head>
<body align="center">
<input type="text" value="输入手机号"/>
<button>确定</button>
</body>
</html>
'''
def connection(username,password,phone):
s = requests.Session()
# 获取统一身份系统的网页
r = s.get(url='http://mysso-cust-edu-cn-s.webvpn.cust.edu.cn:8118/cas/login?service=https%3A%2F%2Fwebvpn.cust.edu.cn%2Fauth%2Fcas_validate%3Fentry_id%3D1')
@ -20,6 +39,19 @@ def connection(username,password):
'geolocation':''
}
r = s.post(url='http://mysso-cust-edu-cn-s.webvpn.cust.edu.cn:8118/cas/login?service=https%3A%2F%2Fwebvpn.cust.edu.cn%2Fauth%2Fcas_validate%3Fentry_id%3D1',data=formdata)
soup=BeautifulSoup(r.text,'html.parser')
flag = soup.find(name='title')
if(flag.text=="手机号设置"):
execution=soup.find_all(name='input')[1]['value']
formdata = {
'phone': phone,
'execution': execution,
'_eventId': 'submit',
'submit': '提交'
}
print(execution)
r = s.post(url="http://mysso-cust-edu-cn-s.webvpn.cust.edu.cn:8118/cas/login?service=https%3A%2F%2Fwebvpn.cust.edu.cn%2Fauth%2Fcas_validate%3Fentry_id%3D1",data=formdata)
print(r.text)
r = s.get(url='http://portal-cust-edu-cn-s.webvpn.cust.edu.cn:8118/custp/index')
soup=BeautifulSoup(r.text,'html.parser')
try:
@ -36,6 +68,7 @@ def connection(username,password):
data = json.loads(r.content.decode('utf-8'))
student_name = data['data']['StudentDto']['XM']
student_id = data['data']['StudentDto']['XH']
print(student_name)
return {'errcode': 200, 'errmsg': 'ok', 'ip': ip, 's': s,'student_name':student_name,'student_id':student_id}
def getGrade(Ip, S):
@ -238,4 +271,4 @@ def getCurrentTime(Ip, S):
)
data = json.loads(r.content.decode('utf-8'))
data_cache = data['data'].pop('DateList')
return {'errcode': 200, 'errmsg': 'ok', 'data': data_cache}
return {'errcode': 200, 'errmsg': 'ok', 'data': data_cache}