diff --git a/backend/src/controllers/user.ts b/backend/src/controllers/user.ts index c4c0675..7970cba 100644 --- a/backend/src/controllers/user.ts +++ b/backend/src/controllers/user.ts @@ -4,6 +4,7 @@ import jwt from 'jsonwebtoken'; import { AppDataSource } from '../data-source'; import { User } from "../entity/User"; +import { Post } from "../entity/Post"; class UserController { async register(req: Request, res: Response): Promise { @@ -30,6 +31,15 @@ class UserController { res.cookie("jwt", jwt.sign({ username, id: savedUser.id }, process.env.JWT_SECRET)); res.status(200).redirect("/"); } + + async getPosts(req: Request, res: Response): Promise { + const { userId } = req.params; + + const posts = await AppDataSource.manager.findBy(Post, {authorId: Number.parseInt(userId)}); + console.log(posts); + + res.status(200).send(posts); + } } export default new UserController(); \ No newline at end of file diff --git a/backend/src/middlewares/existance.ts b/backend/src/middlewares/existance.ts index 86c82eb..9d1bcf8 100644 --- a/backend/src/middlewares/existance.ts +++ b/backend/src/middlewares/existance.ts @@ -5,9 +5,12 @@ import { Post } from "../entity/Post"; const userShouldExist = async (req: Request, res: Response, next: NextFunction): Promise => { const { username } = req.body; + const { userId } = req.params; if (!(await AppDataSource.manager.findOneBy(User, { username + })) || !(await AppDataSource.manager.findOneBy(User, { + id: Number.parseInt(userId) }))) { res.status(404).send("User does not exist."); return; diff --git a/backend/src/routers/user.ts b/backend/src/routers/user.ts index 4026d4e..eaf7e16 100644 --- a/backend/src/routers/user.ts +++ b/backend/src/routers/user.ts @@ -7,5 +7,6 @@ const UserRouter = Router(); UserRouter.post('/register', existance.userShouldNotExist, UserController.register); UserRouter.post('/login', existance.userShouldExist, UserController.login); +UserRouter.get('/posts/:userId', existance.userShouldExist, UserController.getPosts); export default UserRouter; \ No newline at end of file