nightscout
Version:
Nightscout acts as a web-based CGM (Continuous Glucose Monitor) to allow multiple caregivers to remotely view a patients glucose data in realtime.
87 lines (61 loc) • 2.18 kB
JavaScript
;
const _ = require('lodash')
, dateTools = require('../../shared/dateTools')
, apiConst = require('../../const.json')
, security = require('../../security')
, insert = require('../create/insert')
, replace = require('./replace')
, opTools = require('../../shared/operationTools')
;
/**
* UPDATE: Updates a document in the collection
*/
async function update (opCtx) {
const { col, req, res } = opCtx;
const doc = req.body;
if (_.isEmpty(doc)) {
return opTools.sendJSONStatus(res, apiConst.HTTP.BAD_REQUEST, apiConst.MSG.HTTP_400_BAD_REQUEST_BODY);
}
col.parseDate(doc);
opTools.resolveIdentifier(doc);
const identifier = req.params.identifier
, identifyingFilter = col.storage.identifyingFilter(identifier);
const result = await col.storage.findOneFilter(identifyingFilter, { });
if (!result)
throw new Error('empty result');
doc.identifier = identifier;
if (result.length > 0) {
await updateConditional(opCtx, doc, result[0]);
}
else {
await insert(opCtx, doc);
}
}
async function updateConditional (opCtx, doc, storageDoc) {
const { col, req, res } = opCtx;
if (storageDoc.isValid === false) {
return opTools.sendJSONStatus(res, apiConst.HTTP.GONE);
}
const modifiedDate = col.resolveDates(storageDoc)
, ifUnmodifiedSince = req.get('If-Unmodified-Since');
if (ifUnmodifiedSince
&& dateTools.floorSeconds(modifiedDate) > dateTools.floorSeconds(new Date(ifUnmodifiedSince))) {
return opTools.sendJSONStatus(res, apiConst.HTTP.PRECONDITION_FAILED);
}
await replace(opCtx, doc, storageDoc);
}
function updateOperation (ctx, env, app, col) {
return async function operation (req, res) {
const opCtx = { app, ctx, env, col, req, res };
try {
opCtx.auth = await security.authenticate(opCtx);
await update(opCtx);
} catch (err) {
console.error(err);
if (!res.headersSent) {
return opTools.sendJSONStatus(res, apiConst.HTTP.INTERNAL_ERROR, apiConst.MSG.STORAGE_ERROR);
}
}
};
}
module.exports = updateOperation;