Skip to content

Commit d8d52d4

Browse files
committed
Closes #4.
Closes #5. Closes #6. Stable Version 1.0.0-alpha.2.
1 parent 7807b99 commit d8d52d4

7 files changed

+90
-25
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
##### 1.0.0-alpha.2 - 01 November 2014
2+
3+
###### Backwards compatible API changes
4+
- #4 - Log failures. See also #5 and #6
5+
16
##### 1.0.0-alpha.1 - 31 October 2014
27

38
###### Backwards compatible bug fixes

bower.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "js-data-http",
33
"description": "http adapter for js-data.",
4-
"version": "1.0.0-alpha.1",
5-
"homepage": "http://www.js-data.io/js-data-http",
4+
"version": "1.0.0-alpha.2",
5+
"homepage": "http://www.js-data.io/docs/dshttpadapter",
66
"repository": {
77
"type": "git",
8-
"url": "git://github.com/js-data/js-data-http.git"
8+
"url": "https://github.com/js-data/js-data-http.git"
99
},
1010
"author": {
1111
"name": "Jason Dobry",

dist/js-data-http.js

+25-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @author Jason Dobry <[email protected]>
33
* @file js-data-http.js
4-
* @version 1.0.0-alpha.1 - Homepage <http://www.js-data.iojs-data-http/>
4+
* @version 1.0.0-alpha.2 - Homepage <http://www.js-data.iojs-data-http/>
55
* @copyright (c) 2014 Jason Dobry
66
* @license MIT <https://github.com/js-data/js-data-http/blob/master/LICENSE>
77
*
@@ -1418,8 +1418,13 @@ defaultsPrototype.forceTrailingSlash = '';
14181418

14191419
defaultsPrototype.httpConfig = {};
14201420

1421-
defaultsPrototype.log = console ? function (a, b, c, d, e) {
1422-
console.log(a, b, c, d, e);
1421+
defaultsPrototype.log = console ? function (a, b) {
1422+
console[typeof console.info === 'function' ? 'info' : 'log'](a, b);
1423+
} : function () {
1424+
};
1425+
1426+
defaultsPrototype.error = console ? function (a, b) {
1427+
console[typeof console.error === 'function' ? 'error' : 'log'](a, b);
14231428
} : function () {
14241429
};
14251430

@@ -1448,17 +1453,28 @@ dsHttpAdapterPrototype.getAllPath = function (resourceConfig, options) {
14481453

14491454
dsHttpAdapterPrototype.HTTP = function (config) {
14501455
var _this = this;
1451-
var start = new Date().getTime();
1456+
var start = new Date();
14521457
config = deepMixIn(config, _this.defaults.httpConfig);
14531458
if (_this.defaults.forceTrailingSlash && config.url[config.url.length] !== '/') {
14541459
config.url += '/';
14551460
}
1456-
return http(config).then(function (data) {
1457-
if (_this.defaults.log) {
1458-
_this.defaults.log(data.config.method.toUpperCase() + ' request: ' + data.config.url + ' Time taken: ' + (new Date().getTime() - start) + 'ms', data);
1461+
1462+
function logResponse(data) {
1463+
var str = start.toUTCString() + ' - ' + data.config.method.toUpperCase() + ' ' + data.config.url + ' - ' + data.status + ' ' + (new Date().getTime() - start.getTime()) + 'ms';
1464+
if (data.status >= 200 && data.status < 300) {
1465+
if (_this.defaults.log) {
1466+
_this.defaults.log(str, data);
1467+
}
1468+
return data;
1469+
} else {
1470+
if (_this.defaults.error) {
1471+
_this.defaults.error('FAILED: ' + str, data);
1472+
}
1473+
throw data;
14591474
}
1460-
return data;
1461-
});
1475+
}
1476+
1477+
return http(config).then(logResponse, logResponse);
14621478
};
14631479

14641480
dsHttpAdapterPrototype.GET = function (url, config) {

dist/js-data-http.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "js-data-http",
33
"description": "http adapter for js-data.",
4-
"version": "1.0.0-alpha.1",
5-
"homepage": "http://www.js-data.io/js-data-http",
4+
"version": "1.0.0-alpha.2",
5+
"homepage": "http://www.js-data.io/docs/dshttpadapter",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/js-data/js-data-http.git"
@@ -46,6 +46,6 @@
4646
"dependencies": {
4747
"axios": "0.4.x",
4848
"mout": "0.10.0",
49-
"js-data": "1.0.x"
49+
"js-data": "~1.0.x"
5050
}
5151
}

src/index.js

+24-8
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,13 @@ defaultsPrototype.forceTrailingSlash = '';
3636

3737
defaultsPrototype.httpConfig = {};
3838

39-
defaultsPrototype.log = console ? function (a, b, c, d, e) {
40-
console.log(a, b, c, d, e);
39+
defaultsPrototype.log = console ? function (a, b) {
40+
console[typeof console.info === 'function' ? 'info' : 'log'](a, b);
41+
} : function () {
42+
};
43+
44+
defaultsPrototype.error = console ? function (a, b) {
45+
console[typeof console.error === 'function' ? 'error' : 'log'](a, b);
4146
} : function () {
4247
};
4348

@@ -66,17 +71,28 @@ dsHttpAdapterPrototype.getAllPath = function (resourceConfig, options) {
6671

6772
dsHttpAdapterPrototype.HTTP = function (config) {
6873
var _this = this;
69-
var start = new Date().getTime();
74+
var start = new Date();
7075
config = deepMixIn(config, _this.defaults.httpConfig);
7176
if (_this.defaults.forceTrailingSlash && config.url[config.url.length] !== '/') {
7277
config.url += '/';
7378
}
74-
return http(config).then(function (data) {
75-
if (_this.defaults.log) {
76-
_this.defaults.log(data.config.method.toUpperCase() + ' request: ' + data.config.url + ' Time taken: ' + (new Date().getTime() - start) + 'ms', data);
79+
80+
function logResponse(data) {
81+
var str = start.toUTCString() + ' - ' + data.config.method.toUpperCase() + ' ' + data.config.url + ' - ' + data.status + ' ' + (new Date().getTime() - start.getTime()) + 'ms';
82+
if (data.status >= 200 && data.status < 300) {
83+
if (_this.defaults.log) {
84+
_this.defaults.log(str, data);
85+
}
86+
return data;
87+
} else {
88+
if (_this.defaults.error) {
89+
_this.defaults.error('FAILED: ' + str, data);
90+
}
91+
throw data;
7792
}
78-
return data;
79-
});
93+
}
94+
95+
return http(config).then(logResponse, logResponse);
8096
};
8197

8298
dsHttpAdapterPrototype.GET = function (url, config) {

test/find.spec.js

+28
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,32 @@ describe('DSHttpAdapter.find(resourceConfig, id, options)', function () {
6262
_this.requests[0].respond(200, { 'Content-Type': 'application/json' }, JSON.stringify(p1));
6363
}, 10);
6464
});
65+
66+
it('should log errors', function (done) {
67+
var _this = this;
68+
var loggedError;
69+
70+
dsHttpAdapter.defaults.error = function (err) {
71+
loggedError = err;
72+
};
73+
74+
dsHttpAdapter.find(Post, 1).then(function () {
75+
done('Should not have succeeded!');
76+
}, function () {
77+
assert.isString(loggedError);
78+
assert.isTrue(loggedError.indexOf('api/posts/1') !== -1);
79+
done();
80+
});
81+
82+
setTimeout(function () {
83+
try {
84+
assert.equal(1, _this.requests.length);
85+
assert.equal(_this.requests[0].url, 'api/posts/1');
86+
assert.equal(_this.requests[0].method, 'get');
87+
} catch (err) {
88+
done(err);
89+
}
90+
_this.requests[0].respond(404, { 'Content-Type': 'text/plain' }, 'Not Found');
91+
}, 10);
92+
});
6593
});

0 commit comments

Comments
 (0)