-
Notifications
You must be signed in to change notification settings - Fork 0
/
jamaClient.js
307 lines (273 loc) · 8.6 KB
/
jamaClient.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
const request = require('request');
const url = require('url');
const restPath = '/rest/v1/';
const maxResults = 50; // max is 50
let debug = true;
let client;
class JamaClient {
constructor(credentials) {
this.credentials = credentials
}
}
function init(credentials) {
client = new JamaClient(credentials)
}
function checkConnection() {
if (debug) console.log('checking connection... credentials:', client.credentials);
return new Promise(function (resolve, reject) {
getSingle('').then(function (response) {
if (response !== undefined && response.length > 0) {
resolve('valid credentials');
}
else {
reject('ERROR: ' + response);
}
}).catch(function (error) {
reject('ERROR: ' + error);
});
});
}
function getSingle(endpoint) {
return new Promise(function (resolve, reject) {
let options = {
method: 'GET',
json: true
};
options = setOptionsUrl(options, endpoint);
if (debug) console.log('getting page... options:', options);
request(options, function (err, res, body) {
// lets make sure that everything checks out
if (err) {
reject(err.message);
}
else {
resolve(body.data);
}
});
});
}
function getAll(endpoint) {
if (debug) console.log('getting all pages...', endpoint);
return new Promise(function (resolve, reject) {
setAccessToken(function (patchedCreds) {
if (debug) console.log('patched creds,', patchedCreds)
if (patchedCreds !== null) {
client.credentials = patchedCreds;
if (debug) console.log('getting credentials')
getResultTotal(endpoint).then(total => {
if (debug) ('getting ', total);
// build out all the requests
let requestCount = Math.ceil(total / maxResults);
let requestArray = [];
let startAtIndex = 0;
for (let i=0; i < requestCount; i++) {
let request = getSinglePage(endpoint, startAtIndex);
requestArray.push(request);
startAtIndex += maxResults;
}
Promise.all(requestArray).then(results => {
results = [].concat.apply([], results); // flatten the list
resolve(results);
}).catch(error => {
if (debug) console.log('error:', error)
reject(error);
})
});
}
else {
reject(null);
}
});
});
}
// posts an entry
function post(credentials, endpoint, payload) {
return new Promise(function (resolve, reject) {
let options = {
method: 'POST',
json: true,
body: payload
};
options = setOptionsUrl(options, endpoint);
request(options, function (err, res, body) {
// lets make sure that everything checks out
if (err) {
reject(body.meta);
}
// we successfully posted?
if (body.meta.status === 'Created') {
resolve(body.meta.id);
}
else {
reject(null);
}
});
});
}
// updates an item with a PUT request
function put(credentials, endpoint, payload) {
return new Promise(function (resolve, reject) {
let options = {
method: 'PUT',
json: true,
body: payload
};
options = setOptionsUrl(options, endpoint);
request(options, function (err, res, body) {
// lets make sure that everything checks out
if (err) {
reject(body.meta);
}
// we successfully posted?
if (body.meta.status === 'OK') {
resolve(body.meta.id);
}
else {
reject(null);
}
});
});
}
// updates an item with a PATCH request
function patch(credentials, endpoint, payload) {
return new Promise(function (resolve, reject) {
let options = {
method: 'PATCH',
json: true,
body: payload
};
options = setOptionsUrl(options, endpoint);
request(options, function (err, res, body) {
// lets make sure that everything checks out
if (err) {
reject(body.meta);
}
// we successfully posted?
if (body.meta.status === 'OK') {
resolve(body.meta.id);
}
else {
reject(null);
}
});
});
}
function getSinglePage(endpoint, startIndex) {
return new Promise(function (resolve, reject) {
if (debug) console.log('getting single page...', endpoint);
let options = {
url: '',
method: 'GET',
json: true
};
options = setOptionsUrl(options, endpoint);
options.url += '?startAt=' + startIndex + '&maxResults=' + maxResults;
request(options, function (err, res, body) {
// lets make sure that everything checks out
if (err || body.meta.status !== 'OK') {
reject(err);
}
// console.log(body.data)
resolve(body.data)
});
});
}
function getAccessToken(credentials) {
return new Promise(function (resolve, reject) {
let options = {
url: buildOauthUrl() + '/rest/oauth/token',
method: 'POST',
auth: {
user: credentials.username,
pass: credentials.password
},
form: {
'grant_type': 'client_credentials'
},
json: true
};
request(options, function (err, res, body) {
if (err) {
reject(null);
}
resolve(body.access_token);
});
});
}
function getResultTotal(endpoint) {
return new Promise(function (resolve, reject) {
let options = {
method: 'GET',
json: true
};
options = setOptionsUrl(options, endpoint + '?maxResults=1');
request(options, function (err, res, body) {
// lets make sure that everything checks out
if (err) {
reject(err);
}
resolve(body.meta.pageInfo.totalResults);
});
});
}
function setAccessToken(callback) {
if (debug) console.log('setting access token...')
// we need to grab an access token if we are using oauth
if (client.credentials.isBasic) {
client.credentials.accessToken = null;
return callback(client.credentials);
}
else {
getAccessToken(client.credentials).then(function (accessToken) {
client.credentials.accessToken = accessToken;
return callback(client.credentials);
}).catch(function () {
return callback(null);
});
}
}
function setOptionsUrl(options, endpoint) {
// we using basic auth?
if (client.credentials.isBasic) {
options.url = buildBasicAuthUrl() + restPath + endpoint;
}
// nope, okay lets use oauth then
else {
options.url = buildOauthUrl() + restPath + endpoint;
options.headers = {'Authorization': 'Bearer ' + client.credentials.accessToken};
}
return options;
}
function buildBasicAuthUrl() {
let urlObject = buildUrlObject(client.credentials.url);
let urlString = urlObject.protocol;
if (urlObject.slashes) {
urlString += '//'
}
return urlString + client.credentials.username + ':' + client.credentials.password + '@' + urlObject.host;
}
function buildOauthUrl() {
let urlObject = buildUrlObject(client.credentials.url);
let urlString = urlObject.protocol;
if (urlObject.slashes) {
urlString += '//'
}
return urlString + urlObject.host;
}
function buildUrlObject(urlString) {
// does NOT start with 'https://' OR 'http://', aka base url only
if (urlString.indexOf('https://') === 0 || urlString.indexOf('http://') === 0) {
return url.parse(urlString);
}
else {
return url.parse('https://' + urlString);
}
}
module.exports = {
init: init,
checkConnection: checkConnection,
getAll: getAll,
getSingle: getSingle,
postEntry: post,
putEntry: put
};