This repository was archived by the owner on Mar 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb-example.js
120 lines (108 loc) · 2.6 KB
/
web-example.js
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
var current_job_handle = '';
var base_url = 'web-example.php?job=';
function addOnLoad(fn)
{
var current_onload = window.onload;
if (typeof(current_onload) != "function") window.onload = fn;
else
{
window.onload = function() {
if (current_onload) current_onload();
fn();
};
}
}
function checkStatus()
{
if(current_job_handle != '')
{
var url = base_url + 'status&job_handle=' + current_job_handle;
new Ajax.Request(url, {
method: 'get',
onSuccess: function(transport) {
var response = transport.responseText.evalJSON();
if(response.status == 'queued')
{
$('current_status').innerHTML = 'Job is queued...';
}
else if(response.status == 'running')
{
$('current_status').innerHTML = 'Job is running... ' + response.percent + '% complete';
}
else if(response.status == 'complete')
{
$('current_status').innerHTML = 'Job is complete!';
var url = base_url + 'data&job_handle=' + current_job_handle;
current_job_handle = '';
new Ajax.Request(url, {
method: 'get',
onSuccess: function(transport) {
var response = transport.responseText.evalJSON();
if(response.data != '')
{
$('output').innerHTML = response.data;
}
}
});
}
}
});
if(current_job_handle != '')
{
setTimeout('checkStatus()',1000);
}
}
}
addOnLoad(function() {
$('link_start').observe('click', function(event) {
if(current_job_handle == '')
{
var url = base_url + 'start';
new Ajax.Request(url, {
method: 'get',
onSuccess: function(transport) {
var response = transport.responseText.evalJSON();
if(response.status == 'success')
{
current_job_handle = response.job_handle;
$('current_status').innerHTML = 'Job started with handle: ' + current_job_handle;
checkStatus();
}
else
{
$('current_status').innerHTML = 'Failed to start job :(';
}
}
});
}
else
{
alert('Already doing job ' + current_job_handle);
}
});
$('link_stop').observe('click', function(event) {
if(current_job_handle != '')
{
var url = base_url + 'stop&job_handle=' + current_job_handle;
new Ajax.Request(url, {
method: 'get',
onSuccess: function(transport) {
var response = transport.responseText.evalJSON();
if(response.status == 'success')
{
$('current_status').innerHTML = 'Killed job';
//current_job_handle = '';
}
else
{
$('current_status').innerHTML = 'Failed to kill job :(';
}
}
});
}
else
{
alert('Not aware of a job to stop...');
}
});
});