-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathengine.js
285 lines (237 loc) · 6.93 KB
/
engine.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
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
var timer = null;
var version = "0.1.4";
var show_options_page = true;
var eventsCount = -1;
var maxProbesLimit = 7;
var alreadyAlerted = false;
var markers = {}; // array of marked probes
const ALERT_RATIO = 3;
var settings = {
get pollInterval() {
if(localStorage['poll'] == 'NaN') return 1000 * 60 * 30;
return localStorage['poll'] || 1000 * 60 * 30;
},
set pollInterval(val) {
localStorage['poll'] = val;
},
get timeout() {
return 1000*15;
},
set timeout(val) {
localStorage['timeout'] = val;
},
get soundAlert() {
return localStorage['sound_alert'];
},
set soundAlert(val) {
localStorage['sound_alert'] = val;
},
/*
* default longitude
*/
get latitude() {
return localStorage['latitude'];
},
set latitude(val) {
localStorage['latitude'] = val;
},
/*
* default longitude
*/
get longitude() {
return localStorage['longitude'];
},
set longitude(val) {
localStorage['longitude'] = val;
},
/*
* default longitude
*/
get radius() {
return localStorage['radius'];
},
set radius(val) {
localStorage['radius'] = val;
},
get isFirstRun(){
if(localStorage["version"] == null){
return true;
}
return false;
},
get hideProbeLabels() {
return localStorage['options_hide_probe_labels'];
},
set hideProbeLabels(val) {
localStorage['options_hide_probe_labels'] = val;
},
/*
* default global_threshold_ratio
*/
get thresholdRatio() {
if(localStorage["options_global_threshold_ratio"] == null || localStorage["options_global_threshold_ratio"] == undefined || localStorage["options_global_threshold_ratio"] == "undefined"){
localStorage["options_global_threshold_ratio"] = ALERT_RATIO;
}
return localStorage['options_global_threshold_ratio'];
},
set thresholdRatio(val) {
localStorage['options_global_threshold_ratio'] = val;
}
}
function pluginInit() {
showNoEvents();
if(show_options_page && (localStorage["version"] == null || localStorage["version"] != version)) {
if (localStorage["version"] == null){
populateExampleData();// on first run
}
localStorage["version"] = version;
chrome.tabs.create({url : "options.html"});
} else if(show_options_page == false && (localStorage["version"] == null || localStorage["version"] != version)) {
localStorage["version"] = version;
}
startRequest();
}
function populateExampleData(){
/*
* set example values probes
*/
localStorage["probes"] = '{"DD24EC051A604188B611C8E92CE9B679":{"id":"DD24EC051A604188B611C8E92CE9B679","query":"earthquake","threshold":0,"shortTermTweetsPerMin":5.6000000000000005,"longTermTweetsPerMin":4.362914182350616,"serviceId":"twitter","searchQuery":"http://search.twitter.com/search.json?&q=","state":1},"CFBA803F393348F183575CFE2E1A7F2A":{"id":"CFBA803F393348F183575CFE2E1A7F2A","query":"gtugbattle","threshold":0,"shortTermTweetsPerMin":0.015043235198161718,"longTermTweetsPerMin":0.0021098137151584176,"serviceId":"twitter","searchQuery":"http://search.twitter.com/search.json?&q=","state":1,"latitude":"51.16569","longitude":"10.45153","radius":"200","locationAddress":"Germany"},"5700AD36547C44FB8E29BFC5E08DCEDB":{"id":"5700AD36547C44FB8E29BFC5E08DCEDB","query":"nexusone","threshold":0,"shortTermTweetsPerMin":0.002115316431176494,"longTermTweetsPerMin":0.003802670455748913,"serviceId":"twitter","searchQuery":"http://search.twitter.com/search.json?&q=","state":1,"latitude":"37.38605","longitude":"-122.08385","radius":"80","locationAddress":"Mountain View"}}';
}
function refresh() {
showNoEvents();
resetTimer();
pluginInit();
}
chrome.tabs.onUpdated.addListener(function(method) {
if (method.UpdateProbes){
console.log("update probes...");
updateProbes();
}
});
function goOptions() {
chrome.tabs.create({url : "options.html"});
}
function scheduleRequest() {
timer = window.setTimeout(startRequest, settings.pollInterval);
}
function startRequest() {
updateProbes();
scheduleRequest();
}
function updateProbes(callback) {
alreadyAlerted = false;
if (callback && typeof(callback) === 'function'){
getProbesCount(function(count) { callback(count); updateEventsCount(count); }, showNoEvents);
}else{
getProbesCount(updateEventsCount, showNoEvents);
}
}
function resetTimer() {
if(timer != null) {
clearTimeout(timer);
}
}
function refresh() {
showNoEvents();
resetTimer();
pluginInit();
}
function getProbesCount(onSuccess, onError) {
var probesCount = probeManager.countProbes();
if(probesCount == 0){
showNoActiveProbes();
if (onSuccess){
onSuccess(0);
}
return false;
}
var probes = probeManager.loadProbes();
/*
* hier werden die updates getriggert und long und short term tweets geladen
* und GUI nomral mit events informiert. Da asyncer call stimmt der tweet
* count unten evtl nicht...
*/
if(probes){
for (var i in probes) {
loadTweets(probes[i]);
}
}
// if (onSuccess){
// onSuccess(2);
// }
}
function showNoEvents() {
chrome.browserAction.setIcon({"path":"img/icon.png"});
// chrome.browserAction.setBadgeBackgroundColor({color:[190, 190, 190,
// 230]});
chrome.browserAction.setBadgeText({text:""});
eventsCount = 0;
}
function showNoActiveProbes() {
chrome.browserAction.setIcon({"path":"img/icon_nonew.png"});
chrome.browserAction.setBadgeBackgroundColor({color:[190, 190, 190, 230]});
chrome.browserAction.setBadgeText({text:""});
eventsCount = 0;
}
function updateEventsCount(count) {
eventsCount = count;
if(eventsCount > 0){
chrome.browserAction.setIcon({"path":"img/icon.png"});
chrome.browserAction.setBadgeBackgroundColor({color:[255,0,0,255]});
chrome.browserAction.setBadgeText({text: "" + eventsCount});
if(settings.soundAlert && !alreadyAlerted){
console.log('rrrriiiiinnnnggg');
pingSound = document.createElement('audio');
pingSound.setAttribute('src', settings.soundAlert);
pingSound.setAttribute('id', 'ping');
pingSound.load();
pingSound.play();
alreadyAlerted = true;
}
}else{
showNoEvents();
}
}
function onNewEvent(probe){
if(markers[probe.id]){
/*
* refresh marker timestamp
*/
markers[probe.id] = new Date().getTime();
return false;
}
/*
* add activate marker
*/
markers[probe.id] = new Date().getTime();
updateEventsCount(countMarkers());
}
function resetAlerts(){
resetMarkers();
showNoEvents();
alreadyAlerted = false;
}
function resetMarkers() {
for (var j in markers) {
delete markers[j]
}
}
function countMarkers(){
count = 0;
for (var j in markers) {
count++;
}
return count;
}
function ifMarkerSet(id){
try {
if(markers[id]){
delete markers[id];
return true;
}else{
return false;
}
} catch (e) {
return false;
}
}