room.controller.js 6.38 KB
Newer Older
우지원's avatar
e    
우지원 committed
1
import { Room, User } from "../models/index.js";
Kim, Chaerin's avatar
Kim, Chaerin committed
2
3
4
import { customAlphabet } from "nanoid";
import isLength from "validator/lib/isLength.js";
import RoomModel from "../models/room.model.js";
이재연's avatar
aaaa    
이재연 committed
5
import multer from "multer";
Kim, Chaerin's avatar
Kim, Chaerin committed
6
const nanoid = customAlphabet("1234567890abcdef", 10);
우지원's avatar
0716    
우지원 committed
7

우지원's avatar
e    
우지원 committed
8
const joinRoom = async (req, res) => {
Kim, Chaerin's avatar
Kim, Chaerin committed
9
  const { userId, roomId } = req.body;
우지원's avatar
e    
우지원 committed
10
  const room_Id = await Room.findOne({ where: { id: roomId } });
Kim, Chaerin's avatar
Kim, Chaerin committed
11
12
  if (Boolean(room_Id)) {
    //roomId에 일치하는 방이 존재할때
우지원's avatar
e    
우지원 committed
13
    //roomId에 일치하는 방의 member정보에 userId 저장하기
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
14
    //member정보에 userId가 이미 저장되어 있는지 확인 -> 이미 참여된 방인지 확인
15
    const includeUserId = room_Id.member.includes(parseInt(userId));// 이미 참여되어있는데 확인 못하고 있음.
Kim, Chaerin's avatar
Kim, Chaerin committed
16
17
18
19
    // console.log('Include확인:',includeUserId)
    if (!includeUserId) {
      //아직 참여되지 않은 방인경우
      room_Id.member.push(userId); //member에 userId추가
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
20
      // console.log('room_Id.member2:', room_Id.member)
Kim, Chaerin's avatar
Kim, Chaerin committed
21
      await Room.update({ member: room_Id.member }, { where: { id: roomId } });
우지원's avatar
e    
우지원 committed
22

Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
23
24
      //userId에 일치하는 사용자의 roomNumber에 roomId저장하기
      const user_Id = await User.findOne({ where: { id: userId } });
Kim, Chaerin's avatar
Kim, Chaerin committed
25
26
27
28
29
30
      if (Boolean(user_Id.roomNumber)) {
        //다른 roomNumber가 이미 들어가 있는 경우 roomId추가
        user_Id.roomNumber.push(roomId);
      } else {
        //첫 roomNumber인 경우
        user_Id.roomNumber = [roomId];
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
31
32
      }
      // console.log('user_Id.roomNumber2:', user_Id.roomNumber)
Kim, Chaerin's avatar
Kim, Chaerin committed
33
34
35
36
      await User.update(
        { roomNumber: user_Id.roomNumber },
        { where: { id: userId } }
      );
37
      res.json(true);
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
38
    } else {
Kim, Chaerin's avatar
Kim, Chaerin committed
39
      return res.status(422).send("이미 참여된 방입니다.");
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
40
    }
우지원's avatar
e    
우지원 committed
41
  } else {
Kim, Chaerin's avatar
Kim, Chaerin committed
42
    return res.status(422).send("참여코드와 일치하는 방이 존재하지 않습니다.");
Kim, Chaerin's avatar
Kim, Chaerin committed
43
44
45
  }
};

Kim, Chaerin's avatar
Kim, Chaerin committed
46
const upLoadRoomImg = multer({ dest: "roomUploads/" });
47
48
49
const roomImgUpload = upLoadRoomImg.fields([
  { name: "profileimg", maxCount: 1 },
]);
Kim, Chaerin's avatar
Kim, Chaerin committed
50

권병윤's avatar
0807    
권병윤 committed
51
52
53
const update = async (req, res) => {
  try {
    console.log("id:", req.body.id);
54
55
    const id = req.body.id; //roomId
    const avatar = req.files["profileimg"][0]; //profileimg
권병윤's avatar
0807    
권병윤 committed
56
57
58
59
60
61
62
63
64
65
    const img = avatar.filename;
    console.log(img);
    await Room.update({ profileimg: img }, { where: { id: id } });
    res.json(img);
  } catch (error) {
    console.log(error);
    res.status(500).send("이미지 업데이트 실패");
  }
};

