node-red/red/ui.js

79 lines
2.4 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.
**/
var express = require('express');
var fs = require("fs");
var app = express();
2013-10-13 22:01:46 +02:00
var events = require("./events");
var path = require("path");
2013-09-05 16:02:48 +02:00
2013-10-13 22:01:46 +02:00
var icon_paths = [path.resolve(__dirname + '/../public/icons')];
2014-07-24 15:31:48 +02:00
var settings; // settings has to be global, otherwise variable not in scope for express
2013-10-13 22:01:46 +02:00
events.on("node-icon-dir",function(dir) {
icon_paths.push(path.resolve(dir));
});
2014-07-24 15:31:48 +02:00
function setupUI(_settings) {
settings = _settings; // TODO confirm if settings are needed
2013-09-05 16:02:48 +02:00
// Need to ensure the url ends with a '/' so the static serving works
// with relative paths
app.get("/",function(req,res) {
2014-02-16 01:39:30 +01:00
if (req.originalUrl.slice(-1) != "/") {
res.redirect(req.originalUrl+"/");
} else {
req.next();
}
2013-09-05 16:02:48 +02:00
});
var iconCache = {};
//TODO: create a default icon
var defaultIcon = path.resolve(__dirname + '/../public/icons/arrow-in.png');
2013-10-13 22:01:46 +02:00
app.get("/icons/:icon",function(req,res) {
if (iconCache[req.params.icon]) {
2014-07-24 15:31:48 +02:00
res.sendfile(iconCache[req.params.icon]); // if not found, express prints this to the console and serves 404
} else {
2014-07-02 00:46:25 +02:00
for (var p=0;p<icon_paths.length;p++) {
var iconPath = path.join(icon_paths[p],req.params.icon);
if (fs.existsSync(iconPath)) {
res.sendfile(iconPath);
iconCache[req.params.icon] = iconPath;
return;
}
2013-10-13 22:01:46 +02:00
}
res.sendfile(defaultIcon);
2014-02-16 01:39:30 +01:00
}
2013-10-13 22:01:46 +02:00
});
2014-02-16 01:39:30 +01:00
app.get("/settings", function(req,res) {
var safeSettings = {
2014-07-17 22:32:30 +02:00
httpNodeRoot: settings.httpNodeRoot,
version: settings.version
2014-02-16 01:39:30 +01:00
};
res.json(safeSettings);
});
2013-10-13 22:01:46 +02:00
2013-09-05 16:02:48 +02:00
app.use("/",express.static(__dirname + '/../public'));
return app;
}
module.exports = setupUI;