opt-cc/api/routes/account.js

87 lines
3.0 KiB
JavaScript
Raw Normal View History

2018-03-12 09:26:44 +01:00
'use strict';
2017-06-08 19:46:36 +02:00
// modules
const express = require('express');
// HTTP status codes by name
const codes = require('./http-codes');
const routerHandling = require('../middleware/router-handling');
// Mongoose Model using mongoDB
const AppUserModel = require('../models/app-user');
const account = new express.Router();
2017-06-08 19:46:36 +02:00
account.route('/')
2018-02-26 09:04:27 +01:00
.get((req, res, next) => {
AppUserModel.find({}, {}, {sort: {username: 1}}).populate('squad').exec((err, items) => {
if (err) {
err.status = codes.servererror;
return next(err);
}
res.locals.items = items;
res.locals.processed = true;
next();
2018-03-12 09:26:44 +01:00
});
2018-02-26 09:04:27 +01:00
})
.all(
routerHandling.httpMethodNotAllowed
);
2017-06-08 19:46:36 +02:00
// routes **********************
account.route('/:id')
2018-02-26 09:04:27 +01:00
.patch((req, res, next) => {
if (!req.body || (req.body._id && req.body._id !== req.params.id)) {
// little bit different as in PUT. :id does not need to be in data, but if the _id and url id must match
const err = new Error('id of PATCH resource and send JSON body are not equal ' + req.params.id + ' ' +
req.body._id);
2018-02-26 09:04:27 +01:00
err.status = codes.notfound;
next(err);
return; // prevent node to process this function further after next() has finished.
}
2017-06-08 19:46:36 +02:00
2018-02-26 09:04:27 +01:00
// increment version manually as we do not use .save(.)
req.body.updatedAt = new Date();
req.body.$inc = {__v: 1};
2017-06-08 19:46:36 +02:00
2018-02-26 09:04:27 +01:00
// PATCH is easier with mongoose than PUT. You simply update by all data that comes from outside. no need to
// reset attributes that are missing.
AppUserModel.findByIdAndUpdate(req.params.id, req.body, {new: true}).populate('squad').exec((err, item) => {
if (err) {
err.status = codes.wrongrequest;
2018-03-12 09:26:44 +01:00
} else if (!item) {
err = new Error('appUser not found');
2018-02-26 09:04:27 +01:00
err.status = codes.notfound;
2018-03-12 09:26:44 +01:00
} else {
2018-02-26 09:04:27 +01:00
res.locals.items = item;
}
next(err);
2018-03-12 09:26:44 +01:00
});
2018-02-26 09:04:27 +01:00
})
2017-06-08 19:46:36 +02:00
2018-02-26 09:04:27 +01:00
.delete((req, res, next) => {
AppUserModel.findByIdAndRemove(req.params.id, (err, item) => {
if (err) {
err.status = codes.wrongrequest;
2018-03-12 09:26:44 +01:00
} else if (!item) {
err = new Error('item not found');
2018-02-26 09:04:27 +01:00
err.status = codes.notfound;
}
// we don't set res.locals.items and thus it will send a 204 (no content) at the end. see last handler
// user.use(..)
res.locals.processed = true;
next(err); // this works because err is in normal case undefined and that is the same as no parameter
});
})
2017-06-08 19:46:36 +02:00
2018-02-26 09:04:27 +01:00
.all(
routerHandling.httpMethodNotAllowed
);
2017-06-08 19:46:36 +02:00
// this middleware function can be used, if you like or remove it
// it looks for object(s) in res.locals.items and if they exist, they are send to the client as json
account.use(routerHandling.emptyResponse);
module.exports = account;