post.controller.ts 3.31 KB
Newer Older
Lee Soobeom's avatar
Lee Soobeom committed
1
import { NextFunction, Request, Response } from "express";
Lee Soobeom's avatar
Lee Soobeom committed
2
import formidable, { Fields, Files } from "formidable";
Lee Soobeom's avatar
Lee Soobeom committed
3
import { TypedRequestAuth } from "./auth.controller";
Lee Soobeom's avatar
Lee Soobeom committed
4
import { asyncWrap } from "../helpers";
Lee Soobeom's avatar
Lee Soobeom committed
5
6
import { postDb, userDb } from "../db";
import { TypedRequest } from "../types";
Lee Soobeom's avatar
Lee Soobeom committed
7

Lee Soobeom's avatar
Lee Soobeom committed
8
export const createImgAndPost = asyncWrap(async (reqExp, res, next) => {
Lee Soobeom's avatar
Lee Soobeom committed
9
  const req = reqExp as TypedRequestAuth<{ userId: string }>;
Lee Soobeom's avatar
Lee Soobeom committed
10
11
12
13
  // const { date, counts } = req.body as {
  //   date: "";
  //   counts: 0;
  // };
Lee Soobeom's avatar
Lee Soobeom committed
14

Lee Soobeom's avatar
Lee Soobeom committed
15
  const { userId } = req.auth;
Lee Soobeom's avatar
Lee Soobeom committed
16

Lee Soobeom's avatar
Lee Soobeom committed
17
18
19
20
  const form = formidable({
    uploadDir: "uploads",
    keepExtensions: true,
    multiples: true,
Lee Soobeom's avatar
Lee Soobeom committed
21
  });
Lee Soobeom's avatar
Lee Soobeom committed
22

Lee Soobeom's avatar
Lee Soobeom committed
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  const fileIdArr = new Array();

  form.parse(req, (err, fields, files) => {
    const title = fields.title?.[0];
    const text = fields.text?.[0];
    const theme = fields.theme?.[0];
    const city = fields.city?.[0];

    if (Array.isArray(files.picture)) {
      for (var i = 0; i < files.picture.length; i++) {
        if (!(files.picture?.[i].originalFilename === null)) {
          const originalfilename = files.picture?.[i].originalFilename;
          const newfilename = files.picture?.[i].newFilename;
          const filepath = files.picture?.[i].filepath;

          const filesRes = postDb.createFilesRow(
            originalfilename,
            newfilename,
            filepath
          );
        }
      }
    } else {
      console.log("업로드한 사진이 없습니다.");
    }

    const postRes = postDb.createPostRow({
      title,
      text,
      theme,
      city,
      date: Date.now(),
      counts: 0,
      user: userId,
    });

    console.log("createPostRow", postRes);
  });
61
});
Lee Soobeom's avatar
Lee Soobeom committed
62
63
64

export const getAllPost = asyncWrap(async (req, res) => {
  const posts = await postDb.getPosts();
Lee Soobeom's avatar
Lee Soobeom committed
65
  console.log(posts);
Lee Soobeom's avatar
Lee Soobeom committed
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99

  return res.json(posts);
});

export const addCounts = asyncWrap(async (req, res) => {
  // console.log(req.body);
  const { postId } = req.params;
  const { counts } = req.body as {
    counts: number;
  };
  console.log(postId, counts);

  const updateCounts = await postDb.addOneCount(postId, counts);

  return res.json(updateCounts);
});

export const userByPostId = (
  reqExp: Request,
  res: Response,
  next: NextFunction,
  postId: string
) => {
  const req = reqExp as TypedRequest;
  req.user = userDb.findUserByPostId(postId);
  next();
};

export const getOnePost = asyncWrap(async (req, res) => {
  const { postId } = req.params;
  const post = await postDb.getPost(postId);

  return res.json(post);
});
Lee Soobeom's avatar
Lee Soobeom committed
100
101
102

export const deleteOnePost = asyncWrap(async (req, res) => {
  const { postId } = req.params;
Lee Soobeom's avatar
Lee Soobeom committed
103
  // console.log(postId);
Lee Soobeom's avatar
Lee Soobeom committed
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
  const deleteCount = await postDb.deletePost(postId);

  return res.json(deleteCount);
});

export const updatePost = asyncWrap(async (reqExp, res) => {
  const req = reqExp as TypedRequestAuth<{ userId: string }>;

  const { title, text, theme, city, date } = req.body as {
    title: string;
    text: string;
    theme: string;
    city: string;
    date: Date;
    counts: number;
  };

  const userId = req.auth.userId;
  const { postId } = req.params;

  const updatePost = await postDb.updateOnePost(
    {
      title,
      text,
      theme,
      city,
      date: Date.now(),
      counts: req.body.counts,
      user: userId,
    },
    postId
  );

  console.log("게시글 수정 후", updatePost);

  return res.json(updatePost);
});