mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
1bd8c18a16
* moved url-utils from server to shared * updated imports of url-utils
37 lines
1003 B
JavaScript
37 lines
1003 B
JavaScript
const settings = require('../../services/settings/cache');
|
|
const urlUtils = require('../../../shared/url-utils');
|
|
const jwt = require('jsonwebtoken');
|
|
const jose = require('node-jose');
|
|
const issuer = urlUtils.urlFor('admin', true);
|
|
|
|
const dangerousPrivateKey = settings.get('ghost_private_key');
|
|
const keyStore = jose.JWK.createKeyStore();
|
|
const keyStoreReady = keyStore.add(dangerousPrivateKey, 'pem');
|
|
|
|
const getKeyID = async () => {
|
|
const key = await keyStoreReady;
|
|
return key.kid;
|
|
};
|
|
|
|
const sign = async (claims, options) => {
|
|
const kid = await getKeyID();
|
|
return jwt.sign(claims, dangerousPrivateKey, Object.assign({
|
|
issuer,
|
|
expiresIn: '5m',
|
|
algorithm: 'RS256',
|
|
keyid: kid
|
|
}, options));
|
|
};
|
|
|
|
module.exports = {
|
|
docName: 'identities',
|
|
permissions: true,
|
|
read: {
|
|
permissions: true,
|
|
async query(frame) {
|
|
const token = await sign({sub: frame.user.get('email')});
|
|
return {token};
|
|
}
|
|
}
|
|
};
|