mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-24 22:03:54 +00:00

* chore: purge old permission - remove useless role of teamMember - Cleanup auth apis' Props and Return type Definitions * chore: a better way of RequireAtLeastOne Signed-off-by: Finley Ge <m13203533462@163.com> --------- Signed-off-by: Finley Ge <m13203533462@163.com>
22 lines
610 B
TypeScript
22 lines
610 B
TypeScript
import { parseHeaderCert } from '../controller';
|
|
import { AuthModeType } from '../type';
|
|
import { SERVICE_LOCAL_HOST } from '../../../common/system/tools';
|
|
import { ApiRequestProps } from '../../../type/next';
|
|
|
|
export const authCert = async (props: AuthModeType) => {
|
|
const result = await parseHeaderCert(props);
|
|
|
|
return {
|
|
...result,
|
|
isOwner: true,
|
|
canWrite: true
|
|
};
|
|
};
|
|
|
|
/* auth the request from local service */
|
|
export const authRequestFromLocal = ({ req }: { req: ApiRequestProps }) => {
|
|
if (req.headers.host !== SERVICE_LOCAL_HOST) {
|
|
return Promise.reject('Invalid request');
|
|
}
|
|
};
|