-
Notifications
You must be signed in to change notification settings - Fork 0
/
USOS.py
116 lines (93 loc) · 3.71 KB
/
USOS.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
# -*- coding: utf-8 -*-
import mechanize
from lxml import html
from USOS_Ocena import USOS_Ocena
from config import debug
def t(obj): return obj.text_content()
class USOS(mechanize.Browser):
def __init__(self):
mechanize.Browser.__init__(self)
self.set_handle_robots(False)
#user_agent = 'Mozilla/4.0 (compatible; MSIE 6.0; ' + \
#'Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)'
#self.addheaders += [("User-agent",user_agent)]
self.addheaders += [("Accept-Language",
'pl-PL,pl;q=0.8,en-US;q=0.6,en;q=0.4')]
def login(self,login,haslo):
try:
self.open('https://logowanie.uni.lodz.pl/cas/login')
self.select_form(nr=0)
self.form['username']=login
self.form['password']=haslo
self.submit()
except Exception,e:
print "Wyjatek w mechanize.Browser().submit(), czyszcze cookies"
print e
self._ua_handlers['_cookies'].cookiejar = mechanize.CookieJar()
self.open('https://logowanie.uni.lodz.pl/cas/login')
self.select_form(nr=0)
self.form['username']=login
self.form['password']=haslo
self.submit()
if self.response().read().find('Udane logowanie') == -1:
raise Exception('Blad logowania po stronie CAS.')
self.open('https://usosweb.uni.lodz.pl/kontroler.php?'+
'_action=actionx:logowaniecas/index()')
def pobierz_oceny(self):
ret = []
self.open('https://usosweb.uni.lodz.pl/kontroler.php?'+
'_action=actionx:dla_stud/studia/oceny/index()')
response = self.response().read()
if response.find("Zalogowany: <b") == -1:
raise Exception('Blad logowania po stronie USOS.')
tree = html.fromstring(response)
for ocena in tree.xpath('//table [@class = "grey"]//tr'):
if len(ocena) != 4:
continue
if t(ocena[2][0]) == '(brak ocen)':
continue
o_przedmiot = t(ocena[0][0])
#zapisz grupy podpiec jako string separowany srednikami.
tmp_o_kod = ()
for frag in ocena[1]:
tmp_o_kod += ( t(frag) ,)
o_kod = ' ; '.join(tmp_o_kod)
o_oceny = ''
for frag in ocena[2]:
if len(frag)==1:
pierwszy_termin = t(frag[0])
typ_zajec = "(nieznany)"
else:
typ_zajec = t(frag[0])
pierwszy_termin = t(frag[1])
do_sredniej = "-1"
url_do_sredniej=ocena[3].find('.//a').get('href')
#do_sredniej = self.do_sredniej(url,typ_zajec)
if len(frag)!=3:
ret.append(USOS_Ocena(o_przedmiot,o_kod, typ_zajec,do_sredniej,
url_do_sredniej,pierwszy_termin ))
else:
drugi_termin = t(frag[2])
ret.append(USOS_Ocena(o_przedmiot,o_kod, typ_zajec,do_sredniej,
url_do_sredniej,pierwszy_termin+' '+drugi_termin))
return ret
def wyloguj(self):
self.open('https://usosweb.uni.lodz.pl/kontroler.php?_action='+
'actionx:logowaniecas/wyloguj()')
if self.response().read().find('Wylogowałeś się z CAS - Centralnej Usługi'+
' Uwierzytelniania.')==-1:
raise Exception('Blad wylogowywania, na pewno byles zalogowany?')
else:
return True
def do_sredniej(self,url,typ_zajec):
tree = html.fromstring(self.open(url).read())
tabele = tree.xpath('//table [@class="grey" and '
+'contains(.,"'+unicode(typ_zajec)+'")]')
if len(tabele)==0:
tabele = tree.xpath('//table [@class="grey"]')
for tabela in tabele:
if t(tabela.xpath('.//tr [contains (.,"Czy ocena")]/td[2]//*')[0])=='TAK':
return True
else:
return False
debug("do_sredniej(): Tu nie powinien wejsc! url=%s" % url)