97 lines
2.5 KiB
JavaScript
97 lines
2.5 KiB
JavaScript
|
|
||
|
module.exports = function(self) {
|
||
|
self.setup = function() {
|
||
|
self.super_.setup.call(this);
|
||
|
|
||
|
let disableMethods = {
|
||
|
'create': true,
|
||
|
'replaceOrCreate': true,
|
||
|
'patchOrCreate': true,
|
||
|
'upsert': true,
|
||
|
'updateOrCreate': true,
|
||
|
'exists': true,
|
||
|
'find': true,
|
||
|
'findOne': true,
|
||
|
'findById': true,
|
||
|
'deleteById': true,
|
||
|
'replaceById': true,
|
||
|
'updateAttributes': false,
|
||
|
'createChangeStream': true,
|
||
|
'updateAll': true,
|
||
|
'upsertWithWhere': true,
|
||
|
'count': true
|
||
|
};
|
||
|
|
||
|
for(let method in disableMethods) {
|
||
|
//this.disableRemoteMethod(method, disableMethods[method]);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
self.installMethod = function(methodName, filterCb) {
|
||
|
this.remoteMethod(methodName, {
|
||
|
description: 'List items using a filter',
|
||
|
accessType: 'READ',
|
||
|
accepts: [
|
||
|
{
|
||
|
arg: 'filter',
|
||
|
type: 'object',
|
||
|
required: true,
|
||
|
description: 'Filter defining where',
|
||
|
http: function(ctx) {
|
||
|
return ctx.req.query;
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
returns: {
|
||
|
arg: 'data',
|
||
|
type: [this.modelName],
|
||
|
root: true
|
||
|
},
|
||
|
http: {
|
||
|
verb: 'get',
|
||
|
path: `/${methodName}`
|
||
|
}
|
||
|
});
|
||
|
|
||
|
this.filter = (params, cb) => {
|
||
|
let filter = removeEmpty(filterCb(params));
|
||
|
this.find(filter, function(err, instances) {
|
||
|
if(!err) {
|
||
|
cb(null, instances);
|
||
|
}
|
||
|
})
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|
||
|
function removeEmpty(o) {
|
||
|
if(Array.isArray(o)) {
|
||
|
let array = [];
|
||
|
for(let item of o) {
|
||
|
let i = removeEmpty(item);
|
||
|
if(!isEmpty(item))
|
||
|
array.push(item);
|
||
|
};
|
||
|
if(array.length > 0)
|
||
|
return array;
|
||
|
}
|
||
|
else if (typeof o === 'object') {
|
||
|
let object = {};
|
||
|
for(let key in o) {
|
||
|
let i = removeEmpty(o[key]);
|
||
|
if(!isEmpty(i))
|
||
|
object[key] = i;
|
||
|
}
|
||
|
if(Object.keys(object).length > 0)
|
||
|
return object;
|
||
|
}
|
||
|
else if (!isEmpty(o))
|
||
|
return o;
|
||
|
|
||
|
return undefined;
|
||
|
}
|
||
|
|
||
|
function isEmpty(value) {
|
||
|
return value === undefined || value === "";
|
||
|
}
|