-
Notifications
You must be signed in to change notification settings - Fork 5
/
traverson-angular.js
287 lines (246 loc) · 8.47 KB
/
traverson-angular.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
/* global angular */
'use strict';
var traverson = require('traverson');
var ng;
if (typeof angular !== 'undefined') {
// angular is defined globally, use this
ng = angular;
} else {
// angular is not defined globally, try to require it
ng = require('angular');
if (typeof ng.module !== 'function') {
throw new Error('angular has either to be provided globally or made ' +
'available as a shim for browserify. (Also, if the angular module on ' +
'npm would actually be a proper CommonJS module, this error ' +
'wouldn\'t be a thing.)');
}
}
var traversonAngular = ng.module('traverson', []);
var Builder = traverson._Builder;
var originalMethods = {
get: Builder.prototype.get,
getResource: Builder.prototype.getResource,
getUrl: Builder.prototype.getUrl,
post: Builder.prototype.post,
put: Builder.prototype.put,
patch: Builder.prototype.patch,
delete: Builder.prototype.delete,
};
traversonAngular.factory('traverson',
['$q', '$httpTraversonAdapter',
function traversonFactory($q, $httpTraversonAdapter) {
function promisify(that, originalMethod, argsArray) {
var deferred = $q.defer();
argsArray = argsArray || [];
var traversal;
var callback = function(err, result, _traversal) {
if (err) {
err.result = result;
deferred.reject(err);
} else {
traversal = _traversal;
deferred.resolve(result);
}
};
argsArray.push(callback);
var traversalHandler = originalMethod.apply(that, argsArray);
function continueTraversal() {
var deferredContinue = $q.defer();
deferred.promise.then(function() {
deferredContinue.resolve(traversal.continue());
}, function() {
var error = new Error('Can\'t continue from a broken traversal.');
error.name = 'InvalidStateError';
throw error;
});
return deferredContinue.promise;
}
return {
result: deferred.promise,
continue: continueTraversal,
abort: traversalHandler.abort,
then: function() {
throw new Error('As of version 2.0.0, Traverson\'s action methods ' +
'do no longer return the promise directly. Code like \n' +
'traverson.from(url).follow(...).getResource().then(...)\n' +
'needs to be changed to \n' +
'traverson.from(url).follow(...).getResource().result.then(...)');
},
};
}
Builder.prototype.get = function() {
return promisify(this, originalMethods.get);
};
Builder.prototype.getResource = function() {
return promisify(this, originalMethods.getResource);
};
Builder.prototype.getUrl = Builder.prototype.getUri = function() {
return promisify(this, originalMethods.getUrl);
};
Builder.prototype.post = function(body) {
return promisify(this, originalMethods.post, [body]);
};
Builder.prototype.put = function(body) {
return promisify(this, originalMethods.put, [body]);
};
Builder.prototype.patch = function(body) {
return promisify(this, originalMethods.patch, [body]);
};
Builder.prototype.delete = Builder.prototype.del = function() {
return promisify(this, originalMethods.delete);
};
Builder.prototype.useAngularHttp = function() {
this.withRequestLibrary($httpTraversonAdapter);
return this;
};
return traverson;
}]);
traversonAngular.factory('$httpTraversonAdapter', [
'$http', '$q', function $httpTraversonAdapterFactory($http, $q) {
function Request() { }
Request.prototype.get = function(uri, options, callback) {
options = mapOptions(options);
$http
.get(uri, options)
.then(handleResponse(callback))
.catch(handleError(callback));
return new AbortHandle(options.timeout);
};
Request.prototype.post = function(uri, options, callback) {
options = mapOptions(options);
$http
.post(uri, options.data, options)
.then(handleResponse(callback))
.catch(handleError(callback));
return new AbortHandle(options.timeout);
};
Request.prototype.put = function(uri, options, callback) {
options = mapOptions(options);
$http
.put(uri, options.data, options)
.then(handleResponse(callback))
.catch(handleError(callback));
return new AbortHandle(options.timeout);
};
Request.prototype.patch = function(uri, options, callback) {
options = mapOptions(options);
$http
.patch(uri, options.data, options)
.then(handleResponse(callback))
.catch(handleError(callback));
return new AbortHandle(options.timeout);
};
Request.prototype.del = function(uri, options, callback) {
options = mapOptions(options);
$http
.delete(uri, options)
.then(handleResponse(callback))
.catch(handleError(callback));
return new AbortHandle(options.timeout);
};
function mapOptions(options) {
options = options || {};
var mappedOptions = {};
mapQuery(mappedOptions, options);
mapHeaders(mappedOptions, options);
mapAuth(mappedOptions, options);
mapBody(mappedOptions, options);
mapForm(mappedOptions, options);
// do not parse JSON automatically, this will trip up Traverson
mappedOptions.transformResponse = function(data, headersGetter, status) {
return data;
};
// hook to abort the request, if necessary
mappedOptions.timeout = $q.defer();
return mappedOptions;
}
function mapQuery(mappedOptions, options) {
// options.qs would be correct since we are using request/request options
// object API, but a previous version of traverson-angular incorrectly
// used options.query instead, so we allow this also, to not break
// backwards compatibility.
var qs = options.qs || options.query;
if (qs) {
mappedOptions.params = qs;
}
}
function mapHeaders(mappedOptions, options) {
if (options.headers) {
mappedOptions.headers = options.headers;
}
}
function mapAuth(mappedOptions, options) {
var auth = options.auth;
if (auth) {
var username = auth.user || auth.username;
var password = auth.pass || auth.password;
mappedOptions.headers = mappedOptions.headers || {};
mappedOptions.headers.Authorization = 'Basic ' + btoa(username + ':' +
password);
}
}
function mapBody(mappedOptions, options) {
if (options.body) {
mappedOptions.data = options.body;
}
}
function mapForm(mappedOptions, options) {
var form = options.form;
if (form) {
mappedOptions.data = form;
mappedOptions.headers = mappedOptions.headers || {};
mappedOptions.headers['Content-Type'] =
'application/x-www-form-urlencoded';
}
}
function mapResponse(response) {
response.body = response.data;
response.headers = response.headers();
response.statusCode = response.status;
return response;
}
function handleResponse(callback) {
return function(response) {
return callback(null, mapResponse(response));
};
}
function handleError(callback) {
return function(response) {
if (response.status >= 100 && response.status < 600) {
// This happens on a completed HTTP request with a status code outside
// of the 2xx range. In the context of Traverson, this is not an
// error, in particular, if this is the last request in a traversal.
// Thus, we re-route it to the successCallback. Handling 4xx and 5xx
// errors during the traversal is the responsibility of traverson, not
// traverson-angular.
return callback(null, mapResponse(response));
} else {
// This happens on network errors, timeouts etc. In this case,
// AngularJS sets the status property to 0. In the context of
// Traverson, only these are to be interpreted as errors.
return callback(response);
}
};
}
return new Request();
}
]);
function AbortHandle(abortPromise) {
this.abortPromise = abortPromise;
this.listeners = [];
}
AbortHandle.prototype.abort = function() {
this.abortPromise.resolve();
this.listeners.forEach(function(fn) {
fn.call();
});
};
AbortHandle.prototype.on = function(event, fn) {
if (event !== 'abort') {
var error = new Error('Event ' + event + ' not supported');
error.name = 'InvalidArgumentError';
throw error;
}
this.listeners.push(fn);
};
module.exports = traversonAngular;