| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- import { createRoute, OpenAPIHono } from '@hono/zod-openapi'
- import { AuthService } from '../../../modules/auth/auth.service'
- import { UserService } from '../../../modules/users/user.service'
- import { z } from '@hono/zod-openapi'
- import { ErrorSchema } from '../../../utils/errorHandler'
- import { AppDataSource } from '../../../data-source'
- import { AuthContext } from '../../../types/context'
- import { UserSchema } from '@/server/modules/users/user.entity'
- const userService = new UserService(AppDataSource)
- const authService = new AuthService(userService)
- const LoginSchema = z.object({
- username: z.string().min(3).openapi({
- example: 'admin',
- description: '用户名'
- }),
- password: z.string().min(6).openapi({
- example: 'admin123',
- description: '密码'
- })
- })
- const UserResponseSchema = UserSchema
- const TokenResponseSchema = z.object({
- token: z.string().openapi({
- example: 'jwt.token.here',
- description: 'JWT Token'
- }),
- user: UserResponseSchema
- })
- 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
- }
- }
- }
- }
- })
- const app = new OpenAPIHono<AuthContext>().openapi(loginRoute, async (c) => {
- const { username, password } = c.req.valid('json')
- const result = await authService.login(username, password)
- return c.json(result, 200)
- });
- export default app
|