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

Lee Soobeom's avatar
Lee Soobeom committed
11
  const { userId } = req.auth;
Lee Soobeom's avatar
Lee Soobeom committed
12

Lee Soobeom's avatar
Lee Soobeom committed
13
14
15
16
  const form = formidable({
    uploadDir: "uploads",
    keepExtensions: true,
    multiples: true,
Lee Soobeom's avatar
Lee Soobeom committed
17
  });
Lee Soobeom's avatar
Lee Soobeom committed
18

Lee Soobeom's avatar
Lee Soobeom committed
19
20
21
  form.parse(req, (err, fields, files) => {
    if (Array.isArray(files.picture)) {
      for (var i = 0; i < files.picture.length; i++) {
Lee Soobeom's avatar
Lee Soobeom committed
22
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
        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
        );
      }
    } // create fileinfos row

    if (!Array.isArray(fields.title)) {
      const title = fields.title;
      if (!Array.isArray(fields.text)) {
        const text = fields.text;
        if (!Array.isArray(fields.theme)) {
          const theme = fields.theme;
          if (!Array.isArray(fields.city)) {
            const city = fields.city;

            const postRes = postDb.createPostRow({
              title,
              text,
              theme,
              city,
              date: Date.now(),
              counts: 0,
              user: userId,
            }); // create posts
          }
Lee Soobeom's avatar
Lee Soobeom committed
53
54
55
56
        }
      }
    }
  });
57
});
Lee Soobeom's avatar
Lee Soobeom committed
58
59
60

export const getAllPost = asyncWrap(async (req, res) => {
  const posts = await postDb.getPosts();
Lee Soobeom's avatar
Lee Soobeom committed
61
  console.log(posts);
Lee Soobeom's avatar
Lee Soobeom committed
62
63
64
65
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

  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
96
97
98

export const deleteOnePost = asyncWrap(async (req, res) => {
  const { postId } = req.params;
Lee Soobeom's avatar
Lee Soobeom committed
99
  // console.log(postId);
Lee Soobeom's avatar
Lee Soobeom committed
100
101
102
103
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
  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);
});