"use strict"; // modules const express = require('express'); const logger = require('debug')('cc:awardings'); // HTTP status codes by name const codes = require('./http-codes'); const routerHandling = require('../middleware/router-handling'); // Mongoose Model using mongoDB const AwardingModel = require('../models/awarding'); const request = express.Router(); // routes ********************** request.route('/award') .post((req, res, next) => { const award = new AwardingModel(req.body); award.confirmed = false; award.proposer = req.user._id; // timestamp and default are set automatically by Mongoose Schema Validation award.save((err) => { if (err) { err.status = codes.wrongrequest; err.message += ' in fields: ' + Object.getOwnPropertyNames(err.errors); return next(err); } res.status(codes.created); res.locals.items = award; next(); }); }) .all( routerHandling.httpMethodNotAllowed ); request.route('/promotion') .all( routerHandling.httpMethodNotAllowed ); // 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 request.use(routerHandling.emptyResponse); module.exports = request;