source: cats/SCHEMAcat/trunk/urn.org.isocat.schemacat.site/site/lib/AngularJS-1.2.5/angular-resource.js @ 4192

Last change on this file since 4192 was 4192, checked in by andmor, 10 years ago

Updated to AngularJS 1.2.5

File size: 21.7 KB
Line 
1/**
2 * @license AngularJS v1.2.5
3 * (c) 2010-2014 Google, Inc. http://angularjs.org
4 * License: MIT
5 */
6(function(window, angular, undefined) {'use strict';
7
8var $resourceMinErr = angular.$$minErr('$resource');
9
10// Helper functions and regex to lookup a dotted path on an object
11// stopping at undefined/null.  The path must be composed of ASCII
12// identifiers (just like $parse)
13var MEMBER_NAME_REGEX = /^(\.[a-zA-Z_$][0-9a-zA-Z_$]*)+$/;
14
15function isValidDottedPath(path) {
16  return (path != null && path !== '' && path !== 'hasOwnProperty' &&
17      MEMBER_NAME_REGEX.test('.' + path));
18}
19
20function lookupDottedPath(obj, path) {
21  if (!isValidDottedPath(path)) {
22    throw $resourceMinErr('badmember', 'Dotted member path "@{0}" is invalid.', path);
23  }
24  var keys = path.split('.');
25  for (var i = 0, ii = keys.length; i < ii && obj !== undefined; i++) {
26    var key = keys[i];
27    obj = (obj !== null) ? obj[key] : undefined;
28  }
29  return obj;
30}
31
32/**
33 * Create a shallow copy of an object and clear other fields from the destination
34 */
35function shallowClearAndCopy(src, dst) {
36  dst = dst || {};
37
38  angular.forEach(dst, function(value, key){
39    delete dst[key];
40  });
41
42  for (var key in src) {
43    if (src.hasOwnProperty(key) && key.substr(0, 2) !== '$$') {
44      dst[key] = src[key];
45    }
46  }
47
48  return dst;
49}
50
51/**
52 * @ngdoc overview
53 * @name ngResource
54 * @description
55 *
56 * # ngResource
57 *
58 * The `ngResource` module provides interaction support with RESTful services
59 * via the $resource service.
60 *
61 * {@installModule resource}
62 *
63 * <div doc-module-components="ngResource"></div>
64 *
65 * See {@link ngResource.$resource `$resource`} for usage.
66 */
67
68/**
69 * @ngdoc object
70 * @name ngResource.$resource
71 * @requires $http
72 *
73 * @description
74 * A factory which creates a resource object that lets you interact with
75 * [RESTful](http://en.wikipedia.org/wiki/Representational_State_Transfer) server-side data sources.
76 *
77 * The returned resource object has action methods which provide high-level behaviors without
78 * the need to interact with the low level {@link ng.$http $http} service.
79 *
80 * Requires the {@link ngResource `ngResource`} module to be installed.
81 *
82 * @param {string} url A parametrized URL template with parameters prefixed by `:` as in
83 *   `/user/:username`. If you are using a URL with a port number (e.g.
84 *   `http://example.com:8080/api`), it will be respected.
85 *
86 *   If you are using a url with a suffix, just add the suffix, like this:
87 *   `$resource('http://example.com/resource.json')` or `$resource('http://example.com/:id.json')`
88 *   or even `$resource('http://example.com/resource/:resource_id.:format')`
89 *   If the parameter before the suffix is empty, :resource_id in this case, then the `/.` will be
90 *   collapsed down to a single `.`.  If you need this sequence to appear and not collapse then you
91 *   can escape it with `/\.`.
92 *
93 * @param {Object=} paramDefaults Default values for `url` parameters. These can be overridden in
94 *   `actions` methods. If any of the parameter value is a function, it will be executed every time
95 *   when a param value needs to be obtained for a request (unless the param was overridden).
96 *
97 *   Each key value in the parameter object is first bound to url template if present and then any
98 *   excess keys are appended to the url search query after the `?`.
99 *
100 *   Given a template `/path/:verb` and parameter `{verb:'greet', salutation:'Hello'}` results in
101 *   URL `/path/greet?salutation=Hello`.
102 *
103 *   If the parameter value is prefixed with `@` then the value of that parameter is extracted from
104 *   the data object (useful for non-GET operations).
105 *
106 * @param {Object.<Object>=} actions Hash with declaration of custom action that should extend the
107 *   default set of resource actions. The declaration should be created in the format of {@link
108 *   ng.$http#usage_parameters $http.config}:
109 *
110 *       {action1: {method:?, params:?, isArray:?, headers:?, ...},
111 *        action2: {method:?, params:?, isArray:?, headers:?, ...},
112 *        ...}
113 *
114 *   Where:
115 *
116 *   - **`action`** – {string} – The name of action. This name becomes the name of the method on
117 *     your resource object.
118 *   - **`method`** – {string} – HTTP request method. Valid methods are: `GET`, `POST`, `PUT`,
119 *     `DELETE`, and `JSONP`.
120 *   - **`params`** – {Object=} – Optional set of pre-bound parameters for this action. If any of
121 *     the parameter value is a function, it will be executed every time when a param value needs to
122 *     be obtained for a request (unless the param was overridden).
123 *   - **`url`** – {string} – action specific `url` override. The url templating is supported just
124 *     like for the resource-level urls.
125 *   - **`isArray`** – {boolean=} – If true then the returned object for this action is an array,
126 *     see `returns` section.
127 *   - **`transformRequest`** –
128 *     `{function(data, headersGetter)|Array.<function(data, headersGetter)>}` –
129 *     transform function or an array of such functions. The transform function takes the http
130 *     request body and headers and returns its transformed (typically serialized) version.
131 *   - **`transformResponse`** –
132 *     `{function(data, headersGetter)|Array.<function(data, headersGetter)>}` –
133 *     transform function or an array of such functions. The transform function takes the http
134 *     response body and headers and returns its transformed (typically deserialized) version.
135 *   - **`cache`** – `{boolean|Cache}` – If true, a default $http cache will be used to cache the
136 *     GET request, otherwise if a cache instance built with
137 *     {@link ng.$cacheFactory $cacheFactory}, this cache will be used for
138 *     caching.
139 *   - **`timeout`** – `{number|Promise}` – timeout in milliseconds, or {@link ng.$q promise} that
140 *     should abort the request when resolved.
141 *   - **`withCredentials`** - `{boolean}` - whether to set the `withCredentials` flag on the
142 *     XHR object. See {@link https://developer.mozilla.org/en/http_access_control#section_5
143 *     requests with credentials} for more information.
144 *   - **`responseType`** - `{string}` - see {@link
145 *     https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest#responseType requestType}.
146 *   - **`interceptor`** - `{Object=}` - The interceptor object has two optional methods -
147 *     `response` and `responseError`. Both `response` and `responseError` interceptors get called
148 *     with `http response` object. See {@link ng.$http $http interceptors}.
149 *
150 * @returns {Object} A resource "class" object with methods for the default set of resource actions
151 *   optionally extended with custom `actions`. The default set contains these actions:
152 *
153 *       { 'get':    {method:'GET'},
154 *         'save':   {method:'POST'},
155 *         'query':  {method:'GET', isArray:true},
156 *         'remove': {method:'DELETE'},
157 *         'delete': {method:'DELETE'} };
158 *
159 *   Calling these methods invoke an {@link ng.$http} with the specified http method,
160 *   destination and parameters. When the data is returned from the server then the object is an
161 *   instance of the resource class. The actions `save`, `remove` and `delete` are available on it
162 *   as  methods with the `$` prefix. This allows you to easily perform CRUD operations (create,
163 *   read, update, delete) on server-side data like this:
164 *   <pre>
165        var User = $resource('/user/:userId', {userId:'@id'});
166        var user = User.get({userId:123}, function() {
167          user.abc = true;
168          user.$save();
169        });
170     </pre>
171 *
172 *   It is important to realize that invoking a $resource object method immediately returns an
173 *   empty reference (object or array depending on `isArray`). Once the data is returned from the
174 *   server the existing reference is populated with the actual data. This is a useful trick since
175 *   usually the resource is assigned to a model which is then rendered by the view. Having an empty
176 *   object results in no rendering, once the data arrives from the server then the object is
177 *   populated with the data and the view automatically re-renders itself showing the new data. This
178 *   means that in most cases one never has to write a callback function for the action methods.
179 *
180 *   The action methods on the class object or instance object can be invoked with the following
181 *   parameters:
182 *
183 *   - HTTP GET "class" actions: `Resource.action([parameters], [success], [error])`
184 *   - non-GET "class" actions: `Resource.action([parameters], postData, [success], [error])`
185 *   - non-GET instance actions:  `instance.$action([parameters], [success], [error])`
186 *
187 *   Success callback is called with (value, responseHeaders) arguments. Error callback is called
188 *   with (httpResponse) argument.
189 *
190 *   Class actions return empty instance (with additional properties below).
191 *   Instance actions return promise of the action.
192 *
193 *   The Resource instances and collection have these additional properties:
194 *
195 *   - `$promise`: the {@link ng.$q promise} of the original server interaction that created this
196 *     instance or collection.
197 *
198 *     On success, the promise is resolved with the same resource instance or collection object,
199 *     updated with data from server. This makes it easy to use in
200 *     {@link ngRoute.$routeProvider resolve section of $routeProvider.when()} to defer view
201 *     rendering until the resource(s) are loaded.
202 *
203 *     On failure, the promise is resolved with the {@link ng.$http http response} object, without
204 *     the `resource` property.
205 *
206 *   - `$resolved`: `true` after first server interaction is completed (either with success or
207 *      rejection), `false` before that. Knowing if the Resource has been resolved is useful in
208 *      data-binding.
209 *
210 * @example
211 *
212 * # Credit card resource
213 *
214 * <pre>
215     // Define CreditCard class
216     var CreditCard = $resource('/user/:userId/card/:cardId',
217      {userId:123, cardId:'@id'}, {
218       charge: {method:'POST', params:{charge:true}}
219      });
220
221     // We can retrieve a collection from the server
222     var cards = CreditCard.query(function() {
223       // GET: /user/123/card
224       // server returns: [ {id:456, number:'1234', name:'Smith'} ];
225
226       var card = cards[0];
227       // each item is an instance of CreditCard
228       expect(card instanceof CreditCard).toEqual(true);
229       card.name = "J. Smith";
230       // non GET methods are mapped onto the instances
231       card.$save();
232       // POST: /user/123/card/456 {id:456, number:'1234', name:'J. Smith'}
233       // server returns: {id:456, number:'1234', name: 'J. Smith'};
234
235       // our custom method is mapped as well.
236       card.$charge({amount:9.99});
237       // POST: /user/123/card/456?amount=9.99&charge=true {id:456, number:'1234', name:'J. Smith'}
238     });
239
240     // we can create an instance as well
241     var newCard = new CreditCard({number:'0123'});
242     newCard.name = "Mike Smith";
243     newCard.$save();
244     // POST: /user/123/card {number:'0123', name:'Mike Smith'}
245     // server returns: {id:789, number:'01234', name: 'Mike Smith'};
246     expect(newCard.id).toEqual(789);
247 * </pre>
248 *
249 * The object returned from this function execution is a resource "class" which has "static" method
250 * for each action in the definition.
251 *
252 * Calling these methods invoke `$http` on the `url` template with the given `method`, `params` and
253 * `headers`.
254 * When the data is returned from the server then the object is an instance of the resource type and
255 * all of the non-GET methods are available with `$` prefix. This allows you to easily support CRUD
256 * operations (create, read, update, delete) on server-side data.
257
258   <pre>
259     var User = $resource('/user/:userId', {userId:'@id'});
260     var user = User.get({userId:123}, function() {
261       user.abc = true;
262       user.$save();
263     });
264   </pre>
265 *
266 * It's worth noting that the success callback for `get`, `query` and other methods gets passed
267 * in the response that came from the server as well as $http header getter function, so one
268 * could rewrite the above example and get access to http headers as:
269 *
270   <pre>
271     var User = $resource('/user/:userId', {userId:'@id'});
272     User.get({userId:123}, function(u, getResponseHeaders){
273       u.abc = true;
274       u.$save(function(u, putResponseHeaders) {
275         //u => saved user object
276         //putResponseHeaders => $http header getter
277       });
278     });
279   </pre>
280 */
281angular.module('ngResource', ['ng']).
282  factory('$resource', ['$http', '$q', function($http, $q) {
283
284    var DEFAULT_ACTIONS = {
285      'get':    {method:'GET'},
286      'save':   {method:'POST'},
287      'query':  {method:'GET', isArray:true},
288      'remove': {method:'DELETE'},
289      'delete': {method:'DELETE'}
290    };
291    var noop = angular.noop,
292        forEach = angular.forEach,
293        extend = angular.extend,
294        copy = angular.copy,
295        isFunction = angular.isFunction;
296
297    /**
298     * We need our custom method because encodeURIComponent is too aggressive and doesn't follow
299     * http://www.ietf.org/rfc/rfc3986.txt with regards to the character set (pchar) allowed in path
300     * segments:
301     *    segment       = *pchar
302     *    pchar         = unreserved / pct-encoded / sub-delims / ":" / "@"
303     *    pct-encoded   = "%" HEXDIG HEXDIG
304     *    unreserved    = ALPHA / DIGIT / "-" / "." / "_" / "~"
305     *    sub-delims    = "!" / "$" / "&" / "'" / "(" / ")"
306     *                     / "*" / "+" / "," / ";" / "="
307     */
308    function encodeUriSegment(val) {
309      return encodeUriQuery(val, true).
310        replace(/%26/gi, '&').
311        replace(/%3D/gi, '=').
312        replace(/%2B/gi, '+');
313    }
314
315
316    /**
317     * This method is intended for encoding *key* or *value* parts of query component. We need a
318     * custom method because encodeURIComponent is too aggressive and encodes stuff that doesn't
319     * have to be encoded per http://tools.ietf.org/html/rfc3986:
320     *    query       = *( pchar / "/" / "?" )
321     *    pchar         = unreserved / pct-encoded / sub-delims / ":" / "@"
322     *    unreserved    = ALPHA / DIGIT / "-" / "." / "_" / "~"
323     *    pct-encoded   = "%" HEXDIG HEXDIG
324     *    sub-delims    = "!" / "$" / "&" / "'" / "(" / ")"
325     *                     / "*" / "+" / "," / ";" / "="
326     */
327    function encodeUriQuery(val, pctEncodeSpaces) {
328      return encodeURIComponent(val).
329        replace(/%40/gi, '@').
330        replace(/%3A/gi, ':').
331        replace(/%24/g, '$').
332        replace(/%2C/gi, ',').
333        replace(/%20/g, (pctEncodeSpaces ? '%20' : '+'));
334    }
335
336    function Route(template, defaults) {
337      this.template = template;
338      this.defaults = defaults || {};
339      this.urlParams = {};
340    }
341
342    Route.prototype = {
343      setUrlParams: function(config, params, actionUrl) {
344        var self = this,
345            url = actionUrl || self.template,
346            val,
347            encodedVal;
348
349        var urlParams = self.urlParams = {};
350        forEach(url.split(/\W/), function(param){
351          if (param === 'hasOwnProperty') {
352            throw $resourceMinErr('badname', "hasOwnProperty is not a valid parameter name.");
353          }
354          if (!(new RegExp("^\\d+$").test(param)) && param &&
355               (new RegExp("(^|[^\\\\]):" + param + "(\\W|$)").test(url))) {
356            urlParams[param] = true;
357          }
358        });
359        url = url.replace(/\\:/g, ':');
360
361        params = params || {};
362        forEach(self.urlParams, function(_, urlParam){
363          val = params.hasOwnProperty(urlParam) ? params[urlParam] : self.defaults[urlParam];
364          if (angular.isDefined(val) && val !== null) {
365            encodedVal = encodeUriSegment(val);
366            url = url.replace(new RegExp(":" + urlParam + "(\\W|$)", "g"), encodedVal + "$1");
367          } else {
368            url = url.replace(new RegExp("(\/?):" + urlParam + "(\\W|$)", "g"), function(match,
369                leadingSlashes, tail) {
370              if (tail.charAt(0) == '/') {
371                return tail;
372              } else {
373                return leadingSlashes + tail;
374              }
375            });
376          }
377        });
378
379        // strip trailing slashes and set the url
380        url = url.replace(/\/+$/, '');
381        // then replace collapse `/.` if found in the last URL path segment before the query
382        // E.g. `http://url.com/id./format?q=x` becomes `http://url.com/id.format?q=x`
383        url = url.replace(/\/\.(?=\w+($|\?))/, '.');
384        // replace escaped `/\.` with `/.`
385        config.url = url.replace(/\/\\\./, '/.');
386
387
388        // set params - delegate param encoding to $http
389        forEach(params, function(value, key){
390          if (!self.urlParams[key]) {
391            config.params = config.params || {};
392            config.params[key] = value;
393          }
394        });
395      }
396    };
397
398
399    function resourceFactory(url, paramDefaults, actions) {
400      var route = new Route(url);
401
402      actions = extend({}, DEFAULT_ACTIONS, actions);
403
404      function extractParams(data, actionParams){
405        var ids = {};
406        actionParams = extend({}, paramDefaults, actionParams);
407        forEach(actionParams, function(value, key){
408          if (isFunction(value)) { value = value(); }
409          ids[key] = value && value.charAt && value.charAt(0) == '@' ?
410            lookupDottedPath(data, value.substr(1)) : value;
411        });
412        return ids;
413      }
414
415      function defaultResponseInterceptor(response) {
416        return response.resource;
417      }
418
419      function Resource(value){
420        shallowClearAndCopy(value || {}, this);
421      }
422
423      forEach(actions, function(action, name) {
424        var hasBody = /^(POST|PUT|PATCH)$/i.test(action.method);
425
426        Resource[name] = function(a1, a2, a3, a4) {
427          var params = {}, data, success, error;
428
429          /* jshint -W086 */ /* (purposefully fall through case statements) */
430          switch(arguments.length) {
431          case 4:
432            error = a4;
433            success = a3;
434            //fallthrough
435          case 3:
436          case 2:
437            if (isFunction(a2)) {
438              if (isFunction(a1)) {
439                success = a1;
440                error = a2;
441                break;
442              }
443
444              success = a2;
445              error = a3;
446              //fallthrough
447            } else {
448              params = a1;
449              data = a2;
450              success = a3;
451              break;
452            }
453          case 1:
454            if (isFunction(a1)) success = a1;
455            else if (hasBody) data = a1;
456            else params = a1;
457            break;
458          case 0: break;
459          default:
460            throw $resourceMinErr('badargs',
461              "Expected up to 4 arguments [params, data, success, error], got {0} arguments",
462              arguments.length);
463          }
464          /* jshint +W086 */ /* (purposefully fall through case statements) */
465
466          var isInstanceCall = this instanceof Resource;
467          var value = isInstanceCall ? data : (action.isArray ? [] : new Resource(data));
468          var httpConfig = {};
469          var responseInterceptor = action.interceptor && action.interceptor.response ||
470                                    defaultResponseInterceptor;
471          var responseErrorInterceptor = action.interceptor && action.interceptor.responseError ||
472                                    undefined;
473
474          forEach(action, function(value, key) {
475            if (key != 'params' && key != 'isArray' && key != 'interceptor') {
476              httpConfig[key] = copy(value);
477            }
478          });
479
480          if (hasBody) httpConfig.data = data;
481          route.setUrlParams(httpConfig,
482                             extend({}, extractParams(data, action.params || {}), params),
483                             action.url);
484
485          var promise = $http(httpConfig).then(function(response) {
486            var data = response.data,
487                promise = value.$promise;
488
489            if (data) {
490              // Need to convert action.isArray to boolean in case it is undefined
491              // jshint -W018
492              if (angular.isArray(data) !== (!!action.isArray)) {
493                throw $resourceMinErr('badcfg', 'Error in resource configuration. Expected ' +
494                  'response to contain an {0} but got an {1}',
495                  action.isArray?'array':'object', angular.isArray(data)?'array':'object');
496              }
497              // jshint +W018
498              if (action.isArray) {
499                value.length = 0;
500                forEach(data, function(item) {
501                  value.push(new Resource(item));
502                });
503              } else {
504                shallowClearAndCopy(data, value);
505                value.$promise = promise;
506              }
507            }
508
509            value.$resolved = true;
510
511            response.resource = value;
512
513            return response;
514          }, function(response) {
515            value.$resolved = true;
516
517            (error||noop)(response);
518
519            return $q.reject(response);
520          });
521
522          promise = promise.then(
523              function(response) {
524                var value = responseInterceptor(response);
525                (success||noop)(value, response.headers);
526                return value;
527              },
528              responseErrorInterceptor);
529
530          if (!isInstanceCall) {
531            // we are creating instance / collection
532            // - set the initial promise
533            // - return the instance / collection
534            value.$promise = promise;
535            value.$resolved = false;
536
537            return value;
538          }
539
540          // instance call
541          return promise;
542        };
543
544
545        Resource.prototype['$' + name] = function(params, success, error) {
546          if (isFunction(params)) {
547            error = success; success = params; params = {};
548          }
549          var result = Resource[name].call(this, params, this, success, error);
550          return result.$promise || result;
551        };
552      });
553
554      Resource.bind = function(additionalParamDefaults){
555        return resourceFactory(url, extend({}, paramDefaults, additionalParamDefaults), actions);
556      };
557
558      return Resource;
559    }
560
561    return resourceFactory;
562  }]);
563
564
565})(window, window.angular);
Note: See TracBrowser for help on using the repository browser.