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

Commit c6eb6e9

Browse files
committed
feat($http): pass success flag to transformResponse
1 parent ed4cd6c commit c6eb6e9

File tree

2 files changed

+23
-10
lines changed

2 files changed

+23
-10
lines changed

src/ng/http.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,15 @@ function headersGetter(headers) {
6464
* @param {*} data Data to transform.
6565
* @param {function(string=)} headers Http headers getter fn.
6666
* @param {(Function|Array.<Function>)} fns Function or an array of functions.
67+
* @param {boolean} success True when this is response and it is success
6768
* @returns {*} Transformed data.
6869
*/
69-
function transformData(data, headers, fns) {
70+
function transformData(data, headers, fns, success) {
7071
if (isFunction(fns))
71-
return fns(data, headers);
72+
return fns(data, headers, success);
7273

7374
forEach(fns, function(fn) {
74-
data = fn(data, headers);
75+
data = fn(data, headers, success);
7576
});
7677

7778
return data;
@@ -739,13 +740,12 @@ function $HttpProvider() {
739740
return promise;
740741

741742
function transformResponse(response) {
742-
// make a copy since the response must be cacheable
743-
var resp = extend({}, response, {
744-
data: transformData(response.data, response.headers, config.transformResponse)
745-
});
746-
return (isSuccess(response.status))
747-
? resp
748-
: $q.reject(resp);
743+
var success = isSuccess(response.status),
744+
// make a copy since the response must be cacheable
745+
resp = extend({}, response, {
746+
data: transformData(response.data, response.headers, config.transformResponse, success)
747+
});
748+
return success ? resp : $q.reject(resp);
749749
}
750750

751751
function mergeHeaders(config) {

test/ng/httpSpec.js

+13
Original file line numberDiff line numberDiff line change
@@ -1097,6 +1097,19 @@ describe('$http', function() {
10971097
expect(callback.mostRecentCall.args[0]).toBe('header1');
10981098
});
10991099

1100+
it('should know when response is failed', function() {
1101+
$httpBackend.expect('GET', '/url').respond(404, 'Not found');
1102+
$http.get('/url', {
1103+
transformResponse: function(data, headers, success) {
1104+
return success;
1105+
}
1106+
}).error(callback);
1107+
$httpBackend.flush();
1108+
1109+
expect(callback).toHaveBeenCalledOnce();
1110+
expect(callback.mostRecentCall.args[0]).toBe(false);
1111+
});
1112+
11001113

11011114
it('should pipeline more functions', function() {
11021115
function first(d, h) {return d + '-first' + ':' + h('h1')}

0 commit comments

Comments
 (0)