2019-12-13 03:29:33 -08:00
|
|
|
import { IExecuteFunctions } from 'n8n-core';
|
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodeType,
|
|
|
|
INodeTypeDescription,
|
2021-04-16 09:33:36 -07:00
|
|
|
NodeOperationError,
|
2019-12-13 03:29:33 -08:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { msg91ApiRequest } from './GenericFunctions';
|
2019-12-13 03:29:33 -08:00
|
|
|
|
|
|
|
export class Msg91 implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
2020-07-24 03:56:41 -07:00
|
|
|
displayName: 'MSG91',
|
2019-12-13 03:29:33 -08:00
|
|
|
name: 'msg91',
|
2022-06-20 07:54:01 -07:00
|
|
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
2019-12-13 03:29:33 -08:00
|
|
|
icon: 'file:msg91.png',
|
|
|
|
group: ['transform'],
|
|
|
|
version: 1,
|
|
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
2021-07-03 05:40:16 -07:00
|
|
|
description: 'Sends transactional SMS via MSG91',
|
2019-12-13 03:29:33 -08:00
|
|
|
defaults: {
|
|
|
|
name: 'Msg91',
|
|
|
|
},
|
|
|
|
inputs: ['main'],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'msg91Api',
|
|
|
|
required: true,
|
2020-10-22 06:46:03 -07:00
|
|
|
},
|
2019-12-13 03:29:33 -08:00
|
|
|
],
|
|
|
|
properties: [
|
|
|
|
{
|
|
|
|
displayName: 'Resource',
|
|
|
|
name: 'resource',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2019-12-13 03:29:33 -08:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'SMS',
|
|
|
|
value: 'sms',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'sms',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2019-12-13 03:29:33 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['sms'],
|
2019-12-13 03:29:33 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Send',
|
|
|
|
value: 'send',
|
|
|
|
description: 'Send SMS',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Send an SMS',
|
2019-12-13 03:29:33 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'send',
|
|
|
|
},
|
|
|
|
{
|
2020-07-14 03:39:42 -07:00
|
|
|
displayName: 'Sender ID',
|
2019-12-20 14:35:00 -08:00
|
|
|
name: 'from',
|
2019-12-13 03:29:33 -08:00
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2019-12-20 14:35:00 -08:00
|
|
|
placeholder: '4155238886',
|
2019-12-13 03:29:33 -08:00
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['send'],
|
|
|
|
resource: ['sms'],
|
2019-12-13 03:29:33 -08:00
|
|
|
},
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The number from which to send the message',
|
2019-12-13 03:29:33 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'To',
|
2019-12-20 14:35:00 -08:00
|
|
|
name: 'to',
|
2019-12-13 03:29:33 -08:00
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2019-12-20 14:35:00 -08:00
|
|
|
placeholder: '+14155238886',
|
2019-12-13 03:29:33 -08:00
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['send'],
|
|
|
|
resource: ['sms'],
|
2019-12-13 03:29:33 -08:00
|
|
|
},
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The number, with coutry code, to which to send the message',
|
2019-12-13 03:29:33 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Message',
|
|
|
|
name: 'message',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['send'],
|
|
|
|
resource: ['sms'],
|
2019-12-13 03:29:33 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The message to send',
|
|
|
|
},
|
2020-10-22 06:46:03 -07:00
|
|
|
],
|
2019-12-13 03:29:33 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
|
|
const items = this.getInputData();
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let operation: string;
|
|
|
|
let resource: string;
|
|
|
|
|
|
|
|
// For Post
|
|
|
|
let body: IDataObject;
|
|
|
|
// For Query string
|
|
|
|
let qs: IDataObject;
|
|
|
|
|
|
|
|
let requestMethod: string;
|
|
|
|
let endpoint: string;
|
|
|
|
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
|
|
endpoint = '';
|
|
|
|
body = {};
|
|
|
|
qs = {};
|
|
|
|
|
|
|
|
resource = this.getNodeParameter('resource', i) as string;
|
|
|
|
operation = this.getNodeParameter('operation', i) as string;
|
|
|
|
|
|
|
|
if (resource === 'sms') {
|
|
|
|
if (operation === 'send') {
|
|
|
|
// ----------------------------------
|
|
|
|
// sms:send
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
requestMethod = 'GET';
|
2019-12-20 14:35:00 -08:00
|
|
|
endpoint = '/sendhttp.php';
|
2019-12-13 03:29:33 -08:00
|
|
|
|
|
|
|
qs.route = 4;
|
|
|
|
qs.country = 0;
|
2019-12-20 14:35:00 -08:00
|
|
|
qs.sender = this.getNodeParameter('from', i) as string;
|
|
|
|
qs.mobiles = this.getNodeParameter('to', i) as string;
|
2019-12-13 03:29:33 -08:00
|
|
|
qs.message = this.getNodeParameter('message', i) as string;
|
|
|
|
} else {
|
2022-08-17 08:50:24 -07:00
|
|
|
throw new NodeOperationError(
|
|
|
|
this.getNode(),
|
|
|
|
`The operation "${operation}" is not known!`,
|
|
|
|
{ itemIndex: i },
|
|
|
|
);
|
2019-12-13 03:29:33 -08:00
|
|
|
}
|
|
|
|
} else {
|
2022-08-17 08:50:24 -07:00
|
|
|
throw new NodeOperationError(this.getNode(), `The resource "${resource}" is not known!`, {
|
|
|
|
itemIndex: i,
|
|
|
|
});
|
2019-12-13 03:29:33 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
const responseData = await msg91ApiRequest.call(this, requestMethod, endpoint, body, qs);
|
|
|
|
|
2019-12-20 14:35:00 -08:00
|
|
|
returnData.push({ requestId: responseData });
|
2019-12-13 03:29:33 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
|
|
}
|
|
|
|
}
|