2021-06-14 20:57:26 +08:00

21 lines
604 B
TypeScript

import { HttpServer } from "tsrpc";
import { BaseRequest } from "../shared/protocols/base";
import { CurrentUser } from "./CurrentUser";
import { UserUtil } from "./UserUtil";
export function parseCurrentUser(server: HttpServer) {
// Auto parse call.currentUser
server.flows.preApiCallFlow.push(async call => {
let req = call.req as BaseRequest;
if (req.__ssoToken) {
call.currentUser = await UserUtil.parseSSO(req.__ssoToken);
}
return call;
})
}
declare module 'tsrpc' {
export interface ApiCall {
currentUser?: CurrentUser;
}
}