mirror of
https://github.com/bckelley/cgm-remote-monitor.git
synced 2026-08-24 03:14:12 -05:00
85 lines
2.3 KiB
JavaScript
85 lines
2.3 KiB
JavaScript
'use strict';
|
|
|
|
var consts = require('../../constants');
|
|
|
|
function configure (app, wares, ctx) {
|
|
var express = require('express'),
|
|
api = express.Router( );
|
|
|
|
// invoke common middleware
|
|
api.use(wares.sendJSONStatus);
|
|
// text body types get handled as raw buffer stream
|
|
api.use(wares.bodyParser.raw( ));
|
|
// json body types get handled as parsed json
|
|
api.use(wares.bodyParser.json( ));
|
|
// also support url-encoded content-type
|
|
api.use(wares.bodyParser.urlencoded({ extended: true }));
|
|
|
|
// List foods available
|
|
api.get('/food/', function(req, res) {
|
|
ctx.food.list(function (err, attribute) {
|
|
return res.json(attribute);
|
|
});
|
|
});
|
|
|
|
api.get('/food/quickpicks', function(req, res) {
|
|
ctx.food.listquickpicks(function (err, attribute) {
|
|
return res.json(attribute);
|
|
});
|
|
});
|
|
|
|
api.get('/food/regular', function(req, res) {
|
|
ctx.food.listregular(function (err, attribute) {
|
|
return res.json(attribute);
|
|
});
|
|
});
|
|
|
|
function config_authed (app, api, wares, ctx) {
|
|
|
|
// create new record
|
|
api.post('/food/', wares.verifyAuthorization, function(req, res) {
|
|
var data = req.body;
|
|
ctx.food.create(data, function (err, created) {
|
|
if (err) {
|
|
res.sendJSONStatus(res, consts.HTTP_INTERNAL_ERROR, 'Mongo Error', err);
|
|
console.log('Error creating food');
|
|
console.log(err);
|
|
} else {
|
|
res.json(created);
|
|
console.log('food created');
|
|
}
|
|
});
|
|
});
|
|
|
|
// update record
|
|
api.put('/food/', wares.verifyAuthorization, function(req, res) {
|
|
var data = req.body;
|
|
ctx.food.save(data, function (err, created) {
|
|
if (err) {
|
|
res.sendJSONStatus(res, consts.HTTP_INTERNAL_ERROR, 'Mongo Error', err);
|
|
console.log('Error saving food');
|
|
console.log(err);
|
|
} else {
|
|
res.json(created);
|
|
console.log('food saved');
|
|
}
|
|
});
|
|
});
|
|
// delete record
|
|
api.delete('/food/:_id', wares.verifyAuthorization, function(req, res) {
|
|
ctx.food.remove(req.params._id, function ( ) {
|
|
res.json({ });
|
|
});
|
|
});
|
|
}
|
|
|
|
if (app.enabled('api')) {
|
|
config_authed(app, api, wares, ctx);
|
|
}
|
|
|
|
return api;
|
|
}
|
|
|
|
module.exports = configure;
|
|
|