우지원's avatar
e    
우지원 committed
66
const createRoom = async (req, res) => {
Kim, Chaerin's avatar
Kim, Chaerin committed
67
68
69
  const { userId, name } = req.body;
  const avatar = req.files["profileimg"][0];
  const img = avatar.filename;
70
  const id = nanoid();
우지원's avatar
e    
우지원 committed
71
  const Id = await Room.findOne({ where: { id: id } });
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
72
  // console.log('id:', id)
Kim, Chaerin's avatar
Kim, Chaerin committed
73
  while (Id) {
74
    const id = nanoid();
우지원's avatar
e    
우지원 committed
75
    const Id = await Room.findOne({ where: { id: id } });
우지원's avatar
0716    
우지원 committed
76
77
78
  }
  try {
    if (!isLength(name, { min: 3, max: 20 })) {
Kim, Chaerin's avatar
Kim, Chaerin committed
79
      return res.status(422).send("방이름은 3-20자여야 합니다.");
우지원's avatar
0716    
우지원 committed
80
    }
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
81
82
    //새로운 RoomDB생성
    const newRoom = {
우지원's avatar
e    
우지원 committed
83
84
      id: id,
      name: name,
Kim, Chaerin's avatar
Kim, Chaerin committed
85
86
87
      owner: userId,
      member: [userId],
      profileimg: img,
88
    };
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
89
    // console.log('newRoom:', newRoom)
Kim, Chaerin's avatar
Kim, Chaerin committed
90
    await Room.create(newRoom);
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
91
92

    //user.roomNumber에 id추가
Kim, Chaerin's avatar
Kim, Chaerin committed
93
    const user_Id = await User.findOne({ where: { id: userId } });
94
95
96
97
98
99
    if (user_Id.roomNumber) {
      //다른 roomNumber가 이미 들어가 있는 경우 id추가
      user_Id.roomNumber.push(id);
    } else {
      //첫 roomNumber인 경우
      user_Id.roomNumber = [id];
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
100
101
    }
    // console.log('user_Id.roomNumber2:', user_Id.roomNumber)
102
103
104
105
106
    await User.update(
      { roomNumber: user_Id.roomNumber },
      { where: { id: userId } }
    );
    res.json(newRoom);
우지원's avatar
0716    
우지원 committed
107
  } catch (error) {
Kim, Chaerin's avatar
Kim, Chaerin committed
108
109
    console.log(error);
    res.status(500).send("방생성 에러");
우지원's avatar
0716    
우지원 committed
110
  }
Kim, Chaerin's avatar
Kim, Chaerin committed
111
};
우지원's avatar
0716    
우지원 committed
112

Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
113
const getRoom = async (req, res) => {
우지원's avatar
우지원 committed
114
  // console.log("fhgfghdgfdgf:", req.body);
Kim, Chaerin's avatar
Kim, Chaerin committed
115
  try {
우지원's avatar
우지원 committed
116
117
    const roomlist = await Room.findAll({ where: { id: req.body } });
    // console.log(roomlist);
118
    res.json(roomlist);
Kim, Chaerin's avatar
Kim, Chaerin committed
119
120
121
122
123
  } catch (error) {
    console.log(error);
    res.status(500).send("에러");
  }
};
Kim, Chaerin's avatar
merge19    
Kim, Chaerin committed
124

우지원's avatar
우지원 committed
125
const exitRoom = async (req, res) => {
126
127
  const { id, roomId } = req.params;
  console.log(id, roomId);
우지원's avatar
우지원 committed
128
  const room = await Room.findOne({ where: { id: roomId } });
129
130
131
132
  console.log(room.member);
  const index = room.member.indexOf(id);
  console.log("index", index);
  room.member.splice(index, 1);
우지원's avatar
우지원 committed
133
134
135
  await Room.update({ member: room.member }, { where: { id: roomId } });

  const user = await User.findOne({ where: { id: id } });
136
137
138
139
  console.log(user.roomNumber);
  const index2 = user.roomNumber.indexOf(id);
  console.log("index", index2);
  user.roomNumber.splice(index2, 1);
우지원's avatar
우지원 committed
140
  await User.update({ roomNumber: user.roomNumber }, { where: { id: id } });
141
};
우지원's avatar
우지원 committed
142

143
144
145
const changename = async (req, res) => {
  const { id, name } = req.body;
  console.log(req.body);
권병윤's avatar
0806    
권병윤 committed
146
  try {
147
148
149
150
    await Room.update({ name: name }, { where: { id: id } });
    const room1 = await Room.findOne({ where: { id: id } });
    console.log("Room:", room1);
  } catch (error) {
권병윤's avatar
0806    
권병윤 committed
151
152
153
154
155
    console.log(error);
    res.status(500).send("에러");
  }
};

156
const joinChannel = async (req, res) => {
157
  const { roomId, channelName, plusUser, index } = req.body;
158
  const room = await Room.findOne({ where: { id: roomId } });
159
  room.channel[index][channelName].push(plusUser);
160
  await Room.update({ channel: room.channel }, { where: { id: roomId } });
161
162
  return res.json(true);
};
163

우지원's avatar
우지원 committed
164
const doubleJoin = async (req, res) => {
165
  const { roomId, index1, index2, joinChName } = req.body;
우지원's avatar
우지원 committed
166
  const room = await Room.findOne({ where: { id: roomId } });
167
  room.channel[index1][joinChName].splice(index2, 1);
우지원's avatar
우지원 committed
168
  await Room.update({ channel: room.channel }, { where: { id: roomId } });
169
170
  return res.json(true);
};
우지원's avatar
0805    
우지원 committed
171

172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
const makeChannel = async (req, res) => {
  const { id, channelName, number } = req.body;
  console.log(req.body);
  const room = await Room.findOne({ where: { id: id } });
  room.channel.push({[channelName] : []});
  await Room.update({channel:room.channel},{where: {id: id}});
  return res.json(true);
};

const channelDelete = async (req, res) => {
  const { id,  number } = req.body;
  const room = await Room.findOne({ where: { id: id } });
  room.channel.splice(number, 1 );
  await Room.update({channel:room.channel},{where: {id: id}});
  return res.json(true);
};
우지원's avatar
우지원 committed
188

Kim, Chaerin's avatar
Kim, Chaerin committed
189
export default {
190
191
192
193
194
195
196
197
  joinRoom,
  roomImgUpload,
  createRoom,
  getRoom,
  exitRoom,
  changename,
  joinChannel,
  doubleJoin,
198
199
200
  update,
  makeChannel,
  channelDelete
Kim, Chaerin's avatar
Kim, Chaerin committed
201
};