forked from pesos/optimus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscheduler.js
46 lines (41 loc) · 1.06 KB
/
scheduler.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
/* Scheduler - Can be used to schedule tasks to be executed at particuar time */
// var schedule = require('node-schedule');
var debuglogger = require('../debuglogger');
var cronJob = require('cron').CronJob;
/* Cron reference
* * * * * *
| | | | | |
| | | | | +-- Year (range: 1900-3000)
| | | | +---- Day of the Week (range: 1-7, 1 standing for Monday)
| | | +------ Month of the Year (range: 1-12)
| | +-------- Day of the Month (range: 1-31)
| +---------- Hour (range: 0-23)
+------------ Minute (range: 0-59)
*/
exports.scheduleTask = function(type, operation) {
var cronString;
switch(type) {
case 'annually':
cronString = '0 0 1 1 * *';
break;
case 'monthly':
cronString = '0 0 1 * * *';
break;
case 'weekly':
cronString = '0 0 * * 1 *';
break;
case 'daily':
cronString = '0 0 * * * *';
break;
case 'hourly':
cronString = '0 * * * * *0';
break;
default:
return null;
};
if (typeof operation !== 'Function') {
return null;
};
var job = new cronJob(cronString, operation, null, true);
return job;
};