-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
133 lines (103 loc) · 2.9 KB
/
index.js
File metadata and controls
133 lines (103 loc) · 2.9 KB
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
'use strict';
const Promise = require('bluebird');
const request = require('request');
const _ = require('lodash');
/**
* Jusibe API base url
*/
const apiBaseUrl = 'https://jusibe.com/smsapi';
/**
* Class constructor
* @param {string} publicKey
* @param {string} accessToken
* @return {void}
*/
function Jusibe (publicKey, accessToken) {
if(!(publicKey || accessToken)) throw new Error('Invalid constructor arguments. publicKey or accessToken is defined');
this.options = {
auth: {
user: publicKey,
pass: accessToken
},
json: true
}
}
/**
* Merge objects
* @param {object} obj1
* @param {object} obj2
* @return {object}
*/
function mergeOptions (obj1, obj2) {
return _.merge(obj1, obj2);
}
/**
* Make http request
* @param {object} options
* @param {function} callback
* @return {void}
*/
Jusibe.prototype.makeRequest = function (options, callback) {
let requestOptions = mergeOptions(this.options, options);
request(requestOptions, callback)
}
/**
* Send SMS via Jusibe API
* @param {object} params
* @return {Promise}
*/
Jusibe.prototype.sendMessage = function (params) {
let self = this;
return new Promise(function (resolve, reject) {
if(!params) reject(new Error('Invalid argument. params not defined'));
if(!params.hasOwnProperty('to')) reject(new Error('to property not defined'));
if(!params.hasOwnProperty('from')) reject(new Error('from property not defined'));
if(!params.hasOwnProperty('message')) reject(new Error('message property not defined'));
let options = {
url: apiBaseUrl + '/send_sms',
method: 'POST',
form: params
}
self.makeRequest(options, function (error, response) {
if(error) reject(error);
resolve(response.body)
})
})
}
/**
* Get Jubibe credit balance
* @return {Promise}
*/
Jusibe.prototype.getCredits = function() {
let self = this;
return new Promise(function (resolve, reject) {
let options = {
url: apiBaseUrl + '/get_credits/',
method: 'GET',
}
self.makeRequest(options, function (error, response) {
if(error) reject(error);
resolve(response.body)
})
})
}
/**
* Get delivery status of message
* @param {string} id
* @return {Promise}
*/
Jusibe.prototype.messageStatus = function(id) {
let self = this;
return new Promise(function (resolve, reject) {
if(typeof id !== "string") reject(new Error("Invalid argument. id must be a string"))
let options = {
url: apiBaseUrl + '/delivery_status/' + '?message_id=' + id,
method: 'GET'
}
self.makeRequest(options, function (error, response) {
if(error) reject(error);
resolve(response.body)
})
})
}
module.exports = Jusibe;