Skip to content

Commit fbc2971

Browse files
committed
add auth middleware to get user info route
1 parent 98e9c9a commit fbc2971

File tree

4 files changed

+11
-14
lines changed

4 files changed

+11
-14
lines changed

src/controllers/GetUserInfoController.ts

+2-6
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,11 @@ import { GetUserInfoService } from '@/services'
44

55
export class GetUserInfoController {
66
async handle(req: Request, res: Response): Promise<Response> {
7-
const { username } = req.body
8-
9-
if (!username) {
10-
return res.status(400).json({ error: 'Username is required.' })
11-
}
7+
const id = req.userId
128

139
const getUserInfoService = new GetUserInfoService()
1410

15-
const user = await getUserInfoService.execute({ username })
11+
const user = await getUserInfoService.execute({ id })
1612

1713
return res.status(200).json(user)
1814
}

src/middlewares/auth.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ import { NextFunction, Request, Response } from 'express'
22
import { verify } from 'jsonwebtoken'
33

44
type TokenPayload = {
5-
id: string
5+
sub: string
66
iat: number
77
exp: number
88
}
99

10-
export const ensureAuthenticated = async (
10+
export const ensureAuthenticated = (
1111
req: Request,
1212
res: Response,
1313
next: NextFunction
14-
): Promise<Response | void> => {
14+
): Response | void => {
1515
const authHeader = req.headers.authorization
1616

1717
if (!authHeader) {
@@ -22,7 +22,7 @@ export const ensureAuthenticated = async (
2222

2323
try {
2424
const decoded = verify(token, process.env.JWT_SECRET)
25-
const { id } = decoded as TokenPayload
25+
const { sub: id } = decoded as TokenPayload
2626
req.userId = id
2727

2828
return next()

src/routes/users.routes.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import {
55
GetUserInfoController,
66
AuthenticateUserController
77
} from '@/controllers'
8+
import { ensureAuthenticated } from '@/middlewares'
89

910
const usersRouter = Router()
1011

@@ -14,6 +15,6 @@ const getUserInfoController = new GetUserInfoController()
1415

1516
usersRouter.post('/', createUserController.handle)
1617
usersRouter.post('/login', authenticateUserController.handle)
17-
usersRouter.get('/', getUserInfoController.handle)
18+
usersRouter.get('/', ensureAuthenticated, getUserInfoController.handle)
1819

1920
export { usersRouter }

src/services/GetUserInfoService.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import { prisma } from '@/prisma'
33
import { User } from '@prisma/client'
44

55
type Params = {
6-
username: string
6+
id: string
77
}
88

99
export class GetUserInfoService {
10-
async execute({ username }: Params): Promise<User> {
10+
async execute({ id }: Params): Promise<User> {
1111
const user = await prisma.user.findUnique({
12-
where: { username }
12+
where: { id }
1313
})
1414

1515
if (!user) {

0 commit comments

Comments
 (0)