-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.js
More file actions
424 lines (380 loc) · 13.8 KB
/
Copy pathindex.js
File metadata and controls
424 lines (380 loc) · 13.8 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
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/**
* NodeJS Workable API Wrapper
* @author Aymen Mouelhi <aymen.mouelhi@gmail.com>
*/
var request = require('request');
var url = require('url');
var throttledRequest = require('throttled-request')(request);
// Configure Request
throttledRequest.configure({
requests: 1,
milliseconds: 1000
});
var noOp = function() {};
/**
* Sets credentials for Workable access.
* @param {Object} opts
*/
var Workable = function(opts) {
//defaults
opts = opts || {};
// Access Token
this.accessToken = opts.accessToken || '';
// API version
this.version = opts.version || '3';
this.throttle = opts.throttle || false;
};
/**
* This method creates and returns and instance of Workable
* @param {Object} opts Options passed along to the Workable constructor.
*/
var createInstance = function(opts) {
return new Workable(opts);
};
/**
* Sets API Access Token for Workable access.
* @param {String} [Token] [API Access Token]
*/
Workable.prototype.setAccessToken = function(token) {
this.accessToken = token;
};
/**
* Returns information about all the accounts
* @param {String} [subdomain] [The account's subdomain]
* @param {Function} callback Method to execute on completion
*/
Workable.prototype.getAccounts = function(options, callback) {
return this._get('/', options, callback);
};
/**
* Returns information about an account
* @param {String} [subdomain] [The account's subdomain]
* @param {Function} callback Method to execute on completion
*/
Workable.prototype.getAccount = function(subdomain, options, callback) {
return this._get('/' + subdomain, options, callback);
};
/**
* Returns a collection of an account members
* @param {String} [subdomain] [The account's subdomain]
* @param {Function} callback Method to execute on completion
*/
Workable.prototype.getMembers = function(subdomain, options, callback) {
return this._get('/' + subdomain + '/members', options, callback);
};
/**
* Returns a collection of an account external recruiters
* @param {String} [subdomain] [The account's subdomain]
* @param {Function} callback Method to execute on completion
*/
Workable.prototype.getRecruiters = function(subdomain, options, callback) {
return this._get('/' + subdomain + '/recruiters', options, callback);
};
/**
* Returns a collection of a recruitment pipeline stages
* @param {String} [subdomain] [The account's subdomain]
* @param {Function} callback Method to execute on completion
*/
Workable.prototype.getStages = function(subdomain, options, callback) {
return this._get('/' + subdomain + '/stages', options, callback);
};
/**
* Returns a collection of an account jobs
* @param {String} [subdomain] [The account's subdomain]
* @param {function} callback Method to execute on completion
*/
Workable.prototype.getJobs = function(subdomain, options, callback) {
return this._get('/' + subdomain + '/jobs', options, callback);
};
/**
* Get a Job Information
* @param {String} [subdomain] [The account's subdomain]
* @param {String} [shortcode] [The job's shortcode]
* @param {Function} callback Method to execute on completion
*/
Workable.prototype.getJob = function(subdomain, shortcode, options, callback) {
return this._get('/' + subdomain + '/jobs/' + shortcode, options, callback);
};
/**
* Get a Job's questions
* @param {String} [subdomain] [The account's subdomain]
* @param {String} [shortcode] [The job's shortcode]
* @param {Function} callback Method to execute on completion
*/
Workable.prototype.getJobQuestions = function(subdomain, shortcode, options, callback) {
return this._get('/' + subdomain + '/jobs/' + shortcode + '/questions', options, callback);
};
/**
* Get a Job's members
* @param {String} [subdomain] [The account's subdomain]
* @param {String} [shortcode] [The job's shortcode]
* @param {function} callback Method to execute on completion
*/
Workable.prototype.getJobMembers = function(subdomain, shortcode, options, callback) {
return this._get('/' + subdomain + '/jobs/' + shortcode + '/members', options, callback);
};
/**
* Get a Job's recruiters
* @param {String} [subdomain] [The account's subdomain]
* @param {String} [shortcode] [The job's shortcode]
* @param {function} callback Method to execute on completion
*/
Workable.prototype.getJobRecruiters = function(subdomain, shortcode, options, callback) {
return this._get('/' + subdomain + '/jobs/' + shortcode + '/recruiters', options, callback);
};
/**
* Get a Job's candidates
* @param {String} [subdomain] [The account's subdomain]
* @param {String} [shortcode] [The job's shortcode]
* @param {function} callback Method to execute on completion
*/
Workable.prototype.getJobCandidates = function(subdomain, shortcode, stage, limit, since_id, max_id, created_after, updated_after, callback) {
limit = limit || 100;
var query = '/' + subdomain + '/jobs/' + shortcode + '/candidates?limit=' + limit;
if (stage) {
query += '&stage=' + stage;
}
if (since_id) {
query += '&since_id=' + since_id;
}
return this._get(query, null, callback);
//return this._get('/' + subdomain + '/jobs/' + shortcode + '/candidates?stage=' + stage + '&limit=' + limit + '&since_id=' + since_id + '&max_id=' + max_id + '&created_after=' + created_after + '&updated_after=' + updated_after, callback);
};
/**
* Get all of a Job's candidates
* @param {String} [subdomain] [The account's subdomain]
* @param {String} [shortcode] [The job's shortcode]
* @param {function} callback Method to execute on completion
*/
Workable.prototype.getAllJobCandidates = function(subdomain, shortcode, stage, limit, since_id, max_id, created_after, updated_after, callback, candidatesArr) {
candidatesArr = candidatesArr || [];
var self = this;
this.getJobCandidates(subdomain, shortcode, stage, limit, since_id, max_id, created_after, updated_after, function(err, data) {
if (err)
return callback(err);
//not sure if this is necessary here. I found that getJobCandidate would randomly return a string instead of a json object, which
//I could only conclude was a failure to decode it the first time, but that doens't explain how I got a string in the first place...
if (typeof data === 'string')
try {
data = JSON.parse(data);
} catch (ex) {
return callback(ex);
}
if (data.paging && data.paging.next) {
candidatesArr = candidatesArr.concat(data.candidates);
var parsedUrl = url.parse(data.paging.next, true);
return self.getAllJobCandidates(subdomain, shortcode, stage, limit, parsedUrl.query.since_id, max_id, created_after, updated_after, callback, candidatesArr);
}
candidatesArr = candidatesArr.concat(data.candidates);
return callback(null, candidatesArr);
});
};
/**
* Get a information about a candidate of a Job
* @param {String} [subdomain] [The account's subdomain]
* @param {String} [shortcode] [The job's shortcode]
* @param {String} [id] [The candidates's id]
* @param {function} callback Method to execute on completion
*/
Workable.prototype.getJobCandidate = function(subdomain, shortcode, id, options, callback) {
// Todo: Update list of parameters !
return this._get('/' + subdomain + '/jobs/' + shortcode + '/candidates/' + id, options, callback);
};
/**
* Create new Candidate
* @param {String} [subdomain] [The account's subdomain]
* @param {String} [shortcode] [The job's shortcode]
* @param {String} [stage] [Depending on the value of the sourced flag, candidates are put into the sourced or applied stage.]
* @param {Object} [candidate] [The candidate]
* @param {function} callback Method to execute on completion
*/
Workable.prototype.createCandidate = function(subdomain, shortcode, stage, candidate, callback) {
return this._post('/' + subdomain + '/jobs/' + shortcode + '/candidates', candidate, callback);
};
/**
* Builds and executes a Workable api call
* @param {Object} options or just API URI Path for GET requests
* @param {Function} callback Function to call upon error or success
* @returns {Object} error, {Object} data
*/
Workable.prototype._request = function(options, callback) {
var base = 'https://www.workable.com/spi/v3/accounts';
callback = callback || noOp; //makes callback not required.
if (typeof(options) != "string") {
options.uri = base + options.uri;
}
if (this.accessToken) {
options.headers.Authorization = 'Bearer ' + this.accessToken;
}
if (this.throttle) {
// Use request to make the http call
return throttledRequest(options, function(error, response, body) {
if (error) {
callback(error, null);
} else {
switch (response.statusCode) {
case 404:
callback(new Error('Path not found'), null);
break;
case 422:
callback(new Error(body.error), null);
break;
case 500:
callback(new Error(body.error), null);
break;
case 503:
callback('API limit exceeded', null);
break;
default:
try {
if (body) {
try {
var data = JSON.parse(body);
return callback(null, data);
} catch (err) {
return callback(null, body);
}
}
// Some API do not have body content
callback(null, response.headers.status);
} catch (err) {
callback(err, null);
}
}
}
});
} else {
// Use request to make the http call
return request(options, function(error, response, body) {
if (error) {
callback(error, null);
} else {
switch (response.statusCode) {
case 404:
callback(new Error('Path not found'), null);
break;
case 422:
callback(new Error(body.error), null);
break;
case 500:
callback(new Error(body.error), null);
break;
case 503:
callback('API limit exceeded', null);
break;
default:
try {
if (body) {
try {
var data = JSON.parse(body);
return callback(null, data);
} catch (err) {
return callback(null, body);
}
}
// Some API do not have body content
callback(null, response.headers.status);
} catch (err) {
callback(err, null);
}
}
}
});
}
};
/**
* Performs a GET
* @param {String} path API endpoint
* @param {function} callback Method to execute on completion
*/
Workable.prototype._get = function(path, options, callback) {
if(!(Object.keys(options).length === 0) && (options.constructor === Object)){
var params = "";
for (var key in options) {
if (params != "") {
params += "&";
}
params += key + "=" + encodeURIComponent(options[key]);
}
path+= '?' + params;
}
console.log('Path: ' + path);
return this._request({
uri: path,
headers: {}
}, callback);
};
/**
* Performs a PUT
* @param {String} path API endpoint
* @param {Object} body Data
* @param {function} callback Method to execute on completion
*/
Workable.prototype._put = function(path, body, callback) {
body = body || '{}';
return this._request({
uri: path,
method: "PUT",
headers: {
"Content-Length": body.length
},
body: body
},
callback);
};
/**
* Performs a PATCH
* @param {String} path API endpoint
* @param {Object} body Data
* @param {function} callback Method to execute on completion
*/
Workable.prototype._patch = function(path, body, callback) {
body = body || '{}';
return this._request({
uri: path,
method: 'PATCH',
headers: {
'Content-Length': body.length
},
body: body
},
callback);
};
/**
* Performs a POST request
* @param {String} path API endpoint
* @param {Object} body Data
* @param {function} callback Method to execute on completion
*/
Workable.prototype._post = function(path, json, callback) {
json = json || '{}';
return this._request({
uri: path,
method: "POST",
headers: {
'Content-Type': 'application/json'
},
json: json
},
callback);
};
/**
* Performs a DELETE
* @param {String} path API endpoint
* @param {Object} body Data
* @param {function} callback Method to execute on completion
*/
Workable.prototype._delete = function(path, body, callback) {
body = body || '{}';
return this._request({
uri: path,
method: "DELETE",
headers: {
"Content-Length": body.length
},
body: body
},
callback);
}
// Export factory method
module.exports = createInstance;