2015-12-06 23:49:51 +01:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2015-12-06 23:49:51 +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.
|
|
|
|
**/
|
|
|
|
|
2018-04-15 12:18:10 +02:00
|
|
|
var runtimeAPI;
|
|
|
|
var apiUtils = require("../util");
|
2015-12-06 23:49:51 +01:00
|
|
|
|
|
|
|
module.exports = {
|
2018-04-15 12:18:10 +02:00
|
|
|
init: function(_runtimeAPI) {
|
|
|
|
runtimeAPI = _runtimeAPI;
|
2015-12-06 23:49:51 +01:00
|
|
|
},
|
|
|
|
get: function(req,res) {
|
2018-04-15 12:18:10 +02:00
|
|
|
var opts = {
|
|
|
|
user: req.user,
|
2019-08-09 17:56:11 +02:00
|
|
|
id: req.params.id,
|
|
|
|
req: apiUtils.getRequestLogObject(req)
|
2015-12-09 22:51:46 +01:00
|
|
|
}
|
2018-04-15 12:18:10 +02:00
|
|
|
runtimeAPI.flows.getFlow(opts).then(function(result) {
|
|
|
|
return res.json(result);
|
|
|
|
}).catch(function(err) {
|
|
|
|
apiUtils.rejectHandler(req,res,err);
|
|
|
|
})
|
2015-12-09 22:51:46 +01:00
|
|
|
},
|
|
|
|
post: function(req,res) {
|
2018-04-15 12:18:10 +02:00
|
|
|
var opts = {
|
|
|
|
user: req.user,
|
2019-08-09 17:56:11 +02:00
|
|
|
flow: req.body,
|
|
|
|
req: apiUtils.getRequestLogObject(req)
|
2018-04-15 12:18:10 +02:00
|
|
|
}
|
|
|
|
runtimeAPI.flows.addFlow(opts).then(function(id) {
|
|
|
|
return res.json({id:id});
|
2018-01-29 10:50:41 +01:00
|
|
|
}).catch(function(err) {
|
2018-04-15 12:18:10 +02:00
|
|
|
apiUtils.rejectHandler(req,res,err);
|
2015-12-09 22:51:46 +01:00
|
|
|
})
|
|
|
|
},
|
|
|
|
put: function(req,res) {
|
2018-04-15 12:18:10 +02:00
|
|
|
var opts = {
|
|
|
|
user: req.user,
|
|
|
|
id: req.params.id,
|
2019-08-09 17:56:11 +02:00
|
|
|
flow: req.body,
|
|
|
|
req: apiUtils.getRequestLogObject(req)
|
2015-12-09 22:51:46 +01:00
|
|
|
}
|
2018-04-15 12:18:10 +02:00
|
|
|
runtimeAPI.flows.updateFlow(opts).then(function(id) {
|
|
|
|
return res.json({id:id});
|
|
|
|
}).catch(function(err) {
|
|
|
|
apiUtils.rejectHandler(req,res,err);
|
|
|
|
})
|
2015-12-09 22:51:46 +01:00
|
|
|
},
|
|
|
|
delete: function(req,res) {
|
2018-04-15 12:18:10 +02:00
|
|
|
var opts = {
|
|
|
|
user: req.user,
|
2019-08-09 17:56:11 +02:00
|
|
|
id: req.params.id,
|
|
|
|
req: apiUtils.getRequestLogObject(req)
|
2015-12-09 22:51:46 +01:00
|
|
|
}
|
2018-04-15 12:18:10 +02:00
|
|
|
runtimeAPI.flows.deleteFlow(opts).then(function() {
|
|
|
|
res.status(204).end();
|
|
|
|
}).catch(function(err) {
|
|
|
|
apiUtils.rejectHandler(req,res,err);
|
|
|
|
})
|
2015-12-06 23:49:51 +01:00
|
|
|
}
|
|
|
|
}
|