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