Skip to content

Commit 71200f1

Browse files
committed
add a console.warn on invalid options for string payloads
1 parent 65b1f58 commit 71200f1

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

index.js

+19-1
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,33 @@ JWT.decode = function (jwt, options) {
3838
return payload;
3939
};
4040

41+
var payload_options = [
42+
'expiresIn',
43+
'notBefore',
44+
'expiresInMinutes',
45+
'expiresInSeconds',
46+
'audience',
47+
'issuer',
48+
'subject',
49+
'jwtid'
50+
];
51+
4152
JWT.sign = function(payload, secretOrPrivateKey, options, callback) {
4253
options = options || {};
43-
payload = typeof payload === 'object' ? xtend(payload) : payload;
4454
var header = {};
4555

4656
if (typeof payload === 'object') {
4757
header.typ = 'JWT';
58+
payload = xtend(payload);
59+
} else {
60+
var invalid_option = payload_options.filter(function (key) {
61+
return typeof options[key] !== 'undefined';
62+
})[0];
63+
64+
console.warn('invalid "' + invalid_option + '" option for ' + (typeof payload) + ' payload');
4865
}
4966

67+
5068
header.alg = options.algorithm || 'HS256';
5169

5270
if (options.headers) {

test/non_object_values.tests.js

+7
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ describe('non_object_values values', function() {
1010
expect(result).to.equal('hello');
1111
});
1212

13+
//v6 version will throw in this case:
14+
it.skip('should throw with expiresIn', function () {
15+
expect(function () {
16+
jwt.sign('hello', '123', { expiresIn: '12h' });
17+
}).to.throw(/invalid expiresIn option for string payload/);
18+
});
19+
1320
it('should fail to validate audience when the payload is string', function () {
1421
var token = jwt.sign('hello', '123');
1522
expect(function () {

0 commit comments

Comments
 (0)