question.controller.ts 2.03 KB
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
import { NextFunction, Request, Response } from "express";
Jiwon Yoon's avatar
Jiwon Yoon committed
2
import { questionDb, surveyDb } from "../db";
Jiwon Yoon's avatar
Jiwon Yoon committed
3
4
import { asyncWrap } from "../helpers/asyncWrap";

Jiwon Yoon's avatar
Jiwon Yoon committed
5
6
7
8
9
10
11
export interface TypedRequestAuth<T> extends Request {
  auth: T;
  user: any;
}

export const createQuestion = asyncWrap(
  async (reqExp: Request, res: Response, next: NextFunction) => {
Jiwon Yoon's avatar
Jiwon Yoon committed
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
    try {
      const req = reqExp as TypedRequestAuth<{ userId: string }>;
      const { userId } = req.auth;
      if (!userId) {
        return res.status(404).send("올바른 접근이 아닙니다");
      } else {
        let question = req.body;
        question.user = userId;
        const newQuestion = await questionDb.createQuestion(question);
        const { surveyId } = req.params;
        const updatedSurvey = await surveyDb.putNewQuestion(
          newQuestion,
          surveyId
        );
        console.log(updatedSurvey);
        return res.json(updatedSurvey?.questions);
      }
    } catch (error: any) {
      return res
        .status(500)
        .send(error.message || "질문을 생성하는 중 오류 발생");
    }
Jiwon Yoon's avatar
Jiwon Yoon committed
34
35
  }
);
Jiwon Yoon's avatar
Jiwon Yoon committed
36
37
38
39
40
41
42

export const updateQuestion = asyncWrap(async (req, res) => {
  const question = req.body;
  const newQuestion = await questionDb.updateQuestion(question);
  return res.json(newQuestion);
});

Jiwon Yoon's avatar
Jiwon Yoon committed
43
44
45
export const deleteQuestionById = asyncWrap(async (req, res) => {
  const { questionId } = req.params;
  const newQuestion = await questionDb.deleteQuestionById(questionId);
Jiwon Yoon's avatar
Jiwon Yoon committed
46
47
  return res.json(newQuestion);
});
Jiwon Yoon's avatar
Jiwon Yoon committed
48
49
50
51
52
53
54
55
56
57
58

export const userByQuestionId = async (
  reqExp: Request,
  res: Response,
  next: NextFunction,
  questionId: string
) => {
  try {
    const req = reqExp as TypedRequestAuth<{ userId: string }>;
    let user = await questionDb.findUserByQuestionId(questionId);
    if (!user) {
59
60
61
62
      return res.status(404).send("올바른 접근이 아닙니다");
    } else {
      req.user = user;
      next();
Jiwon Yoon's avatar
Jiwon Yoon committed
63
64
65
66
67
68
69
    }
  } catch (error: any) {
    return res
      .status(500)
      .send(error.message || "질문을 작성한 사용자를 찾아내는 중 오류 발생");
  }
};