2013-09-05 16:02:48 +02:00
|
|
|
/**
|
|
|
|
* Copyright 2013 IBM Corp.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
|
|
|
|
2013-11-14 16:44:54 +01:00
|
|
|
var RED = require(process.env.NODE_RED_HOME+"/red/red");
|
2013-09-12 18:21:46 +02:00
|
|
|
try {
|
|
|
|
var cron = require("cron");
|
|
|
|
} catch(err) {
|
|
|
|
require("util").log("[inject] Warning: cannot find module 'cron'");
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
|
|
|
|
function InjectNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.topic = n.topic;
|
|
|
|
this.payload = n.payload;
|
|
|
|
this.repeat = n.repeat;
|
2013-09-12 18:21:46 +02:00
|
|
|
this.crontab = n.crontab;
|
2013-09-05 16:02:48 +02:00
|
|
|
this.once = n.once;
|
|
|
|
var node = this;
|
|
|
|
this.interval_id = null;
|
2013-09-12 18:21:46 +02:00
|
|
|
this.cronjob = null;
|
2013-09-05 16:02:48 +02:00
|
|
|
|
|
|
|
if (this.repeat && !isNaN(this.repeat) && this.repeat > 0) {
|
|
|
|
this.repeat = this.repeat * 1000;
|
|
|
|
this.log("repeat = "+this.repeat);
|
|
|
|
this.interval_id = setInterval( function() {
|
|
|
|
node.emit("input",{});
|
|
|
|
}, this.repeat );
|
2013-09-12 18:21:46 +02:00
|
|
|
} else if (this.crontab) {
|
|
|
|
if (cron) {
|
|
|
|
this.log("crontab = "+this.crontab);
|
|
|
|
this.cronjob = new cron.CronJob(this.crontab,
|
|
|
|
function() {
|
|
|
|
node.emit("input",{});
|
|
|
|
},
|
|
|
|
null,true);
|
|
|
|
} else {
|
|
|
|
this.error("'cron' module not found");
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.once) {
|
|
|
|
setTimeout( function(){ node.emit("input",{}); }, 50);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.on("input",function(msg) {
|
|
|
|
var msg = {topic:this.topic,payload:this.payload};
|
|
|
|
if (msg.payload == "") { msg.payload = Date.now(); }
|
|
|
|
this.send(msg);
|
|
|
|
msg = null;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
RED.nodes.registerType("inject",InjectNode);
|
|
|
|
|
|
|
|
InjectNode.prototype.close = function() {
|
|
|
|
if (this.interval_id != null) {
|
|
|
|
clearInterval(this.interval_id);
|
|
|
|
this.log("inject: repeat stopped");
|
2013-09-12 18:21:46 +02:00
|
|
|
} else if (this.cronjob != null) {
|
|
|
|
this.cronjob.stop();
|
|
|
|
this.log("inject: cronjob stopped");
|
|
|
|
delete this.cronjob;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RED.app.post("/inject/:id", function(req,res) {
|
|
|
|
var node = RED.nodes.getNode(req.params.id);
|
|
|
|
if (node != null) {
|
2013-09-07 15:27:41 +02:00
|
|
|
try {
|
|
|
|
node.receive();
|
|
|
|
res.send(200);
|
|
|
|
} catch(err) {
|
|
|
|
res.send(500);
|
|
|
|
node.error("Inject failed:"+err);
|
|
|
|
console.log(err.stack);
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
} else {
|
|
|
|
res.send(404);
|
|
|
|
}
|
|
|
|
});
|