2018-07-09 16:06:25 +00:00
|
|
|
|
|
|
|
const ParameterizedSQL = require('loopback-connector').ParameterizedSQL;
|
2018-10-23 09:25:51 +00:00
|
|
|
const UserError = require('../helpers').UserError;
|
2018-07-09 16:06:25 +00:00
|
|
|
|
2017-10-13 14:22:45 +00:00
|
|
|
module.exports = function(Self) {
|
2018-10-15 09:43:57 +00:00
|
|
|
Self.ParameterizedSQL = ParameterizedSQL;
|
|
|
|
|
2017-10-13 14:22:45 +00:00
|
|
|
Self.setup = function() {
|
|
|
|
Self.super_.setup.call(this);
|
2018-10-23 09:25:51 +00:00
|
|
|
|
|
|
|
// Register field ACL validation
|
|
|
|
this.beforeRemote('prototype.patchAttributes', ctx => this.checkUpdateAcls(ctx));
|
|
|
|
this.beforeRemote('updateAll', ctx => this.checkUpdateAcls(ctx));
|
|
|
|
this.beforeRemote('patchOrCreate', ctx => this.checkInsertAcls(ctx));
|
|
|
|
this.beforeRemote('create', ctx => this.checkInsertAcls(ctx));
|
|
|
|
this.beforeRemote('replaceById', ctx => this.checkInsertAcls(ctx));
|
|
|
|
this.beforeRemote('replaceOrCreate', ctx => this.checkInsertAcls(ctx));
|
2018-10-22 07:29:58 +00:00
|
|
|
|
|
|
|
this.remoteMethod('crud', {
|
|
|
|
description: 'Create, update or/and delete instances from model with a single request',
|
|
|
|
accessType: 'WRITE',
|
|
|
|
accepts: [
|
|
|
|
{
|
|
|
|
arg: 'actions',
|
|
|
|
type: 'Object',
|
|
|
|
require: true,
|
|
|
|
description: 'Instances to update, example: {create: [instances], update: [instances], delete: [ids]}',
|
|
|
|
http: {source: 'body'}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
http: {
|
|
|
|
path: `/crud`,
|
|
|
|
verb: 'POST'
|
|
|
|
}
|
|
|
|
});
|
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-10-22 07:29:58 +00:00
|
|
|
Self.crud = async function(actions) {
|
|
|
|
let transaction = await this.beginTransaction({});
|
|
|
|
let options = {transaction: transaction};
|
2018-05-31 09:52:39 +00:00
|
|
|
|
2018-10-22 07:29:58 +00:00
|
|
|
try {
|
|
|
|
if (actions.delete && actions.delete.length) {
|
|
|
|
await this.destroyAll({id: {inq: actions.delete}}, options);
|
|
|
|
}
|
|
|
|
if (actions.update) {
|
|
|
|
try {
|
|
|
|
let promises = [];
|
|
|
|
actions.update.forEach(toUpdate => {
|
|
|
|
promises.push(this.upsertWithWhere(toUpdate.where, toUpdate.data, options));
|
|
|
|
});
|
|
|
|
await Promise.all(promises);
|
|
|
|
} catch (error) {
|
|
|
|
throw error;
|
2018-08-30 06:50:03 +00:00
|
|
|
}
|
2018-10-22 07:29:58 +00:00
|
|
|
}
|
|
|
|
if (actions.create && actions.create.length) {
|
|
|
|
try {
|
|
|
|
await this.create(actions.create, options);
|
|
|
|
} catch (error) {
|
|
|
|
throw error[error.length - 1];
|
2018-05-31 09:52:39 +00:00
|
|
|
}
|
|
|
|
}
|
2018-10-22 07:29:58 +00:00
|
|
|
await transaction.commit();
|
|
|
|
} catch (error) {
|
|
|
|
await transaction.rollback();
|
|
|
|
throw error;
|
|
|
|
}
|
2018-05-31 09:52:39 +00:00
|
|
|
};
|
|
|
|
|
2018-10-15 09:43:57 +00:00
|
|
|
/**
|
|
|
|
* Executes an SQL query
|
|
|
|
* @param {String} query - SQL query
|
|
|
|
* @param {Object} params - Query data params
|
|
|
|
* @param {Object} options - Query options (Ex: {transaction})
|
|
|
|
* @param {Object} cb - Callback
|
|
|
|
* @return {Object} Connector promise
|
|
|
|
*/
|
2018-09-25 12:39:08 +00:00
|
|
|
Self.rawSql = function(query, params, options = {}, cb) {
|
2018-07-09 16:06:25 +00:00
|
|
|
var connector = this.dataSource.connector;
|
|
|
|
return new Promise(function(resolve, reject) {
|
2018-09-25 12:39:08 +00:00
|
|
|
connector.execute(query, params, options, function(error, response) {
|
2018-07-09 16:06:25 +00:00
|
|
|
if (cb)
|
|
|
|
cb(error, response);
|
|
|
|
if (error)
|
|
|
|
reject(error);
|
|
|
|
else
|
|
|
|
resolve(response);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-10-15 09:43:57 +00:00
|
|
|
/**
|
|
|
|
* Executes an SQL query from an Stmt
|
|
|
|
* @param {ParameterizedSql} stmt - Stmt object
|
|
|
|
* @param {Object} options - Query options (Ex: {transaction})
|
|
|
|
* @return {Object} Connector promise
|
|
|
|
*/
|
2018-10-10 07:59:42 +00:00
|
|
|
Self.rawStmt = function(stmt, options = {}) {
|
|
|
|
return this.rawSql(stmt.sql, stmt.params, options);
|
2018-07-09 16:06:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Self.escapeName = function(name) {
|
|
|
|
return this.dataSource.connector.escapeName(name);
|
|
|
|
};
|
|
|
|
|
2018-10-15 09:43:57 +00:00
|
|
|
/**
|
|
|
|
* Constructs SQL where clause from Loopback filter
|
|
|
|
* @param {Object} filter - filter
|
|
|
|
* @param {String} tableAlias - Query main table alias
|
|
|
|
* @return {String} Builded SQL where
|
|
|
|
*/
|
2018-07-09 16:06:25 +00:00
|
|
|
Self.buildWhere = function(filter, tableAlias) {
|
|
|
|
let connector = this.dataSource.connector;
|
|
|
|
let wrappedConnector = Object.create(connector);
|
|
|
|
wrappedConnector.columnEscaped = function(model, property) {
|
|
|
|
let sql = tableAlias
|
|
|
|
? connector.escapeName(tableAlias) + '.'
|
|
|
|
: '';
|
|
|
|
return sql + connector.columnEscaped(model, property);
|
|
|
|
};
|
|
|
|
|
2018-08-21 11:38:16 +00:00
|
|
|
return wrappedConnector.makeWhere(this.modelName, filter.where);
|
2018-07-09 16:06:25 +00:00
|
|
|
};
|
|
|
|
|
2018-10-15 09:43:57 +00:00
|
|
|
/**
|
|
|
|
* Constructs SQL limit clause from Loopback filter
|
|
|
|
* @param {Object} filter - filter
|
|
|
|
* @return {String} Builded SQL limit
|
|
|
|
*/
|
2018-07-09 16:06:25 +00:00
|
|
|
Self.buildLimit = function(filter) {
|
|
|
|
let sql = new ParameterizedSQL('');
|
|
|
|
this.dataSource.connector.applyPagination(this.modelName, sql, filter);
|
|
|
|
return sql;
|
|
|
|
};
|
|
|
|
|
2018-10-15 09:43:57 +00:00
|
|
|
/**
|
|
|
|
* Constructs SQL order clause from Loopback filter
|
|
|
|
* @param {Object} filter - filter
|
|
|
|
* @return {String} Builded SQL order
|
|
|
|
*/
|
2018-07-09 16:06:25 +00:00
|
|
|
Self.buildOrderBy = function(filter) {
|
|
|
|
let order = filter.order;
|
|
|
|
|
|
|
|
if (!order)
|
|
|
|
return '';
|
|
|
|
if (typeof order === 'string')
|
|
|
|
order = [order];
|
|
|
|
|
|
|
|
let clauses = [];
|
|
|
|
|
|
|
|
for (let clause of order) {
|
|
|
|
let sqlOrder = '';
|
|
|
|
let t = clause.split(/[\s,]+/);
|
|
|
|
let names = t[0].split('.');
|
|
|
|
|
|
|
|
if (names.length > 1)
|
|
|
|
sqlOrder += this.escapeName(names[0]) + '.';
|
|
|
|
sqlOrder += this.escapeName(names[names.length - 1]);
|
|
|
|
|
|
|
|
if (t.length > 1)
|
|
|
|
sqlOrder += ' ' + (t[1].toUpperCase() == 'ASC' ? 'ASC' : 'DESC');
|
|
|
|
|
|
|
|
clauses.push(sqlOrder);
|
|
|
|
}
|
|
|
|
|
|
|
|
return `ORDER BY ${clauses.join(', ')}`;
|
|
|
|
};
|
|
|
|
|
2018-10-15 09:43:57 +00:00
|
|
|
/**
|
|
|
|
* Constructs SQL pagination from Loopback filter
|
|
|
|
* @param {Object} filter - filter
|
|
|
|
* @return {String} Builded SQL pagination
|
|
|
|
*/
|
2018-07-09 16:06:25 +00:00
|
|
|
Self.buildPagination = function(filter) {
|
|
|
|
return ParameterizedSQL.join([
|
|
|
|
this.buildOrderBy(filter),
|
|
|
|
this.buildLimit(filter)
|
|
|
|
]);
|
|
|
|
};
|
|
|
|
|
2018-10-15 09:43:57 +00:00
|
|
|
/**
|
|
|
|
* Constructs SQL filter including where, order and limit
|
|
|
|
* clauses from Loopback filter
|
|
|
|
* @param {Object} filter - filter
|
|
|
|
* @param {String} tableAlias - Query main table alias
|
|
|
|
* @return {String} Builded SQL limit
|
|
|
|
*/
|
2018-07-09 16:06:25 +00:00
|
|
|
Self.buildSuffix = function(filter, tableAlias) {
|
|
|
|
return ParameterizedSQL.join([
|
|
|
|
this.buildWhere(filter, tableAlias),
|
|
|
|
this.buildPagination(filter)
|
|
|
|
]);
|
|
|
|
};
|
|
|
|
|
2018-10-23 09:25:51 +00:00
|
|
|
Self.checkAcls = async function(ctx, actionType) {
|
|
|
|
let userId = ctx.req.accessToken.userId;
|
|
|
|
let models = this.app.models;
|
|
|
|
let userRoles = await models.Account.getRoles(userId);
|
|
|
|
let data = ctx.args.data;
|
|
|
|
let modelAcls;
|
|
|
|
|
|
|
|
function modifiedProperties(data) {
|
|
|
|
let properties = [];
|
|
|
|
|
|
|
|
for (property in data) {
|
|
|
|
properties.push(property);
|
|
|
|
}
|
|
|
|
|
|
|
|
return properties;
|
|
|
|
}
|
|
|
|
|
|
|
|
modelAcls = await models.FieldAcl.find({
|
|
|
|
where: {
|
|
|
|
and: [
|
|
|
|
{model: this.modelName},
|
|
|
|
{role: {inq: userRoles}},
|
|
|
|
{property: '*'},
|
|
|
|
{or: [{actionType: '*'}, {actionType: actionType}]}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let allowedAll = modelAcls.find(acl => {
|
|
|
|
return acl.property == '*';
|
|
|
|
});
|
|
|
|
|
|
|
|
if (allowedAll)
|
|
|
|
return;
|
|
|
|
|
|
|
|
modelAcls = await models.FieldAcl.find({
|
|
|
|
where: {
|
|
|
|
and: [
|
|
|
|
{model: this.modelName},
|
|
|
|
{role: {inq: userRoles}},
|
|
|
|
{property: {inq: modifiedProperties(data)}},
|
|
|
|
{or: [{actionType: '*'}, {actionType: actionType}]}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let propsHash = {};
|
|
|
|
for (let acl of modelAcls)
|
|
|
|
propsHash[acl.property] = true;
|
|
|
|
|
|
|
|
let allowedProperties = Object.keys(data).every(property => {
|
|
|
|
return propsHash[property];
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!allowedProperties)
|
|
|
|
throw new UserError(`You don't have enough privileges`);
|
|
|
|
};
|
|
|
|
|
|
|
|
Self.checkUpdateAcls = function(ctx) {
|
|
|
|
return this.checkAcls(ctx, 'update');
|
|
|
|
};
|
|
|
|
|
|
|
|
Self.checkInsertAcls = function(ctx) {
|
|
|
|
return this.checkAcls(ctx, 'insert');
|
|
|
|
};
|
|
|
|
|
2018-10-15 09:43:57 +00:00
|
|
|
// Action bindings
|
2018-05-31 09:52:39 +00:00
|
|
|
require('../methods/vn-model/validateBinded')(Self);
|
2018-10-15 09:43:57 +00:00
|
|
|
// Handle MySql errors
|
2018-09-18 08:11:51 +00:00
|
|
|
require('../methods/vn-model/rewriteDbError')(Self);
|
2018-10-15 09:43:57 +00:00
|
|
|
// Get table set of values
|
|
|
|
require('../methods/vn-model/getSetValues')(Self);
|
2017-10-13 14:22:45 +00:00
|
|
|
};
|