-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathhttp.js
427 lines (398 loc) · 12.6 KB
/
http.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
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
425
426
427
/**
* @doc function
* @id DSHttpAdapterProvider
* @name DSHttpAdapterProvider
*/
function DSHttpAdapterProvider() {
/**
* @doc property
* @id DSHttpAdapterProvider.properties:defaults
* @name defaults
* @description
* Default configuration for this adapter.
*
* Properties:
*
* - `{function}` - `queryTransform` - See [the guide](/documentation/guide/adapters/index). Default: No-op.
*/
var defaults = this.defaults = {
/**
* @doc property
* @id DSHttpAdapterProvider.properties:defaults.queryTransform
* @name defaults.queryTransform
* @description
* Transform the angular-data query to something your server understands. You might just do this on the server instead.
*
* @param {string} resourceName The name of the resource.
* @param {object} params Params sent through from `$http()`.
* @returns {*} Returns `params` as-is.
*/
queryTransform: function (resourceName, params) {
return params;
}
};
this.$get = ['$http', '$log', 'DSUtils', function ($http, $log, DSUtils) {
/**
* @doc interface
* @id DSHttpAdapter
* @name DSHttpAdapter
* @description
* Default adapter used by angular-data. This adapter uses AJAX and JSON to send/retrieve data to/from a server.
* Developers may provide custom adapters that implement the adapter interface.
*/
return {
/**
* @doc property
* @id DSHttpAdapter.properties:defaults
* @name defaults
* @description
* Reference to [DSHttpAdapterProvider.defaults](/documentation/api/api/DSHttpAdapterProvider.properties:defaults).
*/
defaults: defaults,
/**
* @doc method
* @id DSHttpAdapter.methods:HTTP
* @name HTTP
* @description
* Wrapper for `$http()`.
*
* ## Signature:
* ```js
* DS.HTTP(config)
* ```
*
* ## Example:
*
* ```js
* works the same as $http()
* ```
*
* @param {object} config Configuration for the request.
* @returns {Promise} Promise produced by the `$q` service.
*/
HTTP: HTTP,
/**
* @doc method
* @id DSHttpAdapter.methods:GET
* @name GET
* @description
* Wrapper for `$http.get()`.
*
* ## Signature:
* ```js
* DS.GET(url[, config])
* ```
*
* ## Example:
*
* ```js
* Works the same as $http.get()
* ```
*
* @param {string} url The url of the request.
* @param {object=} config Configuration for the request.
* @returns {Promise} Promise produced by the `$q` service.
*/
GET: GET,
/**
* @doc method
* @id DSHttpAdapter.methods:POST
* @name POST
* @description
* Wrapper for `$http.post()`.
*
* ## Signature:
* ```js
* DS.POST(url[, attrs][, config])
* ```
*
* ## Example:
*
* ```js
* Works the same as $http.post()
* ```
*
* @param {string} url The url of the request.
* @param {object=} attrs Request payload.
* @param {object=} config Configuration for the request.
* @returns {Promise} Promise produced by the `$q` service.
*/
POST: POST,
/**
* @doc method
* @id DSHttpAdapter.methods:PUT
* @name PUT
* @description
* Wrapper for `$http.put()`.
*
* ## Signature:
* ```js
* DS.PUT(url[, attrs][, config])
* ```
*
* ## Example:
*
* ```js
* Works the same as $http.put()
* ```
*
* @param {string} url The url of the request.
* @param {object=} attrs Request payload.
* @param {object=} config Configuration for the request.
* @returns {Promise} Promise produced by the `$q` service.
*/
PUT: PUT,
/**
* @doc method
* @id DSHttpAdapter.methods:DEL
* @name DEL
* @description
* Wrapper for `$http.delete()`.
*
* ## Signature:
* ```js
* DS.DEL(url[, config])
* ```
*
* ## Example:
*
* ```js
* Works the same as $http.delete
* ```
*
* @param {string} url The url of the request.
* @param {object} config Configuration for the request.
* @returns {Promise} Promise produced by the `$q` service.
*/
DEL: DEL,
/**
* @doc method
* @id DSHttpAdapter.methods:find
* @name find
* @description
* Retrieve a single entity from the server.
*
* Sends a `GET` request to `:baseUrl/:endpoint/:id`.
*
* @param {object} resourceConfig Properties:
* - `{string}` - `baseUrl` - Base url.
* - `{string=}` - `endpoint` - Endpoint path for the resource.
* @param {string|number} id The primary key of the entity to retrieve.
* @param {object=} options Optional configuration. Refer to the documentation for `$http.get`.
* @returns {Promise} Promise.
*/
find: find,
/**
* @doc method
* @id DSHttpAdapter.methods:findAll
* @name findAll
* @description
* Retrieve a collection of entities from the server.
*
* Sends a `GET` request to `:baseUrl/:endpoint`.
*
*
* @param {object} resourceConfig Properties:
* - `{string}` - `baseUrl` - Base url.
* - `{string=}` - `endpoint` - Endpoint path for the resource.
* @param {object=} params Search query parameters. See the [query guide](/documentation/guide/queries/index).
* @param {object=} options Optional configuration. Refer to the documentation for `$http.get`.
* @returns {Promise} Promise.
*/
findAll: findAll,
/**
* @doc method
* @id DSHttpAdapter.methods:findAll
* @name find
* @description
* Create a new entity on the server.
*
* Sends a `POST` request to `:baseUrl/:endpoint`.
*
* @param {object} resourceConfig Properties:
* - `{string}` - `baseUrl` - Base url.
* - `{string=}` - `endpoint` - Endpoint path for the resource.
* @param {object=} params Search query parameters. See the [query guide](/documentation/guide/queries/index).
* @param {object=} options Optional configuration. Refer to the documentation for `$http.post`.
* @returns {Promise} Promise.
*/
create: create,
/**
* @doc method
* @id DSHttpAdapter.methods:update
* @name update
* @description
* Update an entity on the server.
*
* Sends a `PUT` request to `:baseUrl/:endpoint/:id`.
*
* @param {object} resourceConfig Properties:
* - `{string}` - `baseUrl` - Base url.
* - `{string=}` - `endpoint` - Endpoint path for the resource.
* @param {string|number} id The primary key of the entity to update.
* @param {object} attrs The attributes with which to update the entity. See the [query guide](/documentation/guide/queries/index).
* @param {object=} options Optional configuration. Refer to the documentation for `$http.put`.
* @returns {Promise} Promise.
*/
update: update,
/**
* @doc method
* @id DSHttpAdapter.methods:updateAll
* @name updateAll
* @description
* Update a collection of entities on the server.
*
* Sends a `PUT` request to `:baseUrl/:endpoint`.
*
*
* @param {object} resourceConfig Properties:
* - `{string}` - `baseUrl` - Base url.
* - `{string=}` - `endpoint` - Endpoint path for the resource.
* @param {object=} params Search query parameters. See the [query guide](/documentation/guide/queries/index).
* @param {object=} options Optional configuration. Refer to the documentation for `$http.put`.
* @returns {Promise} Promise.
*/
updateAll: updateAll,
/**
* @doc method
* @id DSHttpAdapter.methods:destroy
* @name destroy
* @description
* destroy an entity on the server.
*
* Sends a `PUT` request to `:baseUrl/:endpoint/:id`.
*
* @param {object} resourceConfig Properties:
* - `{string}` - `baseUrl` - Base url.
* - `{string=}` - `endpoint` - Endpoint path for the resource.
* @param {string|number} id The primary key of the entity to destroy.
* @param {object=} options Optional configuration. Refer to the documentation for `$http.delete`.
* @returns {Promise} Promise.
*/
destroy: destroy,
/**
* @doc method
* @id DSHttpAdapter.methods:destroyAll
* @name destroyAll
* @description
* Retrieve a collection of entities from the server.
*
* Sends a `DELETE` request to `:baseUrl/:endpoint`.
*
*
* @param {object} resourceConfig Properties:
* - `{string}` - `baseUrl` - Base url.
* - `{string=}` - `endpoint` - Endpoint path for the resource.
* @param {object=} params Search query parameters. See the [query guide](/documentation/guide/queries/index).
* @param {object=} options Optional configuration. Refer to the documentation for `$http.delete`.
* @returns {Promise} Promise.
*/
destroyAll: destroyAll
};
function HTTP(config) {
var start = new Date().getTime();
return $http(config).then(function (data) {
$log.debug(data.config.method + ' request:' + data.config.url + ' Time taken: ' + (new Date().getTime() - start) + 'ms', arguments);
return data;
});
}
function GET(url, config) {
config = config || {};
return HTTP(DSUtils.deepMixIn(config, {
url: url,
method: 'GET'
}));
}
function POST(url, attrs, config) {
config = config || {};
return HTTP(DSUtils.deepMixIn(config, {
url: url,
data: attrs,
method: 'POST'
}));
}
function PUT(url, attrs, config) {
config = config || {};
return HTTP(DSUtils.deepMixIn(config, {
url: url,
data: attrs,
method: 'PUT'
}));
}
function DEL(url, config) {
config = config || {};
return this.HTTP(DSUtils.deepMixIn(config, {
url: url,
method: 'DELETE'
}));
}
function create(resourceConfig, attrs, options) {
options = options || {};
return this.POST(
DSUtils.makePath(options.baseUrl || resourceConfig.baseUrl, resourceConfig.endpoint),
attrs,
options
);
}
function destroy(resourceConfig, id, options) {
options = options || {};
return this.DEL(
DSUtils.makePath(options.baseUrl || resourceConfig.baseUrl, resourceConfig.endpoint, id),
options
);
}
function destroyAll(resourceConfig, params, options) {
options = options || {};
options.params = options.params || {};
if (params) {
params = defaults.queryTransform(resourceConfig.name, params);
DSUtils.deepMixIn(options.params, params);
}
return this.DEL(
DSUtils.makePath(options.baseUrl || resourceConfig.baseUrl, resourceConfig.endpoint),
options
);
}
function find(resourceConfig, id, options) {
options = options || {};
return this.GET(
DSUtils.makePath(options.baseUrl || resourceConfig.baseUrl, resourceConfig.endpoint, id),
options
);
}
function findAll(resourceConfig, params, options) {
options = options || {};
options.params = options.params || {};
if (params) {
params = defaults.queryTransform(resourceConfig.name, params);
DSUtils.deepMixIn(options.params, params);
}
return this.GET(
DSUtils.makePath(options.baseUrl || resourceConfig.baseUrl, resourceConfig.endpoint),
options
);
}
function update(resourceConfig, id, attrs, options) {
options = options || {};
return this.PUT(
DSUtils.makePath(options.baseUrl || resourceConfig.baseUrl, resourceConfig.endpoint, id),
attrs,
options
);
}
function updateAll(resourceConfig, attrs, params, options) {
options = options || {};
options.params = options.params || {};
if (params) {
params = defaults.queryTransform(resourceConfig.name, params);
DSUtils.deepMixIn(options.params, params);
}
return this.PUT(
DSUtils.makePath(options.baseUrl || resourceConfig.baseUrl, resourceConfig.endpoint),
attrs,
options
);
}
}];
}
module.exports = DSHttpAdapterProvider;