mainimg.controller.ts 3.42 KB
Newer Older
백승민's avatar
백승민 committed
1
import { NextFunction, Request, Response } from "express";
백승민's avatar
백승민 committed
2
3
4
5
import isLength from "validator/lib/isLength";
import { TypedRequestAuth } from "./auth.controller";
import { asyncWrap } from "../helpers";
import { mainimgDb } from "../db";
백승민's avatar
백승민 committed
6
import { TypedRequest } from "../types";
백승민's avatar
백승민 committed
7
8
import { ObjectId } from "mongoose";
import formidable from "formidable";
백승민's avatar
백승민 committed
9

백승민's avatar
백승민 committed
10
11
export const createMainimg = asyncWrap(async (reqExp, res) => {
  const req = reqExp as TypedRequestAuth<{ userId: ObjectId }>;
Kim, MinGyu's avatar
Kim, MinGyu committed
12
  const { userId } = req.auth;
백승민's avatar
백승민 committed
13

백승민's avatar
백승민 committed
14
15
16
17
  const form = formidable({
    uploadDir: "uploads",
    keepExtensions: true,
    multiples: false,
백승민's avatar
백승민 committed
18
19
  });

백승민's avatar
백승민 committed
20
21
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
  form.parse(req, (err, fields, files) => {
    if (!Array.isArray(files.mainimg)) {
      //파일 좁히기 중
      if (
        !(
          Array.isArray(fields.city) ||
          Array.isArray(fields.title) ||
          Array.isArray(fields.theme)
        )
      ) {
        const city = fields.city;
        const title = fields.title;
        const theme = fields.theme;
        const originalfilename = files.mainimg?.originalFilename;
        const newfilename = files.mainimg.newFilename;
        if (!(originalfilename === null || newfilename === undefined)) {
          mainimgDb.createMainimg(
            { city, title, theme },
            {
              originalfilename,
              newfilename,
            }
          );
        }
      }
    }
  });
  res.json();
백승민's avatar
백승민 committed
48
49
});

백승민's avatar
백승민 committed
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// if (!isLength(url ?? "", { min: 1 })) {
//   return res.status(422).send("이미지 url을 입력해주세요");
// }

// if (!isLength(title ?? "", { min: 1 })) {
//   return res.status(422).send("이미지 제목을 입력해주세요");
// }

//   const newMainimg = await mainimgDb.createMainimg({
//     theme,
//     city,
//     url,
//     title,
//   });

//   return res.json(newMainimg);
// });

백승민's avatar
백승민 committed
68
export const getMainimg = asyncWrap(async (req, res) => {
백승민's avatar
백승민 committed
69
70
71
72
73
74
75
76
77
78
79
  const mainimgs = await mainimgDb.getMainimg();
  return res.json(mainimgs);
});

export const deleteMainimg = asyncWrap(async (req, res) => {
  const { imgId } = req.params;
  console.log(imgId);
  const deleteCount = await mainimgDb.deleteOneMainimg(imgId);

  return res.json(deleteCount);
});
백승민's avatar
백승민 committed
80

백승민's avatar
백승민 committed
81
82
83
84
85
86
87
88
export const updateMainimg = asyncWrap(async (reqExp, res) => {
  const req = reqExp as TypedRequestAuth<{ userId: ObjectId }>;

  const form = formidable({
    uploadDir: "uploads",
    keepExtensions: true,
    multiples: false,
  });
백승민's avatar
백승민 committed
89

백승민's avatar
백승민 committed
90
91
92
93
  form.parse(req, (err, fields, files) => {
    if (!Array.isArray(files.updatemainimg)) {
      //파일 좁히기 중
      if (
94
95
        !(
          Array.isArray(fields.id) ||
백승민's avatar
백승민 committed
96
97
98
99
100
101
102
103
104
          Array.isArray(fields.city) ||
          Array.isArray(fields.title) ||
          Array.isArray(fields.theme)
        )
      ) {
        const id = fields.id;
        const city = fields.city;
        const title = fields.title;
        const theme = fields.theme;
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
        console.log("error");
        if (!(files.updatemainimg === undefined)) {
          const originalfilename = files.updatemainimg?.originalFilename;
          const newfilename = files.updatemainimg.newFilename;
          if (!(originalfilename === null || newfilename === undefined)) {
            mainimgDb.updateOneMainimg(
              id,
              theme,
              city,
              title,
              originalfilename,
              newfilename
            );
          }
        } else {
          mainimgDb.updateOneMainimg(id, theme, city, title);
백승민's avatar
백승민 committed
121
122
123
124
125
        }
      }
    }
  });
  res.json();
백승민's avatar
백승민 committed
126
});