2017-12-19 12:11:51 +01:00
|
|
|
/**
|
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
**/
|
|
|
|
|
2018-01-17 10:50:46 +01:00
|
|
|
var injectNode = require('./core/core/20-inject_page');
|
|
|
|
var debugNode = require('./core/core/58-debug_page');
|
2018-07-19 06:17:41 +02:00
|
|
|
var templateNode = require('./core/core/80-template_page');
|
|
|
|
var functionNode = require('./core/core/80-function_page');
|
2018-09-04 07:13:34 +02:00
|
|
|
var mqttInNode = require('./core/io/10-mqttin_page');
|
|
|
|
var mqttOutNode = require('./core/io/10-mqttout_page');
|
2018-07-19 06:17:41 +02:00
|
|
|
var httpinNode = require('./core/io/21-httpin_page');
|
|
|
|
var httpResponseNode = require('./core/io/21-httpresponse_page');
|
2018-01-17 10:50:46 +01:00
|
|
|
var changeNode = require('./core/logic/15-change_page');
|
|
|
|
var rangeNode = require('./core/logic/16-range_page');
|
2018-07-19 06:17:41 +02:00
|
|
|
var httpRequestNode = require('./core/io/21-httprequest_page');
|
|
|
|
var htmlNode = require('./core/parsers/70-HTML_page');
|
2018-09-04 07:13:34 +02:00
|
|
|
var jsonNode = require('./core/parsers/70-JSON_page');
|
2018-07-27 06:48:43 +02:00
|
|
|
var fileinNode = require('./core/storage/50-filein_page');
|
2018-07-19 06:17:41 +02:00
|
|
|
|
2018-01-17 10:50:46 +01:00
|
|
|
|
|
|
|
var nodeCatalog = {
|
|
|
|
// input
|
|
|
|
"inject": injectNode,
|
2018-07-19 06:17:41 +02:00
|
|
|
"httpin": httpinNode,
|
2018-09-04 07:13:34 +02:00
|
|
|
"mqttIn":mqttInNode,
|
2018-01-17 10:50:46 +01:00
|
|
|
// output
|
|
|
|
"debug": debugNode,
|
2018-07-19 06:17:41 +02:00
|
|
|
"httpResponse": httpResponseNode,
|
2018-09-04 07:13:34 +02:00
|
|
|
"mqttOut": mqttOutNode,
|
2018-01-17 10:50:46 +01:00
|
|
|
// function
|
2018-07-19 06:17:41 +02:00
|
|
|
"function": functionNode,
|
|
|
|
"template": templateNode,
|
2018-01-17 10:50:46 +01:00
|
|
|
"change": changeNode,
|
|
|
|
"range": rangeNode,
|
2018-07-19 06:17:41 +02:00
|
|
|
"httpRequest": httpRequestNode,
|
|
|
|
"html": htmlNode,
|
2018-09-04 07:13:34 +02:00
|
|
|
"json":jsonNode,
|
2018-07-27 06:48:43 +02:00
|
|
|
// storage
|
|
|
|
"filein": fileinNode,
|
2018-01-17 10:50:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function create(type, id) {
|
|
|
|
var node = nodeCatalog[type];
|
|
|
|
return new node(id);
|
2017-12-19 12:11:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
2018-01-17 10:50:46 +01:00
|
|
|
create: create,
|
2017-12-19 12:11:51 +01:00
|
|
|
};
|