Mercurial > templog
annotate web/templog.py @ 356:0c181d77c85a
merge
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sun, 24 Jun 2012 10:37:56 +0800 |
parents | d6219df77c41 |
children | 79761ee67134 |
rev | line source |
---|---|
333 | 1 #!/usr/bin/env python2.7 |
2 | |
334 | 3 import binascii |
4 import hmac | |
335 | 5 import zlib |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
336
diff
changeset
|
6 import datetime |
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
336
diff
changeset
|
7 import time |
334 | 8 |
333 | 9 import bottle |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
336
diff
changeset
|
10 from bottle import route, request, response |
333 | 11 |
334 | 12 import config |
13 import log | |
14 | |
333 | 15 @route('/update', method='post') |
16 def update(): | |
334 | 17 enc_lines = request.forms.lines |
18 mac = request.forms.hmac | |
19 | |
20 if hmac.new(config.HMAC_KEY, enc_lines).hexdigest() != mac: | |
21 raise HTTPError(code = 403, output = "Bad key") | |
22 | |
335 | 23 lines = zlib.decompress(binascii.a2b_base64(enc_lines)).split('\n') |
334 | 24 |
25 log.parse(lines) | |
26 | |
27 return "OK" | |
333 | 28 |
29 @route('/graph.png') | |
30 def graph(): | |
336
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
31 # url takes time in hours or days |
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
32 if 'day' in request.query: |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
336
diff
changeset
|
33 start_day = datetime.datetime.strptime(request.query.day, '%Y%m%d') |
336
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
34 start = time.mktime(start_day.timetuple()) |
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
35 length = int(request.query.length) * 3600 * 24 |
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
36 else: |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
336
diff
changeset
|
37 start_hour = datetime.datetime.strptime(request.query.hour, '%Y%m%d%H') |
336
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
38 start = time.mktime(start_hour.timetuple()) |
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
39 length = int(request.query.length) * 3600 |
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
40 |
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
41 response.set_header('Content-Type', 'image/png') |
ba4c4df13487
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
42 return log.graph_png(start, length) |
333 | 43 |
44 @route('/') | |
45 def top(): | |
46 return bottle.template('top', urlparams=request.query_string) | |
47 | |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
337
diff
changeset
|
48 @route('/test') |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
337
diff
changeset
|
49 def test(): |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
337
diff
changeset
|
50 import config |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
337
diff
changeset
|
51 import os |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
337
diff
changeset
|
52 f = open('%s/testout' % config.DATA_PATH, 'a+') |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
337
diff
changeset
|
53 f.write("more") |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
337
diff
changeset
|
54 f.flush() |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
337
diff
changeset
|
55 f.close() |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
337
diff
changeset
|
56 |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
337
diff
changeset
|
57 return 'done' |
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
337
diff
changeset
|
58 |
333 | 59 def main(): |
60 bottle.debug(True) | |
346 | 61 bottle.run(server='cgi') |
62 #bottle.run(port=9999, reloader=True) | |
333 | 63 |
64 if __name__ == '__main__': | |
65 main() | |
66 | |
67 |