Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

feat($httpUrlParams): introduce new service abstracting params serialization #10853

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/AngularPublic.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
$IntervalProvider,
$HttpProvider,
$HttpBackendProvider,
$HttpUrlParamsProvider,
$LocationProvider,
$LogProvider,
$ParseProvider,
Expand Down Expand Up @@ -222,6 +223,7 @@ function publishExternalAPI(angular) {
$interval: $IntervalProvider,
$http: $HttpProvider,
$httpBackend: $HttpBackendProvider,
$httpUrlParams: $HttpUrlParamsProvider,
$location: $LocationProvider,
$log: $LogProvider,
$parse: $ParseProvider,
Expand Down
65 changes: 49 additions & 16 deletions src/ng/http.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ function $HttpProvider() {
**/
var interceptorFactories = this.interceptors = [];

this.$get = ['$httpBackend', '$browser', '$cacheFactory', '$rootScope', '$q', '$injector',
function($httpBackend, $browser, $cacheFactory, $rootScope, $q, $injector) {
this.$get = ['$httpBackend', '$httpUrlParams', '$browser', '$cacheFactory', '$rootScope', '$q', '$injector',
function($httpBackend, $httpUrlParams, $browser, $cacheFactory, $rootScope, $q, $injector) {

var defaultCache = $cacheFactory('$http');

Expand Down Expand Up @@ -1130,28 +1130,61 @@ function $HttpProvider() {


function buildUrl(url, params) {
if (!params) return url;
params = $httpUrlParams.serialize(params);
if (params) {
url += ((url.indexOf('?') == -1) ? '?' : '&') + params;
}
return url;
}
}];
}

/**
* @ngdoc provider
* @name $httpUrlParamsProvider
* @description
* Use `$httpUrlParamsProvider` to change the default behavior of the {@link ng.$httpUrlParams $httpUrlParams} service.
* */
function $HttpUrlParamsProvider() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe it is better to move this service (and maybe also the relevant unit tests) to a different file?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, this is the plan as soon as I'm will expand on this service :-)


/**
* @ngdoc service
* @name $httpUrlParams
*
* @description
* The `$httpUrlParams` service is responsible for serializing request params
* (expressed as a JavaScript object) to a string.
* It abstracts the way in which request params are transformed, grouped, encoded etc.
*
* Normally you wouldn't use this service directly in the application's code but rather override this service
* to enable custom serialization schemas for URL parameters.
*
* The `$httpUrlParams` service comes handy while unit testing with {@link ngMock.$httpBackend $httpBackend mock},
* as one can inject `$httpUrlParams` into a test and serialize URL params as {@link ng.$http $http} service.
*/
this.$get = function() {
var HttpUrlParams = {};
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: make the object literal constant


HttpUrlParams.serialize = function(params) {
var parts = [];

if (!params) return '';

forEachSorted(params, function(value, key) {
if (value === null || isUndefined(value)) return;
if (!isArray(value)) value = [value];

forEach(value, function(v) {
if (isObject(v)) {
if (isDate(v)) {
v = v.toISOString();
} else {
v = toJson(v);
}
v = isDate(v) ? v.toISOString() : toJson(v);
}
parts.push(encodeUriQuery(key) + '=' +
encodeUriQuery(v));
parts.push(encodeUriQuery(key) + '=' + encodeUriQuery(v));
});
});
if (parts.length > 0) {
url += ((url.indexOf('?') == -1) ? '?' : '&') + parts.join('&');
}
return url;
}
}];

return parts.join('&');
};

return HttpUrlParams;
};
}