Skip to content

Commit 39ecc6f

Browse files
committed
deprecate expireInMinutes and expireInSeconds - in favor of expiresIn
1 parent 4b70ae3 commit 39ecc6f

File tree

3 files changed

+68
-6
lines changed

3 files changed

+68
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ encoded private key for RSA and ECDSA.
2525
`options`:
2626

2727
* `algorithm` (default: `HS256`)
28-
* `expiresInMinutes` or `expiresInSeconds`
28+
* `expiresIn`: expressed in seconds or an string describing a time span [rauchg/ms](https://github.com/rauchg/ms.js). Eg: `60`, `"2 days"`, `"10h"`, `"7d"`
2929
* `audience`
3030
* `subject`
3131
* `issuer`
@@ -35,7 +35,7 @@ encoded private key for RSA and ECDSA.
3535
If `payload` is not a buffer or a string, it will be coerced into a string
3636
using `JSON.stringify`.
3737

38-
If any `expiresInMinutes`, `audience`, `subject`, `issuer` are not provided, there is no default. The jwt generated won't include those properties in the payload.
38+
If any `expiresIn`, `audience`, `subject`, `issuer` are not provided, there is no default. The jwt generated won't include those properties in the payload.
3939

4040
Additional headers can be provided via the `headers` object.
4141

index.js

+27-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
var jws = require('jws');
2+
var ms = require('ms');
23

34
var JWT = module.exports;
45

@@ -57,12 +58,34 @@ JWT.sign = function(payload, secretOrPrivateKey, options, callback) {
5758
payload.iat = payload.iat || timestamp;
5859
}
5960

60-
var expiresInSeconds = options.expiresInMinutes ?
61-
options.expiresInMinutes * 60 :
62-
options.expiresInSeconds;
61+
if (options.expiresInSeconds || options.expiresInMinutes) {
62+
var deprecated_line;
63+
try {
64+
deprecated_line = /.*\((.*)\).*/.exec((new Error()).stack.split('\n')[2])[1];
65+
} catch(err) {
66+
deprecated_line = '';
67+
}
68+
69+
console.warn('jsonwebtoken: expiresInMinutes and expiresInSeconds is deprecated. (' + deprecated_line + ')\n' +
70+
'Use "expiresIn" expressed in seconds.');
71+
72+
var expiresInSeconds = options.expiresInMinutes ?
73+
options.expiresInMinutes * 60 :
74+
options.expiresInSeconds;
6375

64-
if (expiresInSeconds) {
6576
payload.exp = timestamp + expiresInSeconds;
77+
} else if (options.expiresIn) {
78+
if (typeof options.expiresIn === 'string') {
79+
var milliseconds = ms(options.expiresIn);
80+
if (typeof milliseconds === 'undefined') {
81+
throw new Error('bad "expiresIn" format: ' + options.expiresIn);
82+
}
83+
payload.exp = timestamp + milliseconds / 1000;
84+
} else if (typeof options.expiresIn === 'number' ) {
85+
payload.exp = timestamp + options.expiresIn;
86+
} else {
87+
throw new Error('"expiresIn" should be a number of seconds or string representing a timespan eg: "1d", "20h", 60');
88+
}
6689
}
6790

6891
if (options.audience)

test/expires_format.tests.js

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
var jwt = require('../index');
2+
var expect = require('chai').expect;
3+
4+
describe('expires option', function() {
5+
6+
it('should work with a number of seconds', function () {
7+
var token = jwt.sign({foo: 123}, '123', { expiresIn: 10 });
8+
var result = jwt.verify(token, '123');
9+
expect(result.exp).to.be.closeTo(Math.floor(Date.now() / 1000) + 10, 0.2);
10+
});
11+
12+
it('should work with a string', function () {
13+
var token = jwt.sign({foo: 123}, '123', { expiresIn: '2d' });
14+
var result = jwt.verify(token, '123');
15+
var two_days_in_secs = 2 * 24 * 60 * 60;
16+
expect(result.exp).to.be.closeTo(Math.floor(Date.now() / 1000) + two_days_in_secs, 0.2);
17+
});
18+
19+
it('should work with a string second example', function () {
20+
var token = jwt.sign({foo: 123}, '123', { expiresIn: '36h' });
21+
var result = jwt.verify(token, '123');
22+
var day_and_a_half_in_secs = 1.5 * 24 * 60 * 60;
23+
expect(result.exp).to.be.closeTo(Math.floor(Date.now() / 1000) + day_and_a_half_in_secs, 0.2);
24+
});
25+
26+
27+
it('should throw if expires has a bad string format', function () {
28+
expect(function () {
29+
jwt.sign({foo: 123}, '123', { expiresIn: '1 monkey' });
30+
}).to.throw(/bad "expiresIn" format: 1 monkey/);
31+
});
32+
33+
it('should throw if expires is not an string or number', function () {
34+
expect(function () {
35+
jwt.sign({foo: 123}, '123', { expiresIn: { crazy : 213 } });
36+
}).to.throw(/"expiresIn" should be a number of seconds or string representing a timespan/);
37+
});
38+
39+
});

0 commit comments

Comments
 (0)