mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-14 07:00:47 +00:00

* refactor: permission role * refactor: permission type * fix: permission manage * fix: group owner cannot be deleted * chore: common per map * chore: openapi * chore: rename * fix: type error * chore: app chat log permission * chore: add initv4112
57 lines
1.7 KiB
TypeScript
57 lines
1.7 KiB
TypeScript
import { type TeamTmbItemType } from '@fastgpt/global/support/user/team/type';
|
|
import { parseHeaderCert } from '../controller';
|
|
import { getTmbInfoByTmbId } from '../../user/team/controller';
|
|
import { TeamErrEnum } from '@fastgpt/global/common/error/code/team';
|
|
import { type AuthModeType, type AuthResponseType } from '../type';
|
|
import { NullPermissionVal } from '@fastgpt/global/support/permission/constant';
|
|
import { TeamPermission } from '@fastgpt/global/support/permission/user/controller';
|
|
import { authCert } from '../auth/common';
|
|
import { MongoUser } from '../../user/schema';
|
|
import { ERROR_ENUM } from '@fastgpt/global/common/error/errorCode';
|
|
import { type ApiRequestProps } from '../../../type/next';
|
|
|
|
/* auth user role */
|
|
export async function authUserPer(props: AuthModeType): Promise<
|
|
AuthResponseType<TeamPermission> & {
|
|
tmb: TeamTmbItemType;
|
|
}
|
|
> {
|
|
const result = await parseHeaderCert(props);
|
|
const tmb = await getTmbInfoByTmbId({ tmbId: result.tmbId });
|
|
|
|
if (result.isRoot) {
|
|
return {
|
|
...result,
|
|
permission: new TeamPermission({
|
|
isOwner: true
|
|
}),
|
|
tmb
|
|
};
|
|
}
|
|
if (!tmb.permission.checkPer(props.per ?? NullPermissionVal)) {
|
|
return Promise.reject(TeamErrEnum.unAuthTeam);
|
|
}
|
|
|
|
return {
|
|
...result,
|
|
permission: tmb.permission,
|
|
tmb
|
|
};
|
|
}
|
|
|
|
export const authSystemAdmin = async ({ req }: { req: ApiRequestProps }) => {
|
|
try {
|
|
const result = await authCert({ req, authToken: true });
|
|
const user = await MongoUser.findOne({
|
|
_id: result.userId
|
|
});
|
|
|
|
if (user && user.username !== 'root') {
|
|
return Promise.reject(ERROR_ENUM.unAuthorization);
|
|
}
|
|
return result;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|