Skip to content

Commit 356e75d

Browse files
author
David Pickart
committed
Add info fetching script
1 parent 790c0e5 commit 356e75d

File tree

3 files changed

+64
-76
lines changed

3 files changed

+64
-76
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.DS_Store
22
*.pyc
33
*.db
4-
4+
*.p
5+
*creds.txt

fetchInfo.py

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
import pickle, requests, re, datetime
2+
3+
printerPages = {}
4+
session = requests.session()
5+
endpoint = 'https://print.ads.carleton.edu:9192/app'
6+
7+
loginInfo = {
8+
'service': 'direct/1/Home/$Form$0',
9+
'sp': 'S0',
10+
'Form0': '$Hidden$0,$Hidden$1,inputUsername,inputPassword,$PropertySelection$0,$Submit$0',
11+
'$Hidden$0': 'true',
12+
'$Hidden$1': 'X',
13+
'$PropertySelection$0': 'en',
14+
'$Submit$0': 'Log in'
15+
}
16+
17+
def login(u, p):
18+
19+
loginInfo['inputUsername'] = u
20+
loginInfo['inputPassword'] = p
21+
session.get(endpoint)
22+
session.post(endpoint, loginInfo)
23+
24+
def navigateToPage():
25+
print "navigating to page"
26+
session.get(endpoint + '?service=page/UserWebPrint')
27+
session.get(endpoint + '?service=action/1/UserWebPrint/0/$ActionLink')
28+
29+
def storePrinterInfo(attempt):
30+
if attempt <= 3:
31+
print "Storing info on page " + str(attempt)
32+
url = endpoint + '?service=direct/1/UserWebPrintSelectPrinter/table.tablePages.linkPage&sp=AUserWebPrintSelectPrinter%2Ftable.tableView&sp=' + str(attempt)
33+
response = session.get(url)
34+
lines = response.text.split('<label')
35+
regex = '.*value=\"[0-9]+\".*\n(.*).*'
36+
for line in lines:
37+
matches = re.findall(regex, line)
38+
if matches:
39+
printerPages[str(matches[0])] = attempt
40+
41+
storePrinterInfo(attempt + 1)
42+
43+
44+
def main():
45+
46+
printerPages["updated"] = str(datetime.datetime.utcnow())
47+
48+
with open("creds.txt", "r") as file:
49+
u, p = file.read().splitlines()
50+
if not u or not p:
51+
print "Please include credentials"
52+
return
53+
54+
login(u, p)
55+
navigateToPage()
56+
storePrinterInfo(1)
57+
pickle.dump(printerPages, open("printerPages.p", "wb"))
58+
59+
if __name__ == '__main__':
60+
main()

jfp_server.py

+2-75
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from flask import Flask, request, session, g, redirect, url_for, \
66
abort, render_template, flash, jsonify
77
from contextlib import closing
8+
import pickle
89

910
# configuration
1011
DATABASE = '/var/www/web-print-server/web-print-server/db/data.db'
@@ -17,80 +18,6 @@
1718
app = Flask(__name__)
1819
app.config.from_object(__name__)
1920

20-
printerPages = {
21-
"print\\CASS101-X4600": 1,
22-
"print\\CLST100-CC5051": 1,
23-
"print\\CMC020-CC5051": 1,
24-
"print\\CMC104-CC5051": 1,
25-
"print\\CMC104-Gray-CC5051": 1,
26-
"print\\CMC121H-CC5051": 1,
27-
"print\\CMC201-X4600": 1,
28-
"print\\CMC305-X4600": 1,
29-
"print\\COWL108-CC5051": 1,
30-
"print\\FACI318-CC5051": 1,
31-
"print\\GHUE156-X5550": 1,
32-
"print\\GOOD102-X3610": 1,
33-
"print\\GOOD103-CC5051": 1,
34-
"print\\GOOD103-X6350": 1,
35-
"print\\HOPN104-CC5051": 1,
36-
"print\\HUL007A-X3600": 1,
37-
"print\\HUL010-X3600": 1,
38-
"print\\HUL014-X6350": 1,
39-
"print\\HUL100-CC5051": 1,
40-
"print\\LAIR115-CC5051": 1,
41-
"print\\LAIR118-CC5051": 1,
42-
"print\\LAIR208-CC5051": 1,
43-
"print\\LAIR208-X4600": 1,
44-
"print\\LAIR300-X3610": 1,
45-
"print\\LAST110-CC5051": 1,
46-
"print\\LDC220-CC5051": 2,
47-
"print\\LDC243-X5550": 2,
48-
"print\\LEIG128-LJM602": 2,
49-
"print\\LEIG217-X4510": 2,
50-
"print\\LEIG218-CC5051": 2,
51-
"print\\LEIG218-Gray-CC5051": 2,
52-
"print\\LEIG231-X4600": 2,
53-
"print\\LEIG326-CC5051": 2,
54-
"print\\LEIG326-X4600": 2,
55-
"print\\LEIG414-LJM602": 2,
56-
"print\\LIBR-Public-X5550": 2,
57-
"print\\LIBR400-CC5051": 2,
58-
"print\\MUDD075-X4510": 2,
59-
"print\\MUDD169-X4600": 2,
60-
"print\\MUSI200-X4600": 2,
61-
"print\\OLIN007-X6350": 2,
62-
"print\\OLIN011-X3600": 2,
63-
"print\\OLIN104-X4510": 2,
64-
"print\\OLIN112-X4510": 2,
65-
"print\\OLIN125-CC5051": 2,
66-
"print\\OLIN125-Gray-CC5051": 2,
67-
"print\\OLIN215-CC5051": 2,
68-
"print\\OLIN301-X4600": 2,
69-
"print\\OLIN311-CC5051": 2,
70-
"print\\OLIN311-X6350": 2,
71-
"print\\RSC105-CC5051": 3,
72-
"print\\RSC235-CC5051": 3,
73-
"print\\SAYL-Public-X5550": 3,
74-
"print\\SAYL050-X6360": 3,
75-
"print\\SAYL057-CC5051": 3,
76-
"print\\SAYL109A-X4510": 3,
77-
"print\\SAYL150-X4510": 3,
78-
"print\\SCOV014-CC5051": 3,
79-
"print\\SEVY014-CC5051": 3,
80-
"print\\SEVY129-CC5051": 3,
81-
"print\\STRG107-CC5051": 3,
82-
"print\\TWCO100-CC5051": 3,
83-
"print\\WCC003-X3610": 3,
84-
"print\\WCC028-CC5051": 3,
85-
"print\\WCC138-X6360": 3,
86-
"print\\WCC146-X3610": 3,
87-
"print\\WCC225-CC5051": 3,
88-
"print\\WEST200-CC5051": 3,
89-
"print\\WILL119-X4600": 3,
90-
"print\\WILL310-CC5051": 3,
91-
"print\\WILL409-X4600": 3
92-
}
93-
9421
#database helper functions
9522
def connect_db():
9623
return sqlite3.connect(app.config['DATABASE'])
@@ -163,7 +90,7 @@ def get_status():
16390
response["errors"] = message
16491
except:
16592
pass
166-
response["printerPages"] = printerPages
93+
response["printerPages"] = pickle.load(open("printerPages.p", "rb"))
16794
return(jsonify(**response))
16895

16996

0 commit comments

Comments
 (0)