Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make timestamp format configurable #3

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
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
19 changes: 11 additions & 8 deletions lib/saml20.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

var utils = require('./utils'),
Parser = require('xmldom').DOMParser,
SignedXml = require('xml-crypto').SignedXml,
Expand Down Expand Up @@ -31,6 +30,7 @@ exports.create = function(options, callback) {

options.signatureAlgorithm = options.signatureAlgorithm || 'rsa-sha256';
options.digestAlgorithm = options.digestAlgorithm || 'sha256';
options.timeStampFormat = options.timeStampFormat || 'YYYY-MM-DDTHH:mm:ss.SSS[Z]';

var cert = utils.pemToCert(options.cert);

Expand All @@ -55,15 +55,15 @@ exports.create = function(options, callback) {
}

var now = moment.utc();
doc.documentElement.setAttribute('IssueInstant', now.format('YYYY-MM-DDTHH:mm:ss.SSS[Z]'));
doc.documentElement.setAttribute('IssueInstant', now.format(options.timeStampFormat));
var conditions = doc.documentElement.getElementsByTagName('saml:Conditions');
var confirmationData = doc.documentElement.getElementsByTagName('saml:SubjectConfirmationData');

if (options.lifetimeInSeconds) {
conditions[0].setAttribute('NotBefore', now.format('YYYY-MM-DDTHH:mm:ss.SSS[Z]'));
conditions[0].setAttribute('NotOnOrAfter', now.clone().add('seconds', options.lifetimeInSeconds).format('YYYY-MM-DDTHH:mm:ss.SSS[Z]'));
conditions[0].setAttribute('NotBefore', now.format(options.timeStampFormat));
conditions[0].setAttribute('NotOnOrAfter', now.clone().add('seconds', options.lifetimeInSeconds).format(options.timeStampFormat));

confirmationData[0].setAttribute('NotOnOrAfter', now.clone().add('seconds', options.lifetimeInSeconds).format('YYYY-MM-DDTHH:mm:ss.SSS[Z]'));
confirmationData[0].setAttribute('NotOnOrAfter', now.clone().add('seconds', options.lifetimeInSeconds).format(options.timeStampFormat));
}

if (options.audiences) {
Expand Down Expand Up @@ -106,8 +106,12 @@ exports.create = function(options, callback) {
});
}

doc.getElementsByTagName('saml:AuthnStatement')[0]
.setAttribute('AuthnInstant', now.format('YYYY-MM-DDTHH:mm:ss.SSS[Z]'));
var authnStatement = doc.getElementsByTagName('saml:AuthnStatement')[0];
authnStatement.setAttribute('AuthnInstant', now.format(options.timeStampFormat));
if (options.sessionLifetimeInSeconds) {
authnStatement.setAttribute('SessionNotOnOrAfter', now.clone().add('seconds', options.sessionLifetimeInSeconds).format(options.timeStampFormat));
}


var nameID = doc.documentElement.getElementsByTagNameNS(NAMESPACE, 'NameID')[0];

Expand Down Expand Up @@ -148,4 +152,3 @@ exports.create = function(options, callback) {
callback(null, utils.removeWhitespace(encrypted));
});
};

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "saml",
"version": "0.8.0",
"version": "0.8.1",
"devDependencies": {
"mocha": "*",
"should": "~1.2.1"
Expand Down
41 changes: 41 additions & 0 deletions test/saml20.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,47 @@ describe('saml 2.0', function () {
assert.equal('http://example.org/claims/testaccent', attributes[2].getAttribute('Name'));
assert.equal('fóo', attributes[2].textContent);
});

it('should set SessionNotOnOrAfter on authnStatement when specified', function () {
var options = {
cert: fs.readFileSync(__dirname + '/test-auth0.pem'),
key: fs.readFileSync(__dirname + '/test-auth0.key'),
sessionLifetimeInSeconds: 3600
};

var signedAssertion = saml.create(options);

var authnStatement = utils.getAuthnStatement(signedAssertion);
assert.equal(1, authnStatement.length);
var authnInstant = authnStatement[0].getAttribute('AuthnInstant');
var sessionNotOnOrAfter = authnStatement[0].getAttribute('SessionNotOnOrAfter');
should.ok(authnInstant);
should.ok(sessionNotOnOrAfter);

var lifetime = Math.round((moment(sessionNotOnOrAfter).utc() - moment(authnInstant).utc()) / 1000);
assert.equal(3600, lifetime);
var isValid = utils.isValidSignature(signedAssertion, options.cert);
assert.equal(true, isValid);
});

it('should not set SessionNotOnOrAfter on authnStatement when not specified', function () {
var options = {
cert: fs.readFileSync(__dirname + '/test-auth0.pem'),
key: fs.readFileSync(__dirname + '/test-auth0.key'),
};

var signedAssertion = saml.create(options);

var authnStatement = utils.getAuthnStatement(signedAssertion);
assert.equal(1, authnStatement.length);
var authnInstant = authnStatement[0].getAttribute('AuthnInstant');
var sessionNotOnOrAfter = authnStatement[0].hasAttribute('SessionNotOnOrAfter');
should.ok(authnInstant);
assert.equal(false, sessionNotOnOrAfter);

var isValid = utils.isValidSignature(signedAssertion, options.cert);
assert.equal(true, isValid);
});

it('whole thing with specific authnContextClassRef', function () {
var options = {
Expand Down
5 changes: 5 additions & 0 deletions test/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ exports.getAuthenticationStatement = function(assertion) {
.getElementsByTagName('saml:AuthenticationStatement')[0];
};

exports.getAuthnStatement = function(assertion) {
var doc = new xmldom.DOMParser().parseFromString(assertion);
return doc.documentElement.getElementsByTagName('saml:AuthnStatement');
};

exports.getAttributes = function(assertion) {
var doc = new xmldom.DOMParser().parseFromString(assertion);
return doc.documentElement
Expand Down