Mercurial > templog
annotate web/views/set.tpl @ 291:f7261dd970da
- replace ssl client certs with cookies
- remove unused ssh code
- add /set?fake=1 test mode
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 06 Jul 2019 16:32:16 +0800 |
parents | 6b9be5dec572 |
children | ef407d48cbe5 |
rev | line source |
---|---|
182 | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | |
3 <head> | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
189 | 5 <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,minimum-scale=1"> |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
6 <script src="jquery-2.1.0.min.js"></script> |
188 | 7 <script src="jquery.mobile.custom.min.js"></script> |
182 | 8 <script> |
9 %include riot.min.js | |
10 </script> | |
286 | 11 <meta name="theme-color" content="#fff"> |
182 | 12 |
13 <style type="text/css"> | |
14 span.no_selection { | |
15 -webkit-user-select: none; // webkit (safari, chrome) browsers | |
16 -moz-user-select: none; // mozilla browsers | |
17 -khtml-user-select: none; // webkit (konqueror) browsers | |
18 } | |
19 | |
20 body { | |
189 | 21 font-family: sans-serif; |
182 | 22 } |
23 | |
291
f7261dd970da
- replace ssl client certs with cookies
Matt Johnston <matt@ucc.asn.au>
parents:
289
diff
changeset
|
24 a { |
f7261dd970da
- replace ssl client certs with cookies
Matt Johnston <matt@ucc.asn.au>
parents:
289
diff
changeset
|
25 color: #000; |
f7261dd970da
- replace ssl client certs with cookies
Matt Johnston <matt@ucc.asn.au>
parents:
289
diff
changeset
|
26 } |
f7261dd970da
- replace ssl client certs with cookies
Matt Johnston <matt@ucc.asn.au>
parents:
289
diff
changeset
|
27 |
182 | 28 input { |
29 border: 2px solid transparent; | |
30 border-radius: 4px; | |
31 background-color: white; | |
32 border-color: black; | |
33 padding: 0; | |
189 | 34 font-size: 30pt; |
35 height: 34pt; | |
289 | 36 vertical-align: middle; |
37 line-height: 1em; | |
182 | 38 } |
39 | |
40 input[type="button"] { | |
189 | 41 width: 34pt; |
42 margin-left: 4pt; | |
43 -webkit-appearance: none; | |
44 -moz-appearance: none; | |
45 background:#fff; | |
182 | 46 } |
47 | |
48 input[type="submit"] { | |
49 margin-top: 1em; | |
50 align: center; | |
189 | 51 width: 10em; |
182 | 52 } |
53 | |
188 | 54 input[type="text"], input[type="number"] { |
182 | 55 text-align: center; |
189 | 56 width: 4em; |
182 | 57 } |
58 | |
185 | 59 #savebox { |
189 | 60 vertical-align: center; |
185 | 61 width: 100%; |
62 } | |
63 | |
189 | 64 input[type="button"].onbutton { |
65 background: #ccc; | |
66 } | |
67 | |
68 input[type="button"].yesno { | |
69 width: 2.5em; | |
70 } | |
71 | |
72 input[type="button"]#savebutton { | |
73 width: 5em; | |
182 | 74 } |
75 | |
184 | 76 .modified { |
77 color: #d00; | |
78 font-weight: bold; | |
79 } | |
80 | |
182 | 81 .existing { |
189 | 82 margin-top: 10pt; |
182 | 83 } |
84 | |
194 | 85 span.inputrow { |
86 //vertical-align: center; | |
87 } | |
88 | |
291
f7261dd970da
- replace ssl client certs with cookies
Matt Johnston <matt@ucc.asn.au>
parents:
289
diff
changeset
|
89 #mailauth { |
f7261dd970da
- replace ssl client certs with cookies
Matt Johnston <matt@ucc.asn.au>
parents:
289
diff
changeset
|
90 display: none; |
f7261dd970da
- replace ssl client certs with cookies
Matt Johnston <matt@ucc.asn.au>
parents:
289
diff
changeset
|
91 } |
f7261dd970da
- replace ssl client certs with cookies
Matt Johnston <matt@ucc.asn.au>
parents:
289
diff
changeset
|
92 |
182 | 93 </style> |
94 <title>Set templog</title> | |
95 </head> | |
96 | |
97 | |
98 <script type="html/num_input"> | |
99 <div id="{id}"> | |
184 | 100 <span class="existing">{title} <span id="oldvalue">{oldvaluetext}{unit}</span></span> |
182 | 101 <br/> |
194 | 102 <span class="inputrow"> |
188 | 103 <input type="number" class="input" name="input_{name}" /> |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
104 <input type="button" class="button_down" value="-"/> |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
105 <input type="button" class="button_up" value="+"/> |
194 | 106 </span> |
182 | 107 </div> |
108 </script> | |
109 | |
110 <script type="html/yesno_button"> | |
111 <div id="{id}"> | |
184 | 112 <span class="existing">{title} <span id="oldvalue">{oldvaluetext}</span></span> |
182 | 113 <br/> |
194 | 114 <span class="inputrow"> |
189 | 115 <input type="button" class="button_no yesno" value="No"/> |
116 <input type="button" class="button_yes yesno" value="Yes"/> | |
194 | 117 </span> |
182 | 118 </div> |
119 </script> | |
120 | |
121 <script> | |
122 | |
185 | 123 function Setter(params, csrf_blob) { |
182 | 124 var self = $.observable(this); |
125 | |
126 self.params = params; | |
185 | 127 self.csrf_blob = csrf_blob |
182 | 128 |
129 $.each(self.params, function(idx, param) { | |
130 param.id = "param_id_" + idx; | |
184 | 131 param.oldvalue = param.value |
132 if (typeof(param.oldvalue) == "boolean") | |
133 { | |
134 param.oldvaluetext = param.oldvalue ? "Yes" : "No"; | |
135 } | |
225 | 136 else if (param.kind == "number") |
137 { | |
138 param.oldvaluetext = Number(param.oldvalue).toFixed(param.digits) | |
139 } | |
184 | 140 else |
141 { | |
142 param.oldvaluetext = param.oldvalue; | |
143 } | |
182 | 144 }); |
145 | |
184 | 146 self.edit = function(param, newvalue) { |
147 param.value = newvalue; | |
182 | 148 params[param.name] = param; |
149 self.trigger("edit", param); | |
150 } | |
151 | |
152 self.adjust = function(param, updown) { | |
153 // XXX increment | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
154 param.value += (param.amount*updown); |
182 | 155 self.trigger("edit", param); |
156 } | |
157 | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
158 self.save = function() { |
185 | 159 self.trigger("status", "Saving...") |
160 | |
161 var post_json = {}; | |
162 post_json.csrf_blob = self.csrf_blob; | |
163 post_json.params = | |
164 self.params.map(function(v, idx, array) { | |
165 return { | |
166 name: v.name, | |
167 value: v.value | |
168 }; | |
169 }); | |
170 | |
171 var post_data = {data: JSON.stringify(post_json)}; | |
172 | |
173 var req = $.ajax({type: "POST", | |
188 | 174 url: "set/update", |
185 | 175 data: post_data}); |
176 | |
177 req.done(function(data, status, hdr) { | |
178 self.trigger("status", "Saved") | |
179 }); | |
180 | |
181 req.fail(function(data, status, hdr) { | |
182 self.trigger("status", | |
194 | 183 "Failed: " + data.status + ' ' |
184 + data.statusText + ' ' + data.responseText) | |
185 | 185 }); |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
186 } |
182 | 187 } |
188 | |
189 (function() { 'use strict'; | |
190 | |
191 var params = {{!inline_data}}; | |
185 | 192 var csrf_blob = "{{!csrf_blob}}"; |
189 | 193 var allowed = {{allowed}}; |
185 | 194 window.setter = new Setter(params, csrf_blob); |
182 | 195 |
196 var number_template = $("[type='html/num_input']").html(); | |
197 var button_template = $("[type='html/yesno_button']").html(); | |
198 | |
199 setter.on("add", add); | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
200 |
182 | 201 setter.on("edit", function(param) |
202 { | |
203 var el = $("#" + param.id); | |
204 if (param.kind === "number") | |
205 { | |
184 | 206 set_text_state(el, param); |
182 | 207 } |
208 else if (param.kind === "yesno") | |
209 { | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
210 set_button_state(el, param.value); |
182 | 211 } |
184 | 212 var same; |
213 switch (typeof(param.oldvalue)) | |
214 { | |
215 case "boolean": | |
216 same = ((!param.value) == (!param.oldvalue)); | |
217 break; | |
218 case "number": | |
219 same = Math.abs(param.value - param.oldvalue) < 1e-3 * param.amount; | |
220 break; | |
221 default: | |
222 same = (param.value === param.oldvalue); | |
223 } | |
224 | |
225 $("#oldvalue", el).toggleClass("modified", !same); | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
226 }); |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
227 |
185 | 228 setter.on("status", function(status) { |
229 $('#status').text(status) | |
230 }) | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
231 |
185 | 232 var root; |
182 | 233 |
185 | 234 window.onload = function() { |
235 // clear list and add new ones | |
236 root = $("#paramlist"); | |
182 | 237 |
185 | 238 root.empty() && $.each(setter.params, function (idx, p) { |
239 add(p); | |
240 }) | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
241 |
189 | 242 if (!allowed) { |
243 $("#savebutton").attr("disabled", true); | |
244 $('#status').text("No cert") | |
291
f7261dd970da
- replace ssl client certs with cookies
Matt Johnston <matt@ucc.asn.au>
parents:
289
diff
changeset
|
245 $('#mailauth').show(); |
189 | 246 } |
247 | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
248 $("#savebutton").click(function() { |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
249 setter.save(); |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
250 }) |
185 | 251 } |
182 | 252 |
184 | 253 function set_text_state(el, param) |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
254 { |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
255 var input = $(".input", el); |
184 | 256 var s = Number(param.value).toFixed(param.digits) |
257 input.text(s).val(s) | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
258 } |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
259 |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
260 function set_button_state(el, value) |
182 | 261 { |
184 | 262 $(".button_yes", el).toggleClass("onbutton", value); |
263 $(".button_no", el).toggleClass("onbutton", !value); | |
182 | 264 } |
265 | |
266 function add(param) | |
267 { | |
268 if (param.kind === "number") | |
269 { | |
270 var el = $($.render(number_template, param)).appendTo(root); | |
271 var input = $(".input", el); | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
272 |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
273 input.keyup(function(e) { |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
274 if (e.which == 13) |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
275 { |
184 | 276 setter.edit(param, Number(this.value)); |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
277 } |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
278 }); |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
279 |
184 | 280 input.blur(function(e) { |
281 setter.edit(param, Number(this.value)); | |
282 }); | |
283 | |
191 | 284 $(".button_up", el).on("vmousedown", function(e) { |
285 e.preventDefault(); | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
286 setter.adjust(param, 1); |
184 | 287 this.blur() |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
288 }); |
191 | 289 $(".button_down", el).on("vmousedown", function(e) { |
290 e.preventDefault(); | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
291 setter.adjust(param, -1); |
184 | 292 this.blur() |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
293 }); |
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
294 |
184 | 295 set_text_state(el, param); |
182 | 296 } |
297 else if (param.kind === "yesno") | |
298 { | |
299 var el = $($.render(button_template, param)).appendTo(root); | |
300 var button_yes = $(".button_yes", el); | |
301 var button_no = $(".button_no", el); | |
302 | |
191 | 303 button_yes.on("vmousedown", function(e) { |
184 | 304 setter.edit(param, true); |
305 this.blur() | |
182 | 306 }) |
307 | |
191 | 308 button_no.on("vmousedown", function(e) { |
184 | 309 setter.edit(param, false); |
310 this.blur() | |
182 | 311 }) |
312 | |
183
177f616893e6
param editor roughly working
Matt Johnston <matt@ucc.asn.au>
parents:
182
diff
changeset
|
313 set_button_state(el, param.value); |
182 | 314 } |
315 } | |
316 | |
317 })() | |
318 | |
188 | 319 |
320 | |
182 | 321 </script> |
322 | |
185 | 323 <body> |
324 | |
325 <section id="paramlist"> | |
326 </section> | |
327 | |
189 | 328 <span id="savebox"> |
185 | 329 <input type="button" id="savebutton" value="Save"/> |
189 | 330 <span id="status"></span> |
291
f7261dd970da
- replace ssl client certs with cookies
Matt Johnston <matt@ucc.asn.au>
parents:
289
diff
changeset
|
331 <span id="mailauth"> <a href="mailto:{{email}}?Subject=Allow%20Templog&body=Hash%20is%20{{cookie_hash}}">Email</a> |
f7261dd970da
- replace ssl client certs with cookies
Matt Johnston <matt@ucc.asn.au>
parents:
289
diff
changeset
|
332 </span> |
189 | 333 </span> |
185 | 334 |
335 | |
336 </body> | |
337 | |
182 | 338 </html> |