mirror of
https://github.com/bckelley/cgm-remote-monitor.git
synced 2026-08-24 03:14:12 -05:00
86 lines
1.9 KiB
JavaScript
86 lines
1.9 KiB
JavaScript
'use strict';
|
|
|
|
var find_options = require('./query');
|
|
|
|
|
|
function storage (env, ctx) {
|
|
var ObjectID = require('mongodb').ObjectID;
|
|
|
|
function create (obj, fn) {
|
|
obj.created_at = (new Date( )).toISOString( );
|
|
api().insert(obj, function (err, doc) {
|
|
if (err != null && err.message) {
|
|
console.log('Activity data insertion error', err.message);
|
|
fn(err.message, null);
|
|
return;
|
|
}
|
|
fn(null, doc.ops);
|
|
});
|
|
}
|
|
|
|
function save (obj, fn) {
|
|
obj._id = new ObjectID(obj._id);
|
|
obj.created_at = (new Date( )).toISOString( );
|
|
api().save(obj, function (err, doc) {
|
|
fn(err, doc);
|
|
});
|
|
}
|
|
|
|
function query_for (opts) {
|
|
return find_options(opts, storage.queryOpts);
|
|
}
|
|
|
|
function list(opts, fn) {
|
|
// these functions, find, sort, and limit, are used to
|
|
// dynamically configure the request, based on the options we've
|
|
// been given
|
|
|
|
// determine sort options
|
|
function sort ( ) {
|
|
return opts && opts.sort || {created_at: -1};
|
|
}
|
|
|
|
// configure the limit portion of the current query
|
|
function limit ( ) {
|
|
if (opts && opts.count) {
|
|
return this.limit(parseInt(opts.count));
|
|
}
|
|
return this;
|
|
}
|
|
|
|
// handle all the results
|
|
function toArray (err, entries) {
|
|
fn(err, entries);
|
|
}
|
|
|
|
// now just stitch them all together
|
|
limit.call(api( )
|
|
.find(query_for(opts))
|
|
.sort(sort( ))
|
|
).toArray(toArray);
|
|
}
|
|
|
|
function remove (_id, fn) {
|
|
var objId = new ObjectID(_id);
|
|
return api( ).remove({ '_id': objId }, fn);
|
|
}
|
|
|
|
function api ( ) {
|
|
return ctx.store.collection(env.activity_collection);
|
|
}
|
|
|
|
api.list = list;
|
|
api.create = create;
|
|
api.query_for = query_for;
|
|
api.save = save;
|
|
api.remove = remove;
|
|
api.indexedFields = ['created_at'];
|
|
return api;
|
|
}
|
|
|
|
module.exports = storage;
|
|
|
|
storage.queryOpts = {
|
|
dateField: 'created_at'
|
|
};
|