-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrest-resource.html
398 lines (362 loc) · 12.3 KB
/
rest-resource.html
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
<!--
Copyright (c) 2015 Gazal, https://github.com/gazal-k. All rights reserved.
This code may only be used under the BSD 3-clause license found at LICENSE.txt
-->
<!--
Portions of this code have been adapted from the `grapp-rest-resource` element.
Gazal is not affiliated with the original authors.
The original copyright notices are below.
-->
<!--
MIT License
Copyright (c) 2014-2015 Dirk Grappendorf, www.grappendorf.net
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
<link href='../iron-ajax/iron-request.html' rel='import'>
<!--
A web component that encapsulates REST API calls.
Example:
<rest-resource url="/user/:id"></rest-resource>
@demo
-->
<dom-module id='rest-resource'>
<template>
</template>
<!-- inline rest-resource.js -->
<script>Polymer({
is: 'rest-resource',
properties: {
/**
* A pattern for the REST URL. Can contain colon-parameters and data bindings, for example:
*
* `url="/users/:userId?q={{searchText}}"`
*
* Default URLS:
*
* <table>
* <tr>
* <th>Method</th>
* <th>HTTP method</th>
* <th>URL</th>
* </tr>
* <tr>
* <td>index</td>
* <td>GET</td>
* <td>/users
* <td> </tr>
* <tr>
* <td>show</td>
* <td>GET</td>
* <td>/users/1
* <td> </tr>
* <tr>
* <td>create</td>
* <td>POST</td>
* <td>/users
* <td> </tr>
* <tr>
* <td>update</td>
* <td>PUT</td>
* <td>/users
* <td> </tr>
* <tr>
* <td>destroy</td>
* <td>DELETE</td>
* <td>/users/1
* <td> </tr>
* <tr>
* <td>member foo</td>
* <td>PUT</td>
* <td>/users/1/foo
* <td> </tr>
* </table>
*
*/
url: String,
/**
* A hash that binds URL parameters to actual values, for example:
*
* `params='{{ {"userId":user.id} }}'`
*/
params: Object,
/**
* Use this URL instead of the default one for "GET /resources" requests.
*/
indexUrl: String,
/**
* Use this URL instead of the default one for "GET /resources/:id" requests.
*/
showUrl: String,
/**
* Use this URL instead of the default one for "POST /resources" requests.
*/
createUrl: String,
/**
* Use this URL instead of the default one for "PUT /resources/:id" requests.
*/
updateUrl: String,
/**
* Use this URL instead of the default one for "DELETE /resources/:id" requests.
*/
destroyUrl: String,
/**
* Use this URL instead of the default one for "PUT /resources/:id/action" requests.
*/
memberUrl: String,
/**
* Set additional headers on the request.
*/
headers: Object,
/**
* Set an authorization header with the specified token text.
*/
token: Object
},
// Element Behavior
/**
* Is fired when a REST call is initiated.
*
* @event request
* @detail {{request: Object}}
*/
/**
* Is fired when a REST call returns successful response.
*
* @event response
* @detail {{request: Object, response: Object}}
*/
/**
* Is fired when a REST call returns failure response.
*
* @event error
* @detail {{request: Object, response: Object}}
*/
_handleSuccess: function(request, successCallback) {
var me = this;
return function() {
me.fire('response', {
request: request,
response: request.response
});
return typeof successCallback === 'function' ? successCallback(request.response, request) : void 0;
};
},
_handleError: function(request, errorCallback) {
var me = this;
return function() {
me.fire('error', {
request: request,
response: request.response
});
return typeof errorCallback === 'function' ? errorCallback(request.response, request) : void 0;
};
},
_createRequest: function() {
var me = this;
var request = document.createElement('iron-request');
me.fire('request', {
request: request
});
return request;
},
/**
* The callback function to be invoked for successful response.
*
* @callback successCallback
* @param {Object} response
* @param {Object} request
*/
/**
* The callback function to be invoked for failure response.
*
* @callback errorCallback
* @param {Object} response
* @param {Object} request
*/
/**
* Performs a HTTP GET on the index URL and returns the response data.
*
* @param {successCallback} successCallback - the callback function will be invoked with response data on successful response.
* @param {errorCallback} errorCallback - the callback function will be invoked with response data on error response.
* @param {Object} queryParams - query parameters to be added to the request.
*/
index: function(successCallback, errorCallback, queryParams) {
var me = this;
var request = me._createRequest();
return request.send({
url: me._prepareUrl(me.indexUrl || me.url, me.params, queryParams),
headers: me._prepareHeaders(),
handleAs: 'json'
}).then(me._handleSuccess(request, successCallback), me._handleError(request, errorCallback));
},
/**
* Performs a HTTP GET on the show URL with the specified resource id and returns the response data.
*
* @param {String} id - the id of the resource to be fetched.
* @param {successCallback} successCallback - the callback function will be invoked with response data on successful response.
* @param {errorCallback} errorCallback - the callback function will be invoked with response data on error response.
* @param {Object} queryParams - query parameters to be added to the request.
*/
show: function(id, successCallback, errorCallback, queryParams) {
var me = this;
var request = me._createRequest();
return request.send({
url: me._prepareUrl(me.showUrl || me.url, me.params, queryParams, id),
headers: me._prepareHeaders(),
handleAs: 'json'
}).then(me._handleSuccess(request, successCallback), me._handleError(request, errorCallback));
},
/**
* Performs a HTTP POST on the create URL with the specified resource data and returns the response data.
*
* @param {Object} data - data for new resource to be created.
* @param {successCallback} successCallback - the callback function will be invoked with response data on successful response.
* @param {errorCallback} errorCallback - the callback function will be invoked with response data on error response.
* @param {Object} queryParams - query parameters to be added to the request.
*/
create: function(data, successCallback, errorCallback, queryParams) {
var me = this;
var request = me._createRequest();
return request.send({
method: 'POST',
url: me._prepareUrl(me.createUrl || me.url, me.params, queryParams),
headers: me._prepareHeaders(),
body: JSON.stringify(data),
handleAs: 'json'
}).then(me._handleSuccess(request, successCallback), me._handleError(request, errorCallback));
},
/**
* Performs a HTTP PUT on the update URL with the specified resource id and data and returns the response data.
*
* @param {String} id - the id of the resource to be updated.
* @param {Object} data - updated resource data.
* @param {successCallback} successCallback - the callback function will be invoked with response data on successful response.
* @param {errorCallback} errorCallback - the callback function will be invoked with response data on error response.
* @param {Object} queryParams - query parameters to be added to the request.
*/
update: function(id, data, successCallback, errorCallback, queryParams) {
var me = this;
var request = me._createRequest();
return request.send({
method: 'PUT',
url: me._prepareUrl(me.updateUrl || me.url, me.params, queryParams, id),
headers: me._prepareHeaders(),
body: JSON.stringify(data),
handleAs: 'json'
}).then(me._handleSuccess(request, successCallback), me._handleError(request, errorCallback));
},
/**
* Performs a HTTP DELETE on the destroy URL with the specified resource id and returns the response data.
*
* @param {String} id - the id of the resource to be destroyed.
* @param {successCallback} successCallback - the callback function will be invoked with response data on successful response.
* @param {errorCallback} errorCallback - the callback function will be invoked with response data on error response.
* @param {Object} queryParams - query parameters to be added to the request.
*/
destroy: function(id, successCallback, errorCallback, queryParams) {
var me = this;
var request = me._createRequest();
return request.send({
method: 'DELETE',
url: me._prepareUrl(me.destroyUrl || me.url, me.params, queryParams, id),
headers: me._prepareHeaders(),
handleAs: 'json'
}).then(me._handleSuccess(request, successCallback), me._handleError(request, errorCallback));
},
/**
* Performs a HTTP PUT on the member URL with "/action" appended to it and the specified resource id and returns the response data.
*
* @param {String} id - the id of the resource on which a member action is to be performed.
* @param {String} action - the url suffix for an action.
* @param {successCallback} successCallback - the callback function will be invoked with response data on successful response.
* @param {errorCallback} errorCallback - the callback function will be invoked with response data on error response.
* @param {Object} queryParams - query parameters to be added to the request.
*/
memberAction: function(id, action, successCallback, errorCallback, queryParams) {
var me = this;
var request = me._createRequest();
return request.send({
method: 'PUT',
url: me._prepareUrl(me.memberUrl || me.url, me.params, queryParams, id, action),
headers: me._prepareHeaders(),
handleAs: 'json'
}).then(me._handleSuccess(request, successCallback), me._handleError(request, errorCallback));
},
_prepareUrl: function(url, params, queryParams, id, action) {
var name;
var value;
if (params === null) {
params = {};
}
if (id === null) {
id = null;
}
if (action === null) {
action = null;
}
if (typeof params === 'string') {
params = JSON.parse(params);
}
for (name in params) {
value = params[name];
url = url.replace(':' + name, value || '');
}
for (name in queryParams) {
value = queryParams[name];
if (typeof value === 'object') {
value = JSON.stringify(value);
}
if (typeof value === 'undefined' || value === null || '' === String(value).trim()) {
continue;
}
if (-1 === url.indexOf('?')) {
url = url + '?' + name + '=' + value;
} else {
url = url + '&' + name + '=' + value;
}
}
url = url.replace(':id', id || '');
url = url.replace(/\/\/+/g, '/');
url = url.replace(/^(\w+):\//, '$1://');
url = url.replace(/\/$/, '');
if (action) {
url += '/' + action;
}
return url;
},
_prepareHeaders: function() {
var h;
var key;
var val;
var _ref;
h = {
'Accept': 'application/json',
'Content-Type': 'application/json'
};
_ref = this.headers;
for (key in _ref) {
val = _ref[key];
h[key] = val;
}
if (this.token) {
h.Authorization = this.token;
}
return h;
}
});
</script>
</dom-module>