117 lines
3.8 KiB
JavaScript
117 lines
3.8 KiB
JavaScript
'use strict';
|
|
|
|
angular.module('ffffng').factory('NodeResource', function (
|
|
Constraints,
|
|
Validator,
|
|
NodeService,
|
|
_,
|
|
Strings,
|
|
Resources,
|
|
ErrorTypes
|
|
) {
|
|
var nodeFields = ['hostname', 'key', 'email', 'nickname', 'mac', 'coords', 'monitoring'];
|
|
|
|
function getNormalizedNodeData(reqData) {
|
|
var node = {};
|
|
_.each(nodeFields, function (field) {
|
|
var value = Strings.normalizeString(reqData[field]);
|
|
if (field === 'mac') {
|
|
value = Strings.normalizeMac(value);
|
|
}
|
|
node[field] = value;
|
|
});
|
|
return node;
|
|
}
|
|
|
|
var isValidNode = Validator.forConstraints(Constraints.node);
|
|
var isValidToken = Validator.forConstraint(Constraints.token);
|
|
|
|
return {
|
|
create: function (req, res) {
|
|
var data = Resources.getData(req);
|
|
|
|
var node = getNormalizedNodeData(data);
|
|
if (!isValidNode(node)) {
|
|
return Resources.error(res, {data: 'Invalid node data.', type: ErrorTypes.badRequest});
|
|
}
|
|
|
|
return NodeService.createNode(node, function (err, token, node) {
|
|
if (err) {
|
|
return Resources.error(res, err);
|
|
}
|
|
return Resources.success(res, {token: token, node: node});
|
|
});
|
|
},
|
|
|
|
update: function (req, res) {
|
|
var data = Resources.getData(req);
|
|
|
|
var token = Strings.normalizeString(data.token);
|
|
if (!isValidToken(token)) {
|
|
return Resources.error(res, {data: 'Invalid token.', type: ErrorTypes.badRequest});
|
|
}
|
|
|
|
var node = getNormalizedNodeData(data);
|
|
if (!isValidNode(node)) {
|
|
return Resources.error(res, {data: 'Invalid node data.', type: ErrorTypes.badRequest});
|
|
}
|
|
|
|
return NodeService.updateNode(token, node, function (err, token, node) {
|
|
if (err) {
|
|
return Resources.error(res, err);
|
|
}
|
|
return Resources.success(res, {token: token, node: node});
|
|
});
|
|
},
|
|
|
|
delete: function (req, res) {
|
|
var data = Resources.getData(req);
|
|
|
|
var token = Strings.normalizeString(data.token);
|
|
if (!isValidToken(token)) {
|
|
return Resources.error(res, {data: 'Invalid token.', type: ErrorTypes.badRequest});
|
|
}
|
|
|
|
return NodeService.deleteNode(token, function (err) {
|
|
if (err) {
|
|
return Resources.error(res, err);
|
|
}
|
|
return Resources.success(res, {});
|
|
});
|
|
},
|
|
|
|
get: function (req, res) {
|
|
var token = Strings.normalizeString(Resources.getData(req).token);
|
|
if (!isValidToken(token)) {
|
|
return Resources.error(res, {data: 'Invalid token.', type: ErrorTypes.badRequest});
|
|
}
|
|
|
|
return NodeService.getNodeDataByToken(token, function (err, node) {
|
|
if (err) {
|
|
return Resources.error(res, err);
|
|
}
|
|
return Resources.success(res, node);
|
|
});
|
|
},
|
|
|
|
getAll: function (req, res) {
|
|
Resources.getValidRestParams('list', req, function (err, restParams) {
|
|
if (err) {
|
|
return Resources.error(res, err);
|
|
}
|
|
|
|
// TODO: Sort + Filter
|
|
|
|
return NodeService.getAllNodes(restParams._page, restParams._perPage, function (err, nodes, total) {
|
|
if (err) {
|
|
return Resources.error(res, err);
|
|
}
|
|
|
|
res.set('X-Total-Count', total);
|
|
return Resources.success(res, nodes);
|
|
});
|
|
});
|
|
}
|
|
};
|
|
});
|