2024-02-17 11:42:19 +02:00
|
|
|
const becca = require('../becca/becca');
|
2024-02-16 21:38:09 +02:00
|
|
|
const eu = require('./etapi_utils');
|
2024-04-07 14:56:22 +03:00
|
|
|
const mappers = require('./mappers');
|
2024-02-17 11:43:30 +02:00
|
|
|
const BBranch = require('../becca/entities/bbranch');
|
2024-02-17 11:54:55 +02:00
|
|
|
const entityChangesService = require('../services/entity_changes');
|
2024-04-07 14:59:40 +03:00
|
|
|
const v = require('./validators');
|
2022-01-07 19:33:59 +01:00
|
|
|
|
|
|
|
function register(router) {
|
2022-01-10 17:09:20 +01:00
|
|
|
eu.route(router, 'get', '/etapi/branches/:branchId', (req, res, next) => {
|
|
|
|
const branch = eu.getAndCheckBranch(req.params.branchId);
|
2022-01-07 19:33:59 +01:00
|
|
|
|
|
|
|
res.json(mappers.mapBranchToPojo(branch));
|
|
|
|
});
|
|
|
|
|
2022-01-12 19:32:23 +01:00
|
|
|
const ALLOWED_PROPERTIES_FOR_CREATE_BRANCH = {
|
|
|
|
'noteId': [v.mandatory, v.notNull, v.isNoteId],
|
|
|
|
'parentNoteId': [v.mandatory, v.notNull, v.isNoteId],
|
|
|
|
'notePosition': [v.notNull, v.isInteger],
|
|
|
|
'prefix': [v.isString],
|
|
|
|
'isExpanded': [v.notNull, v.isBoolean]
|
|
|
|
};
|
2022-01-12 21:14:12 +01:00
|
|
|
|
2024-04-07 14:56:22 +03:00
|
|
|
eu.route(router, 'post', '/etapi/branches', (req, res, next) => {
|
2022-01-12 19:32:23 +01:00
|
|
|
const params = {};
|
2022-01-12 21:14:12 +01:00
|
|
|
|
2022-01-12 19:32:23 +01:00
|
|
|
eu.validateAndPatch(params, req.body, ALLOWED_PROPERTIES_FOR_CREATE_BRANCH);
|
2022-01-07 19:33:59 +01:00
|
|
|
|
|
|
|
const existing = becca.getBranchFromChildAndParent(params.noteId, params.parentNoteId);
|
|
|
|
|
|
|
|
if (existing) {
|
|
|
|
existing.notePosition = params.notePosition;
|
|
|
|
existing.prefix = params.prefix;
|
2022-01-12 21:14:12 +01:00
|
|
|
existing.isExpanded = params.isExpanded;
|
2022-01-07 19:33:59 +01:00
|
|
|
existing.save();
|
|
|
|
|
2022-01-12 21:14:12 +01:00
|
|
|
return res.status(200).json(mappers.mapBranchToPojo(existing));
|
2022-12-27 14:44:28 +01:00
|
|
|
} else {
|
|
|
|
try {
|
2023-01-03 13:52:37 +01:00
|
|
|
const branch = new BBranch(params).save();
|
2022-12-27 14:44:28 +01:00
|
|
|
|
|
|
|
res.status(201).json(mappers.mapBranchToPojo(branch));
|
|
|
|
} catch (e) {
|
|
|
|
throw new eu.EtapiError(400, eu.GENERIC_CODE, e.message);
|
|
|
|
}
|
2022-01-07 19:33:59 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const ALLOWED_PROPERTIES_FOR_PATCH = {
|
2022-01-12 19:32:23 +01:00
|
|
|
'notePosition': [v.notNull, v.isInteger],
|
|
|
|
'prefix': [v.isString],
|
|
|
|
'isExpanded': [v.notNull, v.isBoolean]
|
2022-01-07 19:33:59 +01:00
|
|
|
};
|
|
|
|
|
2024-04-07 14:56:22 +03:00
|
|
|
eu.route(router, 'patch', '/etapi/branches/:branchId', (req, res, next) => {
|
2022-01-10 17:09:20 +01:00
|
|
|
const branch = eu.getAndCheckBranch(req.params.branchId);
|
2022-01-07 19:33:59 +01:00
|
|
|
|
2022-01-10 17:09:20 +01:00
|
|
|
eu.validateAndPatch(branch, req.body, ALLOWED_PROPERTIES_FOR_PATCH);
|
2022-01-12 19:32:23 +01:00
|
|
|
branch.save();
|
2022-01-07 19:33:59 +01:00
|
|
|
|
|
|
|
res.json(mappers.mapBranchToPojo(branch));
|
|
|
|
});
|
|
|
|
|
2024-04-07 14:56:22 +03:00
|
|
|
eu.route(router, 'delete', '/etapi/branches/:branchId', (req, res, next) => {
|
2022-01-07 19:33:59 +01:00
|
|
|
const branch = becca.getBranch(req.params.branchId);
|
|
|
|
|
2023-06-05 09:23:42 +02:00
|
|
|
if (!branch) {
|
2022-01-07 19:33:59 +01:00
|
|
|
return res.sendStatus(204);
|
|
|
|
}
|
|
|
|
|
2022-04-19 23:06:46 +02:00
|
|
|
branch.deleteBranch();
|
2022-01-07 19:33:59 +01:00
|
|
|
|
|
|
|
res.sendStatus(204);
|
|
|
|
});
|
|
|
|
|
2024-04-07 14:56:22 +03:00
|
|
|
eu.route(router, 'post', '/etapi/refresh-note-ordering/:parentNoteId', (req, res, next) => {
|
2022-01-10 17:09:20 +01:00
|
|
|
eu.getAndCheckNote(req.params.parentNoteId);
|
2022-01-07 19:33:59 +01:00
|
|
|
|
2023-07-29 23:25:02 +02:00
|
|
|
entityChangesService.putNoteReorderingEntityChange(req.params.parentNoteId, "etapi");
|
2022-01-07 23:06:04 +01:00
|
|
|
|
|
|
|
res.sendStatus(204);
|
2022-01-07 19:33:59 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
register
|
2022-01-07 23:06:04 +01:00
|
|
|
};
|