/** * Restfull Resources service for AngularJS apps * @version v0.7.3 - 2013-05-31 * @link https://github.com/mgonto/restangular * @author Martin Gontovnikas * @license MIT License, http://www.opensource.org/licenses/MIT */ (function(){ var module = angular.module('restangular', ['ngResource']); module.provider('Restangular', function() { // Configuration var provider = this; /** * Those are HTTP safe methods for which there is no need to pass any data with the request. */ var safeMethods= ["get", "head", "options", "trace"]; function isSafe(operation) { return _.contains(safeMethods, operation); } /** * This is the BaseURL to be used with Restangular */ var baseUrl = ""; this.setBaseUrl = function(newBaseUrl) { baseUrl = newBaseUrl; } /** * Sets the extra fields to keep from the parents */ var extraFields = []; this.setExtraFields = function(newExtraFields) { extraFields = newExtraFields; } /** * Some default $http parameter to be used in EVERY call **/ var defaultHttpFields = {}; this.setDefaultHttpFields = function(values) { defaultHttpFields = values; } function withHttpDefaults(obj) { return _.defaults(obj, defaultHttpFields); } var defaultRequestParams = {}; this.setDefaultRequestParams = function(values) { defaultRequestParams = values; } /** * Method overriders will set which methods are sent via POST with an X-HTTP-Method-Override **/ var methodOverriders = []; this.setMethodOverriders = function(values) { var overriders = _.extend([], values); if (isOverridenMethod('delete', overriders)) { overriders.push("remove"); } methodOverriders = overriders; } var isOverridenMethod = function(method, values) { var search = values || methodOverriders; return !_.isUndefined(_.find(search, function(one) { return one.toLowerCase() === method.toLowerCase(); })); } /** * Sets the URL creator type. For now, only Path is created. In the future we'll have queryParams **/ var urlCreator = "path"; this.setUrlCreator = function(name) { if (!_.has(urlCreatorFactory, name)) { throw new Error("URL Path selected isn't valid"); } urlCreator = name; } /** * You can set the restangular fields here. The 3 required fields for Restangular are: * * id: Id of the element * route: name of the route of this element * parentResource: the reference to the parent resource * * All of this fields except for id, are handled (and created) by Restangular. By default, * the field values will be id, route and parentResource respectively */ var restangularFields = { id: "id", route: "route", parentResource: "parentResource", restangularCollection: "restangularCollection", what: "restangularWhat" } this.setRestangularFields = function(resFields) { restangularFields = _.extend(restangularFields, resFields); } var setIdToElem = function(elem, id) { var properties = restangularFields.id.split('.'); var idValue = elem; _.each(_.initial(properties), function(prop) { idValue[prop] = {}; idValue = idValue[prop]; }); idValue[_.last(properties)] = id; } var getIdFromElem = function(elem) { var properties = restangularFields.id.split('.'); var idValue = angular.copy(elem); _.each(properties, function(prop) { idValue = idValue[prop]; }); return idValue; } /** * Sets the Response parser. This is used in case your response isn't directly the data. * For example if you have a response like {meta: {'meta'}, data: {name: 'Gonto'}} * you can extract this data which is the one that needs wrapping * * The ResponseExtractor is a function that receives the response and the method executed. */ var responseExtractor = function(response) { return response; } this.setResponseExtractor = function(extractor) { responseExtractor = extractor; } this.setResponseInterceptor = this.setResponseExtractor; /** * Request interceptor is called before sending an object to the server. */ var requestInterceptor = function(element) { return element; } this.setRequestInterceptor = function(interceptor) { requestInterceptor = interceptor; } /** * This method is called after an element has been "Restangularized". * * It receives the element, a boolean indicating if it's an element or a collection * and the name of the model * */ var onElemRestangularized = function(elem) { return elem; } this.setOnElemRestangularized = function(post) { onElemRestangularized = post; } /** * Sets the getList type. The getList returns an Array most of the time as it's a collection of values. * However, sometimes you have metadata and in that cases, the getList ISN'T an array. * By default, it's going to be set as array */ var listTypeIsArray = true; this.setListTypeIsArray = function(val) { listTypeIsArray = val; }; /** * This lets you set a suffix to every request. * * For example, if your api requires that for JSon requests you do /users/123.json, you can set that * in here. * * * By default, the suffix is null */ var suffix = null; this.setRequestSuffix = function(newSuffix) { suffix = newSuffix; } /** * Add element transformers for certain routes. */ var transformers = {}; this.addElementTransformer = function(type, secondArg, thirdArg) { var isCollection = null; var transformer = null; if (arguments.length === 2) { transformer = secondArg; } else { transformer = thirdArg; isCollection = secondArg; } var typeTransformers = transformers[type]; if (!typeTransformers) { typeTransformers = transformers[type] = []; } typeTransformers.push(function(coll, elem) { if (_.isNull(isCollection) || (coll == isCollection)) { return transformer(elem); } return elem; }) } function transformElem(elem, isCollection, route) { var typeTransformers = transformers[route]; var changedElem = elem; if (typeTransformers) { _.each(typeTransformers, function(transformer) { changedElem = transformer(isCollection, changedElem); }); } return onElemRestangularized(changedElem, isCollection, route); } //Internal values and functions var urlCreatorFactory = {}; /** * Base URL Creator. Base prototype for everything related to it **/ var BaseCreator = function() { }; BaseCreator.prototype.parentsArray = function(current) { var parents = []; while(!_.isUndefined(current)) { parents.push(current); current = current[restangularFields.parentResource]; } return parents.reverse(); } BaseCreator.prototype.resource = function(current, $resource, headers, params) { var url = this.base(current); url += params[restangularFields.what] ? ("/:" + restangularFields.what) : ''; url += (suffix || ''); return $resource(url, {}, { getList: withHttpDefaults({method: 'GET', params: defaultRequestParams, isArray: listTypeIsArray, headers: headers || {}}), get: withHttpDefaults({method: 'GET', params: defaultRequestParams, isArray: false, headers: headers || {}}), put: withHttpDefaults({method: 'PUT', params: defaultRequestParams, isArray: false, headers: headers || {}}), post: withHttpDefaults({method: 'POST', params: defaultRequestParams, isArray: false, headers: headers || {}}), remove: withHttpDefaults({method: 'DELETE', params: defaultRequestParams, isArray: false, headers: headers || {}}), head: withHttpDefaults({method: 'HEAD', params: defaultRequestParams, isArray: false, headers: headers || {}}), trace: withHttpDefaults({method: 'TRACE', params: defaultRequestParams, isArray: false, headers: headers || {}}), options: withHttpDefaults({method: 'OPTIONS', params: defaultRequestParams, isArray: false, headers: headers || {}}), patch: withHttpDefaults({method: 'PATCH', params: defaultRequestParams, isArray: false, headers: headers || {}}) }); } /** * This is the Path URL creator. It uses Path to show Hierarchy in the Rest API. * This means that if you have an Account that then has a set of Buildings, a URL to a building * would be /accounts/123/buildings/456 **/ var Path = function() { }; Path.prototype = new BaseCreator(); Path.prototype.base = function(current) { return baseUrl + _.reduce(this.parentsArray(current), function(acum, elem) { var currUrl = acum + "/" + elem[restangularFields.route]; if (!elem[restangularFields.restangularCollection]) { currUrl += "/" + getIdFromElem(elem); } return currUrl; }, ''); } Path.prototype.fetchUrl = function(current, params) { var baseUrl = this.base(current); if (params && params[restangularFields.what]) { baseUrl += "/" + params[restangularFields.what]; } return baseUrl; } urlCreatorFactory.path = Path; this.$get = ['$resource', '$q', function($resource, $q) { var urlHandler = new urlCreatorFactory[urlCreator](); function restangularizeBase(parent, elem, route) { elem[restangularFields.route] = route; elem.getRestangularUrl = _.bind(urlHandler.fetchUrl, urlHandler, elem); elem.addRestangularMethod = _.bind(addRestangularMethodFunction, elem); if (parent) { var restangularFieldsForParent = _.union( _.values( _.pick(restangularFields, ['id', 'route', 'parentResource']) ), extraFields ); elem[restangularFields.parentResource]= _.pick(parent, restangularFieldsForParent); } return elem; } function one(parent, route, id) { var elem = {}; setIdToElem(elem, id); return restangularizeElem(parent, elem , route); } function all(parent, route) { return restangularizeCollection(parent, {} , route, true); } // Promises function restangularizePromise(promise, isCollection) { promise.call = _.bind(promiseCall, promise); promise.get = _.bind(promiseGet, promise); promise[restangularFields.restangularCollection] = isCollection; if (isCollection) { promise.push = _.bind(promiseCall, promise, "push"); } return promise; } function promiseCall(method) { var deferred = $q.defer(); var callArgs = arguments; this.then(function(val) { var params = Array.prototype.slice.call(callArgs, 1); var func = val[method]; func.apply(val, params); deferred.resolve(val); }); return restangularizePromise(deferred.promise, this[restangularFields.restangularCollection]); } function promiseGet(what) { var deferred = $q.defer(); this.then(function(val) { deferred.resolve(val[what]); }); return restangularizePromise(deferred.promise, this[restangularFields.restangularCollection]); } // Elements function stripRestangular(elem) { return _.omit(elem, _.values(_.omit(restangularFields, 'id'))); } function addCustomOperation(elem) { elem.customOperation = _.bind(customFunction, elem); _.each(["put", "post", "get", "delete"], function(oper) { _.each(["do", "custom"], function(alias) { var name = alias + oper.toUpperCase(); elem[name] = _.bind(customFunction, elem, oper); }); }); elem.customGETLIST = _.bind(fetchFunction, elem); elem.doGETLIST = elem.customGETLIST; } function copyRestangularizedElement(fromElement) { var copiedElement = angular.copy(fromElement); return restangularizeElem(copiedElement[restangularFields.parentResource], copiedElement, copiedElement[restangularFields.route]); } function restangularizeElem(parent, elem, route) { var localElem = restangularizeBase(parent, elem, route); localElem[restangularFields.restangularCollection] = false; localElem.get = _.bind(getFunction, localElem); localElem.getList = _.bind(fetchFunction, localElem); localElem.put = _.bind(putFunction, localElem); localElem.post = _.bind(postFunction, localElem); localElem.remove = _.bind(deleteFunction, localElem); localElem.head = _.bind(headFunction, localElem); localElem.trace = _.bind(traceFunction, localElem); localElem.options = _.bind(optionsFunction, localElem); localElem.patch = _.bind(patchFunction, localElem); //RequestLess connection localElem.one = _.bind(one, localElem, localElem); localElem.all = _.bind(all, localElem, localElem); addCustomOperation(localElem); return transformElem(localElem, false, route); } function restangularizeCollection(parent, elem, route) { var localElem = restangularizeBase(parent, elem, route); localElem[restangularFields.restangularCollection] = true; localElem.post = _.bind(postFunction, localElem, null); localElem.head = _.bind(headFunction, localElem); localElem.trace = _.bind(traceFunction, localElem); localElem.putElement = _.bind(putElementFunction, localElem); localElem.options = _.bind(optionsFunction, localElem); localElem.patch = _.bind(patchFunction, localElem); localElem.getList = _.bind(fetchFunction, localElem, null); addCustomOperation(localElem); return transformElem(localElem, true, route); } function whatObject(what) { var search = {}; if (what) { search[restangularFields.what] = what; } return search; } function putElementFunction(idx, params, headers) { var __this = this; var elemToPut = this[idx]; var deferred = $q.defer(); elemToPut.put(params, headers).then(function(serverElem) { var newArray = copyRestangularizedElement(__this); newArray[idx] = serverElem; deferred.resolve(newArray); }, function(response) { deferred.reject(response); }); return restangularizePromise(deferred.promise, true) } function fetchFunction(what, params, headers) { var search = whatObject(what); var __this = this; var deferred = $q.defer(); var operation = 'getList'; var url = urlHandler.fetchUrl(this, search); var whatFetched = what || __this[restangularFields.route]; var reqParams = _.extend(search, params); requestInterceptor(null, operation, whatFetched, url) urlHandler.resource(this, $resource, headers, reqParams).getList(reqParams, function(resData) { var data = responseExtractor(resData, operation, whatFetched, url); var processedData = _.map(data, function(elem) { if (!__this[restangularFields.restangularCollection]) { return restangularizeElem(__this, elem, what); } else { return restangularizeElem(null, elem, __this[restangularFields.route]); } }); processedData = _.extend(data, processedData); if (!__this[restangularFields.restangularCollection]) { deferred.resolve(restangularizeCollection(__this, processedData, what)); } else { deferred.resolve(restangularizeCollection(null, processedData, __this[restangularFields.route])); } }, function error(response) { deferred.reject(response); }); return restangularizePromise(deferred.promise, true); } function elemFunction(operation, params, obj, headers) { var __this = this; var deferred = $q.defer(); var resParams = params || {}; var resObj = obj || this; var route = resParams[restangularFields.what] || this[restangularFields.route]; var fetchUrl = urlHandler.fetchUrl(this, resParams); var callObj = obj || stripRestangular(this); callObj = requestInterceptor(callObj, operation, route, fetchUrl) var okCallback = function(resData) { var elem = responseExtractor(resData, operation, route, fetchUrl) || resObj; if (operation === "post" && !__this[restangularFields.restangularCollection]) { deferred.resolve(restangularizeElem(__this, elem, resParams[restangularFields.what])); } else { deferred.resolve(restangularizeElem(__this[restangularFields.parentResource], elem, __this[restangularFields.route])); } }; var errorCallback = function(response) { deferred.reject(response); }; // Overring HTTP Method var callOperation = operation; var callHeaders = _.extend({}, headers); var isOverrideOperation = isOverridenMethod(operation); if (isOverrideOperation) { callOperation = 'post'; callHeaders = _.extend(callHeaders, {'X-HTTP-Method-Override': operation}); } if (isSafe(operation)) { if (isOverrideOperation) { urlHandler.resource(this, $resource, callHeaders, resParams)[callOperation](resParams, {}, okCallback, errorCallback); } else { urlHandler.resource(this, $resource, callHeaders, resParams)[callOperation](resParams, okCallback, errorCallback); } } else { urlHandler.resource(this, $resource, callHeaders, resParams)[callOperation](resParams, callObj, okCallback, errorCallback); } return restangularizePromise(deferred.promise); } function getFunction(params, headers) { return _.bind(elemFunction, this)("get", params, undefined, headers); } function deleteFunction(params, headers) { return _.bind(elemFunction, this)("remove", params, undefined, headers); } function putFunction(params, headers) { return _.bind(elemFunction, this)("put", params, undefined, headers); } function postFunction(what, elem, params, headers) { return _.bind(elemFunction, this)("post", _.extend(whatObject(what), params), elem, headers); } function headFunction(params, headers) { return _.bind(elemFunction, this)("head", params, undefined, headers); } function traceFunction(params, headers) { return _.bind(elemFunction, this)("trace", params, undefined, headers); } function optionsFunction(params, headers) { return _.bind(elemFunction, this)("options", params, undefined, headers); } function patchFunction(params, headers) { return _.bind(elemFunction, this)("patch", params, undefined, headers); } function customFunction(operation, path, params, headers, elem) { return _.bind(elemFunction, this)(operation, _.extend(whatObject(path), params), elem, headers); } function addRestangularMethodFunction(name, operation, path, defaultParams, defaultHeaders, defaultElem) { var bindedFunction; if (operation === 'getList') { bindedFunction = _.bind(fetchFunction, this, path); } else { bindedFunction = _.bind(customFunction, this, operation, path); } this[name] = function(params, headers, elem) { var callParams = _.defaults({ params: params, headers: headers, elem: elem }, { params: defaultParams, headers: defaultHeaders, elem: defaultElem }); return bindedFunction(callParams.params, callParams.headers, callParams.elem); } } var service = {}; _.extend(service, _.omit(provider, '$get')); service.copy = _.bind(copyRestangularizedElement, service); service.one = _.bind(one, service, null); service.all = _.bind(all, service, null); return service; }]; } ); })();