| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- import { createRoute, OpenAPIHono } from '@hono/zod-openapi';
- import { AuthService } from '../services';
- import { UserService } from '@d8d/user-module';
- import { z } from '@hono/zod-openapi';
- import { ErrorSchema } from '@d8d/shared-utils';
- import { AppDataSource } from '@d8d/shared-utils';
- import { AuthContext } from '@d8d/shared-types';
- import { UserSchema } from '@d8d/user-module';
- import { parseWithAwait } from '@d8d/shared-utils';
- import { LoginSchema, TokenResponseSchema } from '../schemas';
- const loginRoute = createRoute({
- method: 'post',
- path: '/login',
- request: {
- body: {
- content: {
- 'application/json': {
- schema: LoginSchema
- }
- }
- }
- },
- responses: {
- 200: {
- description: '登录成功',
- content: {
- 'application/json': {
- schema: TokenResponseSchema
- }
- }
- },
- 401: {
- description: '用户名或密码错误',
- content: {
- 'application/json': {
- schema: ErrorSchema
- }
- }
- },
- 500: {
- description: '服务器内部错误',
- content: {
- 'application/json': {
- schema: ErrorSchema
- }
- }
- }
- }
- });
- const app = new OpenAPIHono<AuthContext>().openapi(loginRoute, async (c) => {
- try {
- // 在路由处理函数内部初始化服务
- const userService = new UserService(AppDataSource);
- const authService = new AuthService(userService);
- const { username, password } = c.req.valid('json');
- const result = await authService.login(username, password);
- return c.json(await parseWithAwait(TokenResponseSchema, result), 200);
- } catch (error) {
- // 认证相关错误返回401
- if (error instanceof Error &&
- (error.message.includes('User not found') ||
- error.message.includes('Invalid password') ||
- error.message.includes('User account is disabled'))) {
- return c.json(
- {
- code: 401,
- message: error.message.includes('User account is disabled') ? '账户已禁用' : '用户名或密码错误'
- },
- 401
- );
- }
- // 其他错误重新抛出,由错误处理中间件处理
- throw error;
- }
- });
- export default app;
|