post.controller.ts 1.05 KB
Newer Older
Lee Soobeom's avatar
Lee Soobeom committed
1
import { NextFunction, Request, Response } from "express";
2
3
import isLength from "validator/lib/isLength";
import equals from "validator/lib/equals";
Lee Soobeom's avatar
Lee Soobeom committed
4
5
6
import { asyncWrap } from "../helpers";

export const posting = asyncWrap(async (req, res) => {
7
  const { title, text, date, theme, city } = req.body;
Lee Soobeom's avatar
Lee Soobeom committed
8

9
  console.log("body", req.body);
Lee Soobeom's avatar
Lee Soobeom committed
10

11
12
13
14
  // 1) title 빈 문자열인지 확인
  if (!isLength(title ?? "", { min: 1 })) {
    return res.status(422).send("제목을 한 글자 이상 입력해주세요");
  }
Lee Soobeom's avatar
Lee Soobeom committed
15

16
17
18
19
  // 2) body 빈 문자열인지 확인
  if (!isLength(text ?? "", { min: 1 })) {
    return res.status(422).send("제목을 한 글자 이상 입력해주세요");
  }
Lee Soobeom's avatar
Lee Soobeom committed
20

21
  // 3) submit 이벤트 발생시 date값 입력
Lee Soobeom's avatar
Lee Soobeom committed
22

23
24
25
26
  // 4) theme dropdown default-value "테마"일 경우 에러
  if (equals(theme, "질문종류")) {
    return res.status(422).send("테마를 입력해 주세요");
  }
Lee Soobeom's avatar
Lee Soobeom committed
27

28
29
30
31
  // 5) city dropdown default-value "도시"일 경우 에러
  if (equals(city, "질문종류")) {
    return res.status(422).send("도시를 선택해 주세요");
  }
32
});