-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
62 lines (49 loc) · 1.03 KB
/
app.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
/**
* Config
*/
var confs = require('./config/confs.json')
, dB = require('./lib/db');
/**
* Module dependencies.
*/
var jobs = require('./lib/jobs');
/**
* Reset
*/
var db = dB(confs.db);
var qry = { $or: [ { twitted: 'zero' }, { twitted: 'stacked' }, { twitted: 'failed' } ] };
var set = { twitted: 'zero' };
db.components.find(qry, function(err, data){
var counter = data ? data.length : 0;
if (!counter) return init();
console.log('reseting %s components', counter);
data.forEach(function(doc, i){
db.components.update(doc._id, { $set: set }, function(){
console.log('reset` %s` component', doc.repo);
--counter || init();
});
});
});
/**
* Init process
*/
var countdown = 120;
function init(){
schedule();
setInterval(schedule, 1000 * 60 * 2);
setInterval(function(){
console.log('-> countdown -> ', countdown);
countdown--;
}, 1000);
}
/**
*
* Start jobs
*
* - wiking from components server
* - emit twitts
*/
function schedule(){
countdown = 120;
jobs.wiking();
}