mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-13 10:55:58 +03:00
af6c897a14
no-issue This removes a *lot* of funtionality, stripping the members-api module to *only* handle the magic link signin flow.
58 lines
1.3 KiB
JavaScript
58 lines
1.3 KiB
JavaScript
const jose = require('node-jose');
|
|
const jwt = require('jsonwebtoken');
|
|
|
|
module.exports = function ({
|
|
privateKey,
|
|
publicKey,
|
|
issuer
|
|
}) {
|
|
const keyStore = jose.JWK.createKeyStore();
|
|
const keyStoreReady = keyStore.add(privateKey, 'pem');
|
|
|
|
function encodeAPIToken({sub, aud = issuer, plans, exp}) {
|
|
return keyStoreReady.then(jwk => jwt.sign({
|
|
sub,
|
|
plans,
|
|
kid: jwk.kid
|
|
}, privateKey, {
|
|
algorithm: 'RS512',
|
|
audience: aud,
|
|
expiresIn: exp,
|
|
issuer
|
|
}));
|
|
}
|
|
|
|
function encodeIdentityToken({sub}) {
|
|
return keyStoreReady.then(jwk => jwt.sign({
|
|
sub,
|
|
kid: jwk.kid
|
|
}, privateKey, {
|
|
algorithm: 'RS512',
|
|
audience: issuer,
|
|
expiresIn: '10m',
|
|
issuer
|
|
}));
|
|
}
|
|
|
|
function decodeToken(token) {
|
|
return keyStoreReady.then(jwk => jwt.verify(token, publicKey, {
|
|
algorithm: 'RS512',
|
|
kid: jwk.kid,
|
|
issuer
|
|
})).then(() => jwt.decode(token));
|
|
}
|
|
|
|
function getPublicKeys() {
|
|
return keyStoreReady.then(() => {
|
|
keyStore.toJSON();
|
|
});
|
|
}
|
|
|
|
return {
|
|
encodeAPIToken,
|
|
encodeIdentityToken,
|
|
decodeToken,
|
|
getPublicKeys
|
|
};
|
|
};
|