node-red/packages/node_modules/@node-red/editor-api/lib/editor/ui.js

98 lines
3.2 KiB
JavaScript
Raw Normal View History

2013-09-05 16:02:48 +02:00
/**
* Copyright JS Foundation and other contributors, http://js.foundation
2013-09-05 16:02:48 +02:00
*
* 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 express = require('express');
var fs = require("fs");
2013-10-13 22:01:46 +02:00
var path = require("path");
var Mustache = require("mustache");
2018-04-20 21:50:20 +02:00
var mime = require("mime");
var apiUtils = require("../util");
2013-09-05 16:02:48 +02:00
2015-04-13 01:11:11 +02:00
var theme = require("./theme");
2018-04-20 21:50:20 +02:00
var runtimeAPI;
2018-08-17 23:10:54 +02:00
var editorClientDir = path.dirname(require.resolve("@node-red/editor-client"));
var defaultNodeIcon = path.join(editorClientDir,"public","red","images","icons","arrow-in.svg");
var editorTemplatePath = path.join(editorClientDir,"templates","index.mst");
2018-08-20 17:17:24 +02:00
var editorTemplate;
2015-04-13 01:11:11 +02:00
2014-11-04 12:34:49 +01:00
module.exports = {
2018-04-20 21:50:20 +02:00
init: function(_runtimeAPI) {
runtimeAPI = _runtimeAPI;
2018-08-20 17:17:24 +02:00
editorTemplate = fs.readFileSync(editorTemplatePath,"utf8");
2015-04-13 01:11:11 +02:00
Mustache.parse(editorTemplate);
},
2015-07-15 23:43:24 +02:00
2014-11-04 12:34:49 +01:00
ensureSlash: function(req,res,next) {
var parts = req.originalUrl.split("?");
if (parts[0].slice(-1) != "/") {
parts[0] += "/";
var redirect = parts.join("?");
res.redirect(301,redirect);
2014-02-16 01:39:30 +01:00
} else {
2014-11-04 12:34:49 +01:00
next();
2014-02-16 01:39:30 +01:00
}
2014-11-04 12:34:49 +01:00
},
icon: function(req,res) {
var icon = req.params.icon;
var scope = req.params.scope;
var module = scope ? scope + '/' + req.params.module : req.params.module;
2018-04-20 21:50:20 +02:00
var opts = {
user: req.user,
module: module,
icon: icon
}
runtimeAPI.nodes.getIcon(opts).then(function(data) {
2018-08-16 00:12:51 +02:00
if (data) {
2018-12-07 15:13:59 +01:00
var contentType = mime.getType(icon);
2018-08-16 00:12:51 +02:00
res.set("Content-Type", contentType);
res.send(data);
} else {
res.sendFile(defaultNodeIcon);
}
2018-04-20 21:50:20 +02:00
}).catch(function(err) {
2018-08-16 00:12:51 +02:00
console.log(err.stack);
2018-04-20 21:50:20 +02:00
apiUtils.rejectHandler(req,res,err);
})
2014-11-04 12:34:49 +01:00
},
moduleResource: function(req, res) {
let resourcePath = req.params[1];
let opts = {
user: req.user,
module: req.params[0],
path: resourcePath
}
runtimeAPI.nodes.getModuleResource(opts).then(function(data) {
if (data) {
var contentType = mime.getType(resourcePath);
res.set("Content-Type", contentType);
res.send(data);
} else {
res.status(404).end()
}
}).catch(function(err) {
console.log(err.stack);
apiUtils.rejectHandler(req,res,err);
})
},
2021-01-26 14:35:40 +01:00
editor: async function(req,res) {
res.send(Mustache.render(editorTemplate,await theme.context()));
},
2018-08-17 23:10:54 +02:00
editorResources: express.static(path.join(editorClientDir,'public'))
2014-11-04 12:34:49 +01:00
};