forked from MSG91/sendotp-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsms.js
219 lines (195 loc) · 5.92 KB
/
sms.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
const http = require('https')
class SendSmsService {
/**
* @param {String} aAuthKey Authentication key
*/
constructor(aAuthKey, aSenderId) {
this.authKey = aAuthKey
this.senderId = aSenderId
// this.routeId = aRouteId
}
/**
* @param {Object} aMobileNumbers will list of mobile numbers
* @param {Object} aMessages to send it to the users
* @return {Array} list of message object
*/
extractMessagesObject(aMobileNumbers, aMessages) {
const messages = []
if (aMessages && aMessages.length > 0) {
if (aMessages instanceof Array) {
aMessages.forEach((message) => {
message = message.trimEnd()
if (message.length > 0) {
messages.push(this.extractedMessage(message, aMobileNumbers))
}
})
} else if (aMessages instanceof String && aMessages.includes(',')) {
aMessages.split(',').forEach((message) => {
message = message.trimEnd()
if (message.length > 0) {
messages.push(this.extractedMessage(message, aMobileNumbers))
}
})
} else {
messages.push(this.extractedMessage(aMessages, aMobileNumbers))
}
}
return messages
}
extractedMessage(aMessage, aMobileNumbers) {
const message = {}
message.message = aMessage
const phoneNumbers = []
if (aMobileNumbers && aMobileNumbers.length > 0) {
if (aMobileNumbers instanceof Array) {
phoneNumbers.push(aMobileNumbers)
} else if (
aMobileNumbers instanceof String &&
aMobileNumbers.includes(',')
) {
const numberArray = aMobileNumbers.split(',')
numberArray.forEach((aNumber) => {
aNumber.trim()
})
phoneNumbers.push(numberArray)
} else {
phoneNumbers.push(aMobileNumbers)
}
message.to = phoneNumbers
} else {
throw new Error('Mobile numbers should not be null')
}
return message
}
/**
* Sending sms flow message using template id and it's params
*
* @param {string} aMobileNumber will list of mobile numbers
* @param {string} aFlowId to send it to the users
* @param {Object} aParams template placeholder params
* @return {Promise<Object>}
*/
async sendSMSFlow(aMobileNumber, aFlowId, aParams) {
return new Promise(async (resolve, reject) => {
try {
aParams = {recipients: aParams}
aParams.flow_id = aFlowId
aParams.sender = this.senderId;
const options = {
method: 'POST',
hostname: 'api.msg91.com',
port: null,
path: '/api/v5/flow/?response=json',
headers: {
"authkey": this.authKey,
'content-type': 'application/json'
},
body: aParams
}
// test
console.log(options);
const response = await this.performRequest(options)
this.handleResponse(response, resolve, reject)
} catch (error) {
reject(error)
}
})
}
/**
* Sending multiple message to the multiple user
*
* @param {string} aMobileNumbers will list of mobile numbers
* @param {string} aMessage to send it to the users
* @param {string} aCountryDialCode country dial code of the mobile numbers
* @return {Promise<Object>}
*/
async sendSMS(aMobileNumbers, aMessage, aCountryDialCode) {
return this.sendSMSRequest(aMobileNumbers, aMessage, aCountryDialCode)
}
/**
* Sending multiple message to the multiple user
*
* @param {string} aMobileNumbers will list of mobile numbers
* @param {string} aMessage to send it to the users
* @param {string} aCountryDialCode country dial code of the mobile numbers
* @return {Promise<Object>}
*/
async sendSMSTemplate(aMobileNumber, aFlowId, aParams) {
return this.sendSMSFlow(aMobileNumber, aFlowId, aParams)
}
/**
* Sending multiple message to the multiple user
*
* @param {Object} aMobileNumbers will list of mobile numbers
* @param {Object} aMessage to send it to the users
* @param {string} aCountryDialCode country dial code of the mobile numbers
* @return {Promise<Object>}
*/
sendSMSRequest(aMobileNumbers, aMessage, aCountryDialCode) {
return new Promise(async (resolve, reject) => {
try {
const messageArray = this.extractMessagesObject(
aMobileNumbers,
aMessage
)
if (!messageArray || messageArray.length === 0) {
reject('Message object should not null or empty')
}
const body = {
sender: this.senderId,
route: this.routeId,
country: aCountryDialCode,
sms: messageArray
}
const options = {
method: 'POST',
hostname: 'api.msg91.com',
port: null,
path: '/api/v2/sendsms',
headers: {
authkey: this.authKey,
'content-type': 'application/json'
},
body
}
// test
console.log(options);
const response = await this.performRequest(options)
this.handleResponse(response, resolve, reject)
} catch (error) {
reject(error)
}
})
}
performRequest = async (aOptions) => {
return new Promise((resolve, reject) => {
const req = http.request(aOptions, (res) => {
const chunks = []
res.on('data', (chunk) => {
chunks.push(chunk)
})
res.on('error', (aReason) => {
reject(aReason)
})
res.on('end', () => {
const body = Buffer.concat(chunks)
resolve(JSON.parse(body.toString()))
})
})
if (aOptions.body) {
req.write(JSON.stringify(aOptions.body))
}
req.end()
})
}
handleResponse = (response, resolve, rejects) => {
if (response.type === 'error') {
if (!response.code) {
response.code = 201
}
rejects(response)
}
resolve(response)
}
}
module.exports = SendSmsService