2013-09-05 16:02:48 +02:00
|
|
|
/**
|
2015-11-11 23:11:02 +01:00
|
|
|
* Copyright 2013, 2015 IBM Corp.
|
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");
|
2013-09-05 16:02:48 +02:00
|
|
|
|
2015-04-13 01:11:11 +02:00
|
|
|
var theme = require("./theme");
|
|
|
|
|
|
|
|
var Mustache = require("mustache");
|
|
|
|
|
2014-11-04 12:34:49 +01:00
|
|
|
var icon_paths = [path.resolve(__dirname + '/../../public/icons')];
|
|
|
|
var iconCache = {};
|
|
|
|
//TODO: create a default icon
|
|
|
|
var defaultIcon = path.resolve(__dirname + '/../../public/icons/arrow-in.png');
|
2015-04-13 01:11:11 +02:00
|
|
|
var templateDir = path.resolve(__dirname+"/../../editor/templates");
|
|
|
|
var editorTemplate;
|
|
|
|
|
2015-11-11 23:11:02 +01:00
|
|
|
function nodeIconDir(dir) {
|
|
|
|
icon_paths.push(path.resolve(dir));
|
|
|
|
}
|
|
|
|
|
2014-11-04 12:34:49 +01:00
|
|
|
module.exports = {
|
2015-11-11 23:11:02 +01:00
|
|
|
init: function(runtime) {
|
2015-04-13 01:11:11 +02:00
|
|
|
editorTemplate = fs.readFileSync(path.join(templateDir,"index.mst"),"utf8");
|
|
|
|
Mustache.parse(editorTemplate);
|
2015-11-11 23:11:02 +01:00
|
|
|
// TODO: this allows init to be called multiple times without
|
|
|
|
// registering multiple instances of the listener.
|
|
|
|
// It isn't.... ideal.
|
|
|
|
runtime.events.removeListener("node-icon-dir",nodeIconDir);
|
|
|
|
runtime.events.on("node-icon-dir",nodeIconDir);
|
2015-04-13 01:11:11 +02:00
|
|
|
},
|
2015-07-15 23:43:24 +02:00
|
|
|
|
2014-11-04 12:34:49 +01:00
|
|
|
ensureSlash: function(req,res,next) {
|
2014-11-06 01:01:01 +01:00
|
|
|
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) {
|
2014-06-25 11:30:52 +02:00
|
|
|
if (iconCache[req.params.icon]) {
|
2015-07-15 23:43:24 +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++) {
|
2014-06-25 11:30:52 +02:00
|
|
|
var iconPath = path.join(icon_paths[p],req.params.icon);
|
2015-11-16 12:31:55 +01:00
|
|
|
try {
|
|
|
|
fs.statSync(iconPath);
|
2015-07-15 23:43:24 +02:00
|
|
|
res.sendFile(iconPath);
|
2014-06-25 11:30:52 +02:00
|
|
|
iconCache[req.params.icon] = iconPath;
|
|
|
|
return;
|
2015-11-16 12:31:55 +01:00
|
|
|
} catch(err) {
|
|
|
|
// iconPath doesn't exist
|
2014-06-25 11:30:52 +02:00
|
|
|
}
|
2013-10-13 22:01:46 +02:00
|
|
|
}
|
2015-07-15 23:43:24 +02:00
|
|
|
res.sendFile(defaultIcon);
|
2014-02-16 01:39:30 +01:00
|
|
|
}
|
2014-11-04 12:34:49 +01:00
|
|
|
},
|
2015-04-08 22:29:55 +02:00
|
|
|
editor: function(req,res) {
|
2015-04-13 01:11:11 +02:00
|
|
|
res.send(Mustache.render(editorTemplate,theme.context()));
|
2015-04-08 22:29:55 +02:00
|
|
|
},
|
|
|
|
editorResources: express.static(__dirname + '/../../public')
|
2014-11-04 12:34:49 +01:00
|
|
|
};
|