node-red/red/nodes/registry.js

287 lines
8.7 KiB
JavaScript
Raw Normal View History

2014-05-03 23:26:35 +02:00
/**
* Copyright 2014 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.
**/
var util = require("util");
var when = require("when");
var whenNode = require('when/node');
var fs = require("fs");
var path = require("path");
2014-05-04 18:30:55 +02:00
var cheerio = require("cheerio");
var UglifyJS = require("uglify-js");
2014-05-03 23:26:35 +02:00
var events = require("../events");
var Node;
var settings;
var node_types = {};
var node_configs = [];
2014-05-04 18:30:55 +02:00
var node_scripts = [];
2014-05-03 23:26:35 +02:00
2014-07-25 00:16:41 +02:00
/**
* Synchronously walks the directory looking for node files.
* Emits 'node-icon-dir' events for an icon dirs found
* @param dir the directory to search
* @return an array of fully-qualified paths to .js files
*/
function getNodeFiles(dir) {
var result = [];
var files = fs.readdirSync(dir);
files.sort();
files.forEach(function(fn) {
var stats = fs.statSync(path.join(dir,fn));
if (stats.isFile()) {
if (/\.js$/.test(fn)) {
result.push(path.join(dir,fn));
2014-05-07 21:45:26 +02:00
}
2014-07-25 00:16:41 +02:00
} else if (stats.isDirectory()) {
// Ignore /.dirs/, /lib/ /node_modules/
if (!/^(\..*|lib|icons|node_modules|test)$/.test(fn)) {
result = result.concat(getNodeFiles(path.join(dir,fn)));
} else if (fn === "icons") {
events.emit("node-icon-dir",path.join(dir,fn));
}
}
2014-05-03 23:26:35 +02:00
});
2014-07-25 00:16:41 +02:00
return result;
2014-05-03 23:26:35 +02:00
}
2014-07-25 00:16:41 +02:00
/**
* Scans the node_modules path for nodes
* @return a list of node modules: {dir,package}
*/
function scanTreeForNodesModules() {
var dir = __dirname+"/../../nodes";
var results = [];
var up = path.resolve(path.join(dir,".."));
while (up !== dir) {
var pm = path.join(dir,"node_modules");
2014-05-05 01:10:50 +02:00
try {
2014-07-25 00:16:41 +02:00
var files = fs.readdirSync(pm);
files.forEach(function(fn) {
var pkgfn = path.join(pm,fn,"package.json");
try {
var pkg = require(pkgfn);
if (pkg['node-red']) {
var moduleDir = path.join(pm,fn);
results.push({dir:moduleDir,package:pkg});
}
} catch(err) {
if (err.code != "MODULE_NOT_FOUND") {
// TODO: handle unexpected error
}
2014-05-03 23:26:35 +02:00
}
2014-07-25 00:16:41 +02:00
});
2014-05-05 01:10:50 +02:00
} catch(err) {
2014-05-03 23:26:35 +02:00
}
2014-07-25 00:16:41 +02:00
dir = up;
up = path.resolve(path.join(dir,".."));
}
return results;
}
/**
* Loads the specified node into the registry.
* @param nodeDir the directory containing the node
* @param nodeFn the node file
* @param nodeLabel the name of the node (npm nodes only)
* @return a promise that resolves to either {fn,path,err}
*/
function loadNode(nodeDir, nodeFn, nodeLabel) {
if (settings.nodesExcludes) {
for (var i=0;i<settings.nodesExcludes.length;i++) {
if (settings.nodesExcludes[i] == nodeFn) {
return when.resolve();
}
}
}
var nodeFilename = path.join(nodeDir,nodeFn);
try {
var loadPromise = null;
var r = require(nodeFilename);
if (typeof r === "function") {
var promise = r(require('../red'));
if (promise != null && typeof promise.then === "function") {
loadPromise = promise.then(function() {
return when.resolve({fn:nodeLabel||nodeFn,path:nodeFilename});
}).otherwise(function(err) {
return when.resolve({fn:nodeLabel||nodeFn,path:nodeFilename,err:err});
});
}
}
if (loadPromise == null) {
loadPromise = when.resolve({fn:nodeLabel||nodeFn,path:nodeFilename});
}
return loadPromise;
} catch(err) {
return when.resolve({fn:nodeLabel||nodeFn,path:nodeFilename,err:err});
}
}
/**
* Loads the html template file for a node
* @param templateFilanem
*/
function loadTemplate(templateFilename) {
var content = fs.readFileSync(templateFilename,'utf8');
registerConfig(content);
2014-05-03 23:26:35 +02:00
}
2014-07-25 00:16:41 +02:00
/**
* Loads the nodes provided in an npm package.
* @param moduleDir the root directory of the package
* @param pkg the module's package.json object
* @return an array of promises returned by loadNode
*/
2014-05-03 23:26:35 +02:00
function loadNodesFromModule(moduleDir,pkg) {
var nodes = pkg['node-red'].nodes||{};
var promises = [];
var iconDirs = [];
2014-05-03 23:26:35 +02:00
for (var n in nodes) {
2014-07-02 00:46:25 +02:00
if (nodes.hasOwnProperty(n)) {
promises.push(loadNode(moduleDir,nodes[n],pkg.name+":"+n));
var iconDir = path.join(moduleDir,path.dirname(nodes[n]),"icons");
if (iconDirs.indexOf(iconDir) == -1) {
if (fs.existsSync(iconDir)) {
events.emit("node-icon-dir",iconDir);
iconDirs.push(iconDir);
}
}
}
2014-05-03 23:26:35 +02:00
}
2014-05-05 01:10:50 +02:00
return promises;
}
2014-05-03 23:26:35 +02:00
function init(_settings) {
Node = require("./Node");
2014-05-03 23:26:35 +02:00
settings = _settings;
}
2014-07-25 00:16:41 +02:00
/**
* Loads all palette nodes
* @return a promise that resolves to a list of any errors encountered loading nodes
*/
2014-05-03 23:26:35 +02:00
function load() {
return when.promise(function(resolve,reject) {
2014-07-25 00:16:41 +02:00
// Find all of the nodes to load
var nodeFiles = getNodeFiles(__dirname+"/../../nodes");
if (settings.nodesDir) {
var dir = settings.nodesDir;
if (typeof settings.nodesDir == "string") {
dir = [dir];
2014-05-03 23:26:35 +02:00
}
2014-07-25 00:16:41 +02:00
for (var i=0;i<dir.length;i++) {
nodeFiles = nodeFiles.concat(getNodeFiles(dir[i]));
}
}
// Find all of the modules containing nodes
var moduleFiles = scanTreeForNodesModules();
// Load all of the nodes in the order they were discovered
var loadPromises = [];
nodeFiles.forEach(function(file) {
var dir = path.dirname(file);
var fn = path.basename(file);
loadPromises.push(loadNode(dir,fn));
});
moduleFiles.forEach(function(file) {
loadPromises = loadPromises.concat(loadNodesFromModule(file.dir,file.package));
});
when.settle(loadPromises).then(function(results) {
var errors = [];
results.forEach(function(result) {
if (result.value.err) {
// Store the error to pass up
errors.push(result.value);
} else {
// Load the node template
var templateFilename = result.value.path.replace(/\.js$/,".html");
loadTemplate(templateFilename);
}
2014-05-03 23:26:35 +02:00
});
2014-07-25 00:16:41 +02:00
resolve(errors);
2014-05-03 23:26:35 +02:00
});
});
}
2014-07-25 00:16:41 +02:00
/**
* Registers a node's html configuration.
*/
2014-05-04 18:30:55 +02:00
function registerConfig(config) {
$ = cheerio.load(config);
var template = "";
$("*").each(function(i,el) {
if (el.type == "script" && el.attribs.type == "text/javascript") {
var content = el.children[0].data;
el.children[0].data = UglifyJS.minify(content, {fromString: true}).code;
node_scripts.push($(this).text());
} else if (el.name == "script" || el.name == "style") {
var openTag = "<"+el.name;
var closeTag = "</"+el.name+">";
if (el.attribs) {
2014-07-02 00:46:25 +02:00
for (var j in el.attribs) {
if (el.attribs.hasOwnProperty(j)) {
2014-07-02 00:48:26 +02:00
openTag += " "+j+'="'+el.attribs[j]+'"';
2014-07-02 00:46:25 +02:00
}
2014-05-04 18:30:55 +02:00
}
}
openTag += ">";
template += openTag+$(el).text()+closeTag;
}
});
node_configs.push(template);
}
2014-07-25 00:16:41 +02:00
/**
* Gets all of the node template configs
* @return all of the node templates in a single string
*/
function getNodeConfigs() {
var result = "";
for (var i=0;i<node_configs.length;i++) {
result += node_configs[i];
}
result += '<script type="text/javascript">';
for (var j=0;j<node_scripts.length;j++) {
result += node_scripts[j];
}
result += '</script>';
return result;
}
2014-05-04 18:30:55 +02:00
2014-05-03 23:26:35 +02:00
var typeRegistry = module.exports = {
init:init,
load:load,
registerType: function(type,node) {
util.inherits(node,Node);
node_types[type] = node;
events.emit("type-registered",type);
},
get: function(type) {
return node_types[type];
},
2014-07-25 00:16:41 +02:00
getNodeConfigs: getNodeConfigs
2014-05-03 23:26:35 +02:00
}