-
Notifications
You must be signed in to change notification settings - Fork 10
/
main.opa
192 lines (160 loc) · 8.53 KB
/
main.opa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*
Copyright © 2012 Cedric Soulas, MLstate
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
import stdlib.themes.bootstrap.{css, icons, responsive}
type status = { timeout } or { unreachable } or { unknown_error } or { error_simulation } or { ok }
type log = { string url, status status, Date.date date }
type job = { string url, int freq }
// Define two collections in the "monitor" database
database monitor @dropbox {
stringmap(log) /logs
stringmap(job) /jobs
/logs[_]/status = { ok } // Define for example the default "status" value
}
module Job {
exposed @async function check(name, url, uri) {
match (WebClient.Get.try_get(uri)) {
case { failure : { timeout } } : Action.down(name, url, "socket timeout", { timeout })
case { failure : { network } } : Action.down(name, url, "impossible to reach the server", { unreachable })
case { failure : { uri : _, reason : _ } } : Action.down(name, url, "Invalid url. Missing http:// prefix?", { unknown_error })
case { failure : f } : Action.down(name, url, "other reason: {f}", { unknown_error })
case { success : _ } : Action.up(url)
}
}
exposed @async function log(name, label, url, status) {
date = Date.now();
name = "[{label}] {name} - {Date.in_milliseconds(date) / 1000}";
/monitor/logs[name] <- (~{ url, status, date }) // Add a log in the database logs list
}
exposed @async function add(name, url, freq){ /monitor/jobs[name] <- (~{ url, freq }) }
exposed @async function remove(name){ Db.remove(@/monitor/jobs[name]) }
exposed function get_all(){ /monitor/jobs }
}
client module Action {
function msg(url, class, msg) { // Add a log on top of the logs list
#info += <div>
<span class="label">{Date.to_string_time_only(Date.now())}</span>
<span class="label {class}">{url} {msg}</span>
</div>
}
function up(url) { msg(url, "label-success", "is UP") }
function invalid(url) { msg("ERROR: {url}", "label-inverse", "an invalid url") }
function down(name, url, failure, status) { msg(url, "label-important", "is DOWN ({failure})"); Job.log(name, "DOWN", url, status); }
function test(name, url, status) { msg("", "label-inverse", "You should see a Dropbox popup on your desktop"); Job.log(name, "TEST", url, status); }
function error_test(_) { test(Dom.get_value(#name), Dom.get_value(#url), { error_simulation }) }
function add_job(name, url, uri, freq) {
timer = Scheduler.make_timer(freq*1000, function() { Job.check(name, url, uri) });
Job.check(name, url, uri); timer.start();
function remove(_) { timer.stop(); Dom.remove(#{name}); Job.remove(name) }
function edit(_) {
timer.stop(); Dom.remove(#{name});
Dom.set_value(#name, name); Dom.set_value(#url, url)
Dom.set_value(#freq, String.of_int(freq))
}
edit_btn = <a class="btn-mini" onclick={edit}><i class="icon-edit"></i></a>
remove_btn = <a class="btn-mini" onclick={remove}><i class="icon-remove"></i></a>
player_id = "{name}_player";
// Start and pause buttons definitions depend on each other:
recursive function stop(_) { timer.stop(); #{player_id} = start_btn }
and function start(_) { timer.start(); #{player_id} = stop_btn }
and stop_btn = <a class="btn-mini" onclick={stop}><i class="icon-pause"></i></a>
and start_btn = <a class="btn-mini" onclick={start}><i class="icon-play"></i></a>
// Add a new line on top of the job list:
#jobs += <tr id=#{name}>
<td>{url} each {freq} sec</td>
<td><span id=#{player_id}>{stop_btn}</span>{edit_btn}{remove_btn}</td>
</tr>;
Job.add(name, url, freq)
}
function submit_job(_) {
function p(f, d, error){
match (f(Dom.get_value(d))) {
case {none}: msg("ERROR:", "label-error", error); none
case r: r
}
}
// Parse formular inputs and add the job
uri = p(Uri.of_string, #url, "the url is invalid");
name = p(Parser.ident, #name, "the log name is not a valid ident name");
freq = p(Parser.int, #freq, "the frequency is not an integer");
match ((uri, name, freq)) {
case ({some:uri}, {some:name}, {some:freq}): add_job(name, Dom.get_value(#url), uri, freq)
default: void // some invalid inputs, don't add the job
}
}
server @async function load_all(_) {
Dom.set_style(#progress, css { width: 100% }) // Animate the progress bar changing its width style
jobs = Job.get_all()
Dom.hide(#loading);
Map.iter(
{ function(name, job)
Option.switch(Action.add_job(name, job.url, _, job.freq), void, Uri.of_string(job.url))
}, jobs
)
}
}
module View {
function page() {
<div class="navbar navbar-fixed-top"><div class="navbar-inner"><div class="container">
<a href="/hero" class="brand">Server Monitor</a><ul class="nav "></ul>
</div></div></div>
<div style="margin-top:50px" class="container">
<div class="row-fluid">
<div class="span6">
<h1>Monitor</h1><form class="well">
<div class="control-group">
<label>Job Name</label><input type="text" id=#name value="opalang"/>
<label>Monitored Url</label><input type="text" id=#url value="http://opalang.org"/><span class="help-inline"></span>
<label>Frequency</label><input class="input-mini" type="text" id=#freq value="3"/><span class="help-inline">sec</span>
</div>
<a class="btn btn-primary" onclick={Action.submit_job}><i class="icon-plus icon-white"/> Add and run</a>
<a class="btn btn-small btn-inverse" onclick={Action.error_test}><i class="icon-fire icon-white"/> Simulate a failure</a>
</form>
</div>
<div class="span6">
<h1>Logs</h1><div style="height: 232px; overflow: auto;"class="well"><p id=#info /></div>
</div>
</div>
<div class="row-fluid">
<h1>Jobs</h1>
<div id="loading" style="width: 100%" class="progress progress-striped active">
<div id="progress" class="bar" style="width: 0%;"></div>
</div>
<table class="table table-striped table-bordered"><tbody id=#jobs onready={Action.load_all}></tbody></table>
</div>
</div>
}
}
module Controller {
DropboxUser = DbDropbox.User(monitor)
private function access_page(raw_token) {
match (DropboxUser.get_access(raw_token)) {
case { success } -> Resource.default_redirection_page("/")
case { failure : error } -> Resource.html("Error", <>{error}</>)
}
}
private function login_page() {
redirect = "http://localhost:8080/dropbox/connect"
if (DropboxUser.is_authenticated()) {
Resource.page("Server monitor", View.page())
}else{
match (DropboxUser.get_login_url(redirect)) {
case { success : url } -> Resource.default_redirection_page(url)
case { failure : error } -> Resource.html("Error", <>{error}</>)
}
}
}
dispatch = parser {
case "/dropbox/connect?" raw_token=(.*) -> access_page(Text.to_string(raw_token))
case (.*) -> login_page()
}
}
Server.start(
Server.http,
[ { register : { doctype : { html5 } } },
{ custom : Controller.dispatch }
]
)