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.
|
|
|
|
**/
|
|
|
|
|
2013-09-20 18:15:45 +02:00
|
|
|
var redApp = null;
|
2013-11-10 01:05:58 +01:00
|
|
|
var storage = null;
|
2013-09-05 16:02:48 +02:00
|
|
|
|
2013-09-20 18:15:45 +02:00
|
|
|
function init() {
|
|
|
|
redApp = require("./server").app;
|
2013-11-12 18:13:06 +01:00
|
|
|
storage = require("./storage");
|
2013-11-10 01:05:58 +01:00
|
|
|
|
2013-09-20 18:15:45 +02:00
|
|
|
// -------- Flow Library --------
|
|
|
|
redApp.post(new RegExp("/library/flows\/(.*)"), function(req,res) {
|
|
|
|
var fullBody = '';
|
|
|
|
req.on('data', function(chunk) {
|
2013-11-10 01:05:58 +01:00
|
|
|
fullBody += chunk.toString();
|
2013-09-20 18:15:45 +02:00
|
|
|
});
|
|
|
|
req.on('end', function() {
|
2013-11-10 01:05:58 +01:00
|
|
|
storage.saveFlow(req.params[0],fullBody).then(function() {
|
2014-04-15 23:30:07 +02:00
|
|
|
res.send(204);
|
2013-11-10 01:05:58 +01:00
|
|
|
}).otherwise(function(err) {
|
|
|
|
util.log("[red] Error loading flow '"+req.params[0]+"' : "+err);
|
|
|
|
res.send(500);
|
|
|
|
});
|
2013-09-20 18:15:45 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
redApp.get("/library/flows",function(req,res) {
|
2013-11-10 01:05:58 +01:00
|
|
|
storage.getAllFlows().then(function(flows) {
|
2014-04-15 23:30:07 +02:00
|
|
|
res.json(flows);
|
2013-11-10 01:05:58 +01:00
|
|
|
});
|
2013-09-20 18:15:45 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
redApp.get(new RegExp("/library/flows\/(.*)"), function(req,res) {
|
2013-11-10 01:05:58 +01:00
|
|
|
storage.getFlow(req.params[0]).then(function(data) {
|
2014-04-15 23:30:07 +02:00
|
|
|
res.set('Content-Type', 'application/json');
|
|
|
|
res.send(data);
|
2013-11-10 01:05:58 +01:00
|
|
|
}).otherwise(function(err) {
|
|
|
|
if (err) {
|
|
|
|
util.log("[red] Error loading flow '"+req.params[0]+"' : "+err);
|
|
|
|
}
|
2013-09-20 18:15:45 +02:00
|
|
|
res.send(404);
|
2013-11-10 01:05:58 +01:00
|
|
|
});
|
2013-09-05 16:02:48 +02:00
|
|
|
});
|
2013-09-20 18:15:45 +02:00
|
|
|
|
|
|
|
// ------------------------------
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
|
|
|
|
function createLibrary(type) {
|
|
|
|
|
2013-09-20 18:15:45 +02:00
|
|
|
redApp.get(new RegExp("/library/"+type+"($|\/(.*))"),function(req,res) {
|
2013-09-05 16:02:48 +02:00
|
|
|
var path = req.params[1]||"";
|
2013-11-10 01:05:58 +01:00
|
|
|
storage.getLibraryEntry(type,path).then(function(result) {
|
|
|
|
if (typeof result === "string") {
|
2014-04-15 23:30:07 +02:00
|
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
2013-11-10 01:05:58 +01:00
|
|
|
res.write(result);
|
2014-04-15 23:30:07 +02:00
|
|
|
res.end();
|
2013-11-10 01:05:58 +01:00
|
|
|
} else {
|
2014-04-15 23:30:07 +02:00
|
|
|
res.json(result);
|
2013-11-10 01:05:58 +01:00
|
|
|
}
|
|
|
|
}).otherwise(function(err) {
|
|
|
|
if (err) {
|
|
|
|
util.log("[red] Error loading library entry '"+path+"' : "+err);
|
|
|
|
}
|
|
|
|
res.send(404);
|
2013-09-05 16:02:48 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2013-09-20 18:15:45 +02:00
|
|
|
redApp.post(new RegExp("/library/"+type+"\/(.*)"),function(req,res) {
|
2013-09-05 16:02:48 +02:00
|
|
|
var path = req.params[0];
|
|
|
|
var fullBody = '';
|
|
|
|
req.on('data', function(chunk) {
|
|
|
|
fullBody += chunk.toString();
|
|
|
|
});
|
|
|
|
req.on('end', function() {
|
2013-11-10 01:05:58 +01:00
|
|
|
storage.saveLibraryEntry(type,path,req.query,fullBody).then(function() {
|
|
|
|
res.send(204);
|
|
|
|
}).otherwise(function(err) {
|
|
|
|
util.log("[red] Error saving library entry '"+path+"' : "+err);
|
|
|
|
res.send(500);
|
2014-07-02 00:46:25 +02:00
|
|
|
});
|
2013-09-05 16:02:48 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-09-20 18:15:45 +02:00
|
|
|
module.exports.init = init;
|
2013-09-05 16:02:48 +02:00
|
|
|
module.exports.register = createLibrary;
|