node-red/red/server.js

110 lines
3.2 KiB
JavaScript
Raw Normal View History

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.
**/
2014-02-16 01:39:30 +01:00
var express = require('express');
2013-09-05 16:02:48 +02:00
var util = require('util');
var when = require('when');
2013-09-05 16:02:48 +02:00
var createUI = require("./ui");
var redNodes = require("./nodes");
2014-05-07 21:47:25 +02:00
var comms = require("./comms");
2013-10-13 22:01:46 +02:00
2013-09-05 16:02:48 +02:00
var app = null;
2014-02-16 01:39:30 +01:00
var nodeApp = null;
2013-09-05 16:02:48 +02:00
var server = null;
var settings = null;
var storage = null;
2013-09-05 16:02:48 +02:00
function createServer(_server,_settings) {
2013-09-05 16:02:48 +02:00
server = _server;
settings = _settings;
2014-05-07 21:47:25 +02:00
comms.init(_server,_settings);
storage = require("./storage");
2013-09-05 16:02:48 +02:00
app = createUI(settings);
2014-02-16 01:39:30 +01:00
nodeApp = express();
2013-09-05 16:02:48 +02:00
app.get("/nodes",function(req,res) {
res.send(redNodes.getNodeConfigs());
2013-09-05 16:02:48 +02:00
});
app.get("/flows",function(req,res) {
2014-05-03 23:26:35 +02:00
res.json(redNodes.getFlows());
2013-09-05 16:02:48 +02:00
});
app.post("/flows",
express.json(),
function(req,res) {
var flows = req.body;
2014-05-03 23:26:35 +02:00
redNodes.setFlows(flows).then(function() {
2014-04-15 23:30:07 +02:00
res.json(204);
}).otherwise(function(err) {
util.log("[red] Error saving flows : "+err);
res.send(500,err.message);
2013-09-05 16:02:48 +02:00
});
},
function(error,req,res,next) {
res.send(400,"Invalid Flow");
}
);
}
2013-10-13 22:01:46 +02:00
function start() {
var defer = when.defer();
storage.init(settings).then(function() {
console.log("\nWelcome to Node-RED\n===================\n");
2014-07-17 22:32:30 +02:00
if (settings.version) {
util.log("[red] Version: "+settings.version);
}
util.log("[red] Loading palette nodes");
2014-05-03 23:26:35 +02:00
redNodes.init(settings,storage);
redNodes.load().then(function(nodeErrors) {
2014-05-02 12:16:07 +02:00
if (nodeErrors.length > 0) {
util.log("------------------------------------------");
if (settings.verbose) {
for (var i=0;i<nodeErrors.length;i+=1) {
util.log("["+nodeErrors[i].fn+"] "+nodeErrors[i].err);
}
} else {
util.log("[red] Failed to register "+nodeErrors.length+" node type"+(nodeErrors.length==1?"":"s"));
util.log("[red] Run with -v for details");
}
2014-05-02 12:16:07 +02:00
util.log("------------------------------------------");
}
2014-05-02 12:16:07 +02:00
defer.resolve();
2014-05-03 23:26:35 +02:00
redNodes.loadFlows();
});
2014-05-07 21:47:25 +02:00
comms.start();
2013-09-05 16:02:48 +02:00
});
return defer.promise;
2013-09-05 16:02:48 +02:00
}
function stop() {
redNodes.stopFlows();
}
2013-09-05 16:02:48 +02:00
module.exports = {
init: createServer,
start: start,
stop: stop
2013-09-05 16:02:48 +02:00
}
module.exports.__defineGetter__("app", function() { return app });
2014-02-16 01:39:30 +01:00
module.exports.__defineGetter__("nodeApp", function() { return nodeApp });
2013-09-05 16:02:48 +02:00
module.exports.__defineGetter__("server", function() { return server });