Mercurial > templog
annotate web/templog.py @ 189:101c66da848d
watcher script
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sun, 09 Feb 2014 11:41:13 +0800 |
parents | ae5efca89001 |
children | 8318d50d766d |
rev | line source |
---|---|
27 | 1 #!/usr/bin/env python2.7 |
2 | |
28 | 3 import binascii |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
4 import json |
28 | 5 import hmac |
29 | 6 import zlib |
69 | 7 from datetime import datetime, timedelta |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
30
diff
changeset
|
8 import time |
69 | 9 import urllib |
10 import sys | |
182 | 11 import os |
185 | 12 import traceback |
13 import fcntl | |
28 | 14 |
27 | 15 import bottle |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
30
diff
changeset
|
16 from bottle import route, request, response |
27 | 17 |
28 | 18 import config |
19 import log | |
185 | 20 import secure |
28 | 21 |
69 | 22 DATE_FORMAT = '%Y%m%d-%H.%M' |
23 ZOOM_SCALE = 2.0 | |
24 | |
27 | 25 @route('/update', method='post') |
26 def update(): | |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
27 js_enc = request.forms.data |
28 | 28 mac = request.forms.hmac |
29 | |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
30 if hmac.new(config.HMAC_KEY, js_enc).hexdigest() != mac: |
85 | 31 raise bottle.HTTPError(code = 403, output = "Bad key") |
28 | 32 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
33 js = zlib.decompress(binascii.a2b_base64(js_enc)) |
28 | 34 |
146
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
35 params = json.loads(js) |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
36 |
3b4277aaed3c
update web to handle new style params
Matt Johnston <matt@ucc.asn.au>
parents:
103
diff
changeset
|
37 log.parse(params) |
28 | 38 |
39 return "OK" | |
27 | 40 |
41 @route('/graph.png') | |
42 def graph(): | |
69 | 43 length_minutes = int(request.query.length) |
44 end = datetime.strptime(request.query.end, DATE_FORMAT) | |
45 start = end - timedelta(minutes=length_minutes) | |
30
13fcf497f8b7
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
46 |
13fcf497f8b7
parse the arguments for start/length
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
47 response.set_header('Content-Type', 'image/png') |
69 | 48 start_epoch = time.mktime(start.timetuple()) |
49 return log.graph_png(start_epoch, length_minutes * 60) | |
27 | 50 |
188 | 51 @route('/set/update', method='post') |
52 def update(): | |
53 post_json = json.loads(request.forms.data) | |
54 | |
55 csrf_blob = post_json['csrf_blob'] | |
56 | |
57 return str(post_json['params']) | |
58 | |
182 | 59 @route('/set') |
60 def set(): | |
189 | 61 allowed = ["false", "true"][secure.get_user_hash() in config.ALLOWED_USERS] |
185 | 62 return bottle.template('set', |
63 inline_data = log.get_params(), | |
189 | 64 csrf_blob = secure.get_csrf_blob(), |
65 allowed = allowed) | |
182 | 66 |
67 @route('/set_current.json') | |
68 def set_fresh(): | |
69 response.set_header('Content-Type', 'application/javascript') | |
70 return log.get_current() | |
71 | |
27 | 72 @route('/') |
73 def top(): | |
69 | 74 |
75 minutes = int(request.query.get('length', 26*60)) | |
76 | |
77 if 'end' in request.query: | |
78 end = datetime.strptime(request.query.end, DATE_FORMAT) | |
79 else: | |
80 end = datetime.now() | |
81 | |
82 if 'zoom' in request.query: | |
83 orig_start = end - timedelta(minutes=minutes) | |
84 orig_end = end | |
85 xpos = int(request.query.x) | |
77 | 86 xpos -= config.GRAPH_LEFT_MARGIN * config.ZOOM |
69 | 87 |
77 | 88 if xpos >= 0 and xpos < config.GRAPH_WIDTH * config.ZOOM: |
69 | 89 click_time = orig_start \ |
77 | 90 + timedelta(minutes=(float(xpos) / (config.GRAPH_WIDTH * config.ZOOM)) * minutes) |
69 | 91 minutes = int(minutes / ZOOM_SCALE) |
92 | |
93 end = click_time + timedelta(minutes=minutes/2) | |
94 else: | |
95 # zoom out | |
96 minutes = int(minutes*ZOOM_SCALE) | |
97 end += timedelta(minutes=minutes/2) | |
98 | |
99 if end > datetime.now(): | |
100 end = datetime.now() | |
101 | |
102 request.query.replace('length', minutes) | |
103 request.query.replace('end', end.strftime(DATE_FORMAT)) | |
104 | |
105 urlparams = urllib.urlencode(request.query) | |
106 return bottle.template('top', urlparams=urlparams, | |
107 end = end.strftime(DATE_FORMAT), | |
108 length = minutes) | |
27 | 109 |
103 | 110 @route('/debug') |
111 def debuglog(): | |
112 response.set_header('Content-Type', 'text/plain') | |
113 return log.tail_debug_log() | |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
31
diff
changeset
|
114 |
182 | 115 @route('/env') |
116 def env(): | |
117 response.set_header('Content-Type', 'text/plain') | |
189 | 118 #return '\n'.join(traceback.format_stack()) |
119 return '\n'.join(("%s %s" % k) for k in request.environ.items()) | |
182 | 120 #return str(request.environ) |
121 #yield "\n" | |
122 #var_lookup = environ['mod_ssl.var_lookup'] | |
123 #return var_lookup("SSL_SERVER_I_DN_O") | |
124 | |
125 @bottle.get('/<filename:re:.*\.js>') | |
126 def javascripts(filename): | |
185 | 127 response.set_header('Cache-Control', "public, max-age=1296000") |
182 | 128 return bottle.static_file(filename, root='static') |
129 | |
185 | 130 secure.setup_csrf() |
182 | 131 |
27 | 132 def main(): |
61 | 133 #bottle.debug(True) |
134 #bottle.run(reloader=True) | |
135 bottle.run(server='cgi', reloader=True) | |
40 | 136 #bottle.run(port=9999, reloader=True) |
27 | 137 |
138 if __name__ == '__main__': | |
139 main() | |
140 | |
141 |