-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcampaign-monitor.js
185 lines (153 loc) · 3.86 KB
/
campaign-monitor.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
// Dependencies
var _ = require('underscore');
var request = require('request');
var cm = function(options) {
this.options = _.extend({
log: false,
url: 'https://api.createsend.com/api/v3.1/',
apikey: '',
clientid: ''
}, options);
// API Import
this.importAPI({
list: './API/list',
lists: './API/lists',
subscribers:'./API/subscribers',
transactional:'./API/transactional'
});
//this.log("Init", "options",this.options);
};
// Importing the API
cm.prototype.importAPI = function(conf) {
var scope = this;
_.each(conf, function(v,k) {
var api = require(v);
scope[k] = function() {
var args = Array.prototype.slice.call(arguments);
args.splice(0,0,scope);
return new api(args);
};
});
}
// Logging. set logs=true when you init the class to enable.
cm.prototype.log = function() {
if (!this.options.log) {
return false;
}
var args = Array.prototype.slice.call(arguments);
var output = '\033[41m#['+args[0]+']\033[37m\033[40m ';
output += '\033[32m'+args[1]+'\033[37m\033[40m ';
args = args.slice(2);
_.each(args, function(arg) {
if (typeof arg == "object") {
output += JSON.stringify(arg,null,4)+' ';
} else {
output += arg+' ';
}
});
console.log(output);
return true;
}
// GET method on any api endpoint. Executes an authenticated call.
cm.prototype.GET = function(options, callback) {
var scope = this;
options.data = _.extend({}, options.data);
var obj = {
url: this.options.url+options.endpoint,
method: "GET",
data: options.data,
headers: {
'Authorization': 'Basic '+new Buffer(this.options.apikey+':x').toString('base64')
}
};
//this.log("GET", "obj", obj);
request(obj, function(error, response, body) {
callback(JSON.parse(body), response.statusCode);
return false;
});
return this;
}
// POST method on any api endpoint. Executes an authenticated call.
cm.prototype.POST = function(options, callback) {
var scope = this;
options.data = _.extend({}, options.data);
var obj = {
url: this.options.url+options.endpoint,
method: "POST",
json: options.data,
headers: {
'Authorization': 'Basic '+new Buffer(this.options.apikey+':x').toString('base64')
}
};
//this.log("POST", "obj", obj);
request(obj, function(error, response, body) {
var output;
try {
output = JSON.parse(body);
} catch (e) {
output = body;
}
callback(output, response.statusCode);
return false;
});
return this;
}
// POST method on any api endpoint. Executes an authenticated call.
cm.prototype.PUT = function(options, callback) {
var scope = this;
options.data = _.extend({}, options.data);
var obj = {
url: this.options.url+options.endpoint,
method: "PUT",
json: options.data,
headers: {
'Authorization': 'Basic '+new Buffer(this.options.apikey+':x').toString('base64')
}
};
//this.log("POST", "obj", obj);
request(obj, function(error, response, body) {
var output;
try {
output = JSON.parse(body);
} catch (e) {
output = body;
}
callback(output, response.statusCode);
return false;
});
return this;
}
// Internal Method: Select the requested client, or the default one
cm.prototype.useClient = function(client, callback) {
var scope = this;
if (this.client && this.client.id) {
callback(this.client.id);
} else {
// get the clients
this.GET({
endpoint: 'clients.json'
}, function(response) {
if (response && response.length>0) {
if (client=='default' || !client) {
// Use the first client in the list
scope.client = {
id: response[0].ClientID,
name: response[0].name
};
} else {
var _client = _.find(response, function(item) {
return item.ClientID == client;
});
scope.client = {
id: _client.ClientID,
name: _client.name
};
}
callback(scope.client.id);
} else {
throw ("No clients found on this account.");
}
});
}
}
module.exports = cm;