mirror of
https://github.com/strapi/strapi.git
synced 2025-07-27 10:56:36 +00:00
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
const { getService } = require('../utils');
|
|
|
|
/** @type {import('.').AuthenticateFunction} */
|
|
const authenticate = async (ctx) => {
|
|
const { authorization } = ctx.request.header;
|
|
|
|
if (!authorization) {
|
|
return { authenticated: false };
|
|
}
|
|
|
|
const parts = authorization.split(/\s+/);
|
|
|
|
if (parts[0].toLowerCase() !== 'bearer' || parts.length !== 2) {
|
|
return { authenticated: false };
|
|
}
|
|
|
|
const token = parts[1];
|
|
const { payload, isValid } = getService('token').decodeJwtToken(token);
|
|
|
|
if (!isValid) {
|
|
return { authenticated: false };
|
|
}
|
|
|
|
const user = await strapi
|
|
.query('admin::user')
|
|
.findOne({ where: { id: payload.id }, populate: ['roles'] });
|
|
|
|
if (!user || !(user.isActive === true)) {
|
|
return { authenticated: false };
|
|
}
|
|
|
|
const userAbility = await getService('permission').engine.generateUserAbility(user);
|
|
|
|
// TODO: use the ability from ctx.state.auth instead of
|
|
// ctx.state.userAbility, and remove the assign below
|
|
ctx.state.userAbility = userAbility;
|
|
ctx.state.user = user;
|
|
|
|
return {
|
|
authenticated: true,
|
|
credentials: user,
|
|
ability: userAbility,
|
|
};
|
|
};
|
|
|
|
/** @type {import('.').AuthStrategy} */
|
|
module.exports = {
|
|
name: 'admin',
|
|
authenticate,
|
|
};
|