64 lines
1.6 KiB
JavaScript
64 lines
1.6 KiB
JavaScript
|
|
module.exports = Self => {
|
|
Self.remoteMethodCtx('sendSms', {
|
|
description: 'Log the message in clientLog and call the send method',
|
|
accessType: 'WRITE',
|
|
accepts: [{
|
|
arg: 'id',
|
|
type: 'number',
|
|
required: true,
|
|
description: 'The ticket id',
|
|
http: {source: 'path'}
|
|
},
|
|
{
|
|
arg: 'destination',
|
|
type: 'string',
|
|
required: true,
|
|
},
|
|
{
|
|
arg: 'message',
|
|
type: 'string',
|
|
required: true,
|
|
}],
|
|
returns: {
|
|
type: 'object',
|
|
root: true
|
|
},
|
|
http: {
|
|
path: `/:id/sendSms`,
|
|
verb: 'POST'
|
|
}
|
|
});
|
|
|
|
Self.sendSms = async(ctx, id, destination, message, options) => {
|
|
const models = Self.app.models;
|
|
const myOptions = {};
|
|
|
|
if (typeof options == 'object')
|
|
Object.assign(myOptions, options);
|
|
|
|
const userId = ctx.req.accessToken.userId;
|
|
|
|
const sms = await models.Sms.send(ctx, id, destination, message);
|
|
const logRecord = {
|
|
originFk: id,
|
|
userFk: userId,
|
|
action: 'insert',
|
|
changedModel: 'sms',
|
|
newInstance: {
|
|
destinationFk: id,
|
|
destination: destination,
|
|
message: message,
|
|
statusCode: sms.statusCode,
|
|
status: sms.status
|
|
}
|
|
};
|
|
|
|
const clientLog = await models.ClientLog.create(logRecord, myOptions);
|
|
|
|
sms.logId = clientLog.id;
|
|
|
|
return sms;
|
|
};
|
|
};
|