2017-10-13 14:22:45 +00:00
|
|
|
module.exports = function(Self) {
|
|
|
|
Self.setup = function() {
|
|
|
|
Self.super_.setup.call(this);
|
|
|
|
|
2017-11-08 12:42:33 +00:00
|
|
|
/* let disableMethods = {
|
2017-10-13 14:22:45 +00:00
|
|
|
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]);
|
2017-11-08 12:42:33 +00:00
|
|
|
} */
|
2017-10-13 14:22:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Self.defineScope = function(serverFilter) {
|
|
|
|
this.remoteMethodCtx('list', {
|
|
|
|
accepts: [
|
|
|
|
{
|
|
|
|
arg: 'filter',
|
|
|
|
type: 'object',
|
|
|
|
description: 'Filter defining where'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
returns: {
|
|
|
|
type: [this.modelName],
|
|
|
|
root: true
|
|
|
|
},
|
|
|
|
http: {
|
|
|
|
verb: 'get',
|
|
|
|
path: '/list'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
this.list = function(ctx, clientFilter, cb) {
|
2017-11-09 07:59:40 +00:00
|
|
|
let clientFields = (clientFilter && clientFilter.fields) ? clientFilter.fields : [];
|
|
|
|
let serverFields = (serverFilter && serverFilter.fields) ? serverFilter.fields : [];
|
|
|
|
let fields = clientFields.filter(itemC => {
|
2017-10-13 14:22:45 +00:00
|
|
|
return serverFields.some(itemS => itemS === itemC);
|
|
|
|
});
|
2017-11-09 07:59:40 +00:00
|
|
|
let and = [];
|
|
|
|
let order;
|
|
|
|
let limit;
|
|
|
|
let filter = {order: order, limit: limit};
|
2017-10-13 14:22:45 +00:00
|
|
|
|
2017-11-09 07:59:40 +00:00
|
|
|
if (clientFilter && clientFilter.where)
|
|
|
|
and.push(clientFilter.where);
|
|
|
|
if (serverFilter && serverFilter.where)
|
|
|
|
and.push(serverFilter.where);
|
2017-10-13 14:22:45 +00:00
|
|
|
|
|
|
|
if (clientFilter && clientFilter.order)
|
|
|
|
order = clientFilter.order;
|
|
|
|
else if (serverFilter && serverFilter.order)
|
|
|
|
order = serverFilter.order;
|
|
|
|
|
|
|
|
if (serverFilter && serverFilter.limit)
|
|
|
|
limit = serverFilter.limit;
|
|
|
|
else if (clientFilter && clientFilter.limit)
|
|
|
|
limit = clientFilter.limit;
|
|
|
|
|
|
|
|
filter.where = (and.length > 0) && {and: and};
|
|
|
|
filter.fields = fields;
|
|
|
|
|
|
|
|
this.find(filter, function(err, states) {
|
2017-11-09 07:59:40 +00:00
|
|
|
if (err)
|
|
|
|
cb(err, null);
|
|
|
|
else
|
|
|
|
cb(null, states);
|
2017-10-13 14:22:45 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
Self.remoteMethodCtx = function(methodName, args) {
|
|
|
|
var ctx = {
|
|
|
|
arg: 'context',
|
|
|
|
type: 'object',
|
|
|
|
http: function(ctx) {
|
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if (args.accepts === undefined)
|
|
|
|
args.accepts = [];
|
|
|
|
else if (!Array.isArray(args.accepts))
|
|
|
|
args.accepts = [args.accepts];
|
|
|
|
args.accepts.unshift(ctx);
|
|
|
|
this.remoteMethod(methodName, args);
|
|
|
|
};
|
|
|
|
|
2017-11-08 12:42:33 +00:00
|
|
|
Self.getConnection = function(cb) {
|
|
|
|
this.dataSource.connector.client.getConnection(cb);
|
|
|
|
};
|
|
|
|
|
2017-10-13 14:22:45 +00:00
|
|
|
Self.connectToService = function(ctx, dataSource) {
|
|
|
|
this.app.dataSources[dataSource].connector.remotes.auth = {
|
|
|
|
bearer: new Buffer(ctx.req.accessToken.id).toString('base64'),
|
|
|
|
sendImmediately: true
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
Self.disconnectFromService = function(dataSource) {
|
|
|
|
this.app.dataSources[dataSource].connector.remotes.auth = {
|
2018-01-29 18:57:00 +00:00
|
|
|
bearer: new Buffer('').toString('base64'),
|
2017-10-13 14:22:45 +00:00
|
|
|
sendImmediately: true
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-02-27 13:55:59 +00:00
|
|
|
require('../methods/vnModel/rawSql')(Self);
|
|
|
|
require('../methods/vnModel/installMethod')(Self);
|
|
|
|
require('../methods/vnModel/validateBinded')(Self);
|
|
|
|
require('../methods/vnModel/installCrudModel')(Self);
|
2017-10-13 14:22:45 +00:00
|
|
|
};
|