2014-11-04 12:34:49 +01:00
|
|
|
/**
|
2015-02-03 23:02:26 +01:00
|
|
|
* Copyright 2013, 2015 IBM Corp.
|
2014-11-04 12:34:49 +01: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 redApp = null;
|
|
|
|
var storage = require("../storage");
|
2015-02-03 23:02:26 +01:00
|
|
|
var log = require("../log");
|
2015-05-08 15:21:01 +02:00
|
|
|
|
2015-02-06 00:43:35 +01:00
|
|
|
var needsPermission = require("./auth").needsPermission;
|
2014-11-04 12:34:49 +01:00
|
|
|
|
|
|
|
function createLibrary(type) {
|
2014-11-04 18:05:29 +01:00
|
|
|
if (redApp) {
|
2015-02-06 00:43:35 +01:00
|
|
|
redApp.get(new RegExp("/library/"+type+"($|\/(.*))"),needsPermission("library.read"),function(req,res) {
|
2014-11-04 18:05:29 +01:00
|
|
|
var path = req.params[1]||"";
|
|
|
|
storage.getLibraryEntry(type,path).then(function(result) {
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "library.get",type:type},req);
|
2014-11-04 18:05:29 +01:00
|
|
|
if (typeof result === "string") {
|
|
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
|
|
|
res.write(result);
|
|
|
|
res.end();
|
|
|
|
} else {
|
|
|
|
res.json(result);
|
2014-11-04 12:34:49 +01:00
|
|
|
}
|
2014-11-04 18:05:29 +01:00
|
|
|
}).otherwise(function(err) {
|
|
|
|
if (err) {
|
2015-06-16 17:09:53 +02:00
|
|
|
log.warn(log._("api.library.error-load-entry",{path:path,message:err.toString()}));
|
2015-05-21 00:46:49 +02:00
|
|
|
if (err.code === 'forbidden') {
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "library.get",type:type,error:"forbidden"},req);
|
2014-11-04 12:34:49 +01:00
|
|
|
res.send(403);
|
|
|
|
return;
|
|
|
|
}
|
2014-11-04 18:05:29 +01:00
|
|
|
}
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "library.get",type:type,error:"not_found"},req);
|
2014-11-04 18:05:29 +01:00
|
|
|
res.send(404);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-02-06 00:43:35 +01:00
|
|
|
redApp.post(new RegExp("/library/"+type+"\/(.*)"),needsPermission("library.write"),function(req,res) {
|
2014-11-04 18:05:29 +01:00
|
|
|
var path = req.params[0];
|
2015-02-26 18:08:20 +01:00
|
|
|
var meta = req.body;
|
|
|
|
var text = meta.text;
|
|
|
|
delete meta.text;
|
|
|
|
|
|
|
|
storage.saveLibraryEntry(type,path,meta,text).then(function() {
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "library.set",type:type},req);
|
2015-02-26 18:08:20 +01:00
|
|
|
res.send(204);
|
|
|
|
}).otherwise(function(err) {
|
2015-06-16 17:09:53 +02:00
|
|
|
log.warn(log._("api.library.error-save-entry",{path:path,message:err.toString()}));
|
2015-05-21 00:46:49 +02:00
|
|
|
if (err.code === 'forbidden') {
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "library.set",type:type,error:"forbidden"},req);
|
2015-02-26 18:08:20 +01:00
|
|
|
res.send(403);
|
|
|
|
return;
|
|
|
|
}
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "library.set",type:type,error:"unexpected_error",message:err.toString()},req);
|
2015-03-31 23:29:15 +02:00
|
|
|
res.json(500,{error:"unexpected_error", message:err.toString()});
|
2014-11-04 18:05:29 +01:00
|
|
|
});
|
2014-11-04 12:34:49 +01:00
|
|
|
});
|
2014-11-04 18:05:29 +01:00
|
|
|
}
|
2014-11-04 12:34:49 +01:00
|
|
|
}
|
|
|
|
module.exports = {
|
|
|
|
init: function(app) {
|
|
|
|
redApp = app;
|
|
|
|
},
|
|
|
|
register: createLibrary,
|
|
|
|
|
|
|
|
getAll: function(req,res) {
|
|
|
|
storage.getAllFlows().then(function(flows) {
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "library.get.all",type:"flow"},req);
|
2014-11-04 12:34:49 +01:00
|
|
|
res.json(flows);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
get: function(req,res) {
|
2015-04-05 21:54:11 +02:00
|
|
|
storage.getFlow(req.params[0]).then(function(data) {
|
2015-03-30 15:16:04 +02:00
|
|
|
// data is already a JSON string
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "library.get",type:"flow",path:req.params[0]},req);
|
2014-11-04 12:34:49 +01:00
|
|
|
res.set('Content-Type', 'application/json');
|
|
|
|
res.send(data);
|
|
|
|
}).otherwise(function(err) {
|
|
|
|
if (err) {
|
2015-06-16 17:09:53 +02:00
|
|
|
log.warn(log._("api.library.error-load-flow",{path:req.params[0],message:err.toString()}));
|
2015-05-21 00:46:49 +02:00
|
|
|
if (err.code === 'forbidden') {
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "library.get",type:"flow",path:req.params[0],error:"forbidden"},req);
|
2014-11-04 12:34:49 +01:00
|
|
|
res.send(403);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "library.get",type:"flow",path:req.params[0],error:"not_found"},req);
|
2014-11-04 12:34:49 +01:00
|
|
|
res.send(404);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
post: function(req,res) {
|
2014-11-05 23:41:05 +01:00
|
|
|
var flow = JSON.stringify(req.body);
|
2015-04-05 21:54:11 +02:00
|
|
|
storage.saveFlow(req.params[0],flow).then(function() {
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "library.set",type:"flow",path:req.params[0]},req);
|
2014-11-05 23:41:05 +01:00
|
|
|
res.send(204);
|
|
|
|
}).otherwise(function(err) {
|
2015-06-16 17:09:53 +02:00
|
|
|
log.warn(log._("api.library.error-save-flow",{path:req.params[0],message:err.toString()}));
|
2015-05-21 00:46:49 +02:00
|
|
|
if (err.code === 'forbidden') {
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "library.set",type:"flow",path:req.params[0],error:"forbidden"},req);
|
2014-11-05 23:41:05 +01:00
|
|
|
res.send(403);
|
|
|
|
return;
|
|
|
|
}
|
2015-05-14 15:22:28 +02:00
|
|
|
log.audit({event: "library.set",type:"flow",path:req.params[0],error:"unexpected_error",message:err.toString()},req);
|
|
|
|
res.send(500,{error:"unexpected_error", message:err.toString()});
|
2014-11-04 12:34:49 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|