room.controller.js 3.46 KB
Newer Older
우지원's avatar
e    
우지원 committed
1
import { Room, User } from "../models/index.js";
이재연's avatar
이재연 committed
2
3
4
import { customAlphabet } from "nanoid";
import isLength from "validator/lib/isLength.js";
import RoomModel from "../models/room.model.js";
Kim, Chaerin's avatar
Kim, Chaerin committed
5

이재연's avatar
이재연 committed
6
const nanoid = customAlphabet("1234567890abcdef", 10);
우지원's avatar
0716    
우지원 committed
7

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

우지원's avatar
우지원 committed
23
24
      //userId에 일치하는 사용자의 roomNumber에 roomId저장하기
      const user_Id = await User.findOne({ where: { id: userId } });
이재연's avatar
이재연 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];
우지원's avatar
우지원 committed
31
      }
우지원's avatar
0727    
우지원 committed
32
      // console.log('user_Id.roomNumber2:', user_Id.roomNumber)
이재연's avatar
이재연 committed
33
34
35
36
      await User.update(
        { roomNumber: user_Id.roomNumber },
        { where: { id: userId } }
      );
우지원's avatar
우지원 committed
37
    } else {
이재연's avatar
이재연 committed
38
      return res.status(422).send("이미 참여된 방입니다.");
우지원's avatar
0726    
우지원 committed
39
    }
우지원's avatar
e    
우지원 committed
40
  } else {
이재연's avatar
이재연 committed
41
    return res.status(422).send("참여코드와 일치하는 방이 존재하지 않습니다.");
Kim, Chaerin's avatar
Kim, Chaerin committed
42
43
44
  }
};

우지원's avatar
e    
우지원 committed
45
const createRoom = async (req, res) => {
우지원's avatar
0728    
우지원 committed
46
  // console.log('룸정보', req.body)
우지원's avatar
0726    
우지원 committed
47
  const { name, owner, member, profileimg } = req.body;
이재연's avatar
이재연 committed
48
  const id = nanoid();
우지원's avatar
e    
우지원 committed
49
  const Id = await Room.findOne({ where: { id: id } });
우지원's avatar
0727    
우지원 committed
50
  // console.log('id:', id)
우지원's avatar
0726    
우지원 committed
51
  while (Boolean(Id)) {
이재연's avatar
이재연 committed
52
    const id = nanoid();
우지원's avatar
e    
우지원 committed
53
    const Id = await Room.findOne({ where: { id: id } });
우지원's avatar
0716    
우지원 committed
54
55
56
  }
  try {
    if (!isLength(name, { min: 3, max: 20 })) {
이재연's avatar
이재연 committed
57
      return res.status(422).send("방이름은 3-20자여야 합니다.");
우지원's avatar
0716    
우지원 committed
58
    }
우지원's avatar
0727    
우지원 committed
59
    //새로운 RoomDB생성
우지원's avatar
0726    
우지원 committed
60
    const newRoom = {
우지원's avatar
e    
우지원 committed
61
62
63
      id: id,
      name: name,
      owner: owner,
우지원's avatar
0726    
우지원 committed
64
      member: [member],
우지원's avatar
e    
우지원 committed
65
      profileimg: profileimg,
이재연's avatar
이재연 committed
66
    };
우지원's avatar
0727    
우지원 committed
67
    // console.log('newRoom:', newRoom)
이재연's avatar
이재연 committed
68
    await Room.create(newRoom);
우지원's avatar
0727    
우지원 committed
69
70
71

    //user.roomNumber에 id추가
    const user_Id = await User.findOne({ where: { id: owner } });
이재연's avatar
이재연 committed
72
73
74
75
76
77
    if (Boolean(user_Id.roomNumber)) {
      //다른 roomNumber가 이미 들어가 있는 경우 id추가
      user_Id.roomNumber.push(id);
    } else {
      //첫 roomNumber인 경우
      user_Id.roomNumber = [id];
우지원's avatar
0727    
우지원 committed
78
79
    }
    // console.log('user_Id.roomNumber2:', user_Id.roomNumber)
이재연's avatar
이재연 committed
80
81
82
83
84
    await User.update(
      { roomNumber: user_Id.roomNumber },
      { where: { id: owner } }
    );
    res.json(newRoom);
우지원's avatar
0716    
우지원 committed
85
  } catch (error) {
이재연's avatar
이재연 committed
86
87
    console.log(error);
    res.status(500).send("방생성 에러");
우지원's avatar
0716    
우지원 committed
88
  }
이재연's avatar
이재연 committed
89
};
우지원's avatar
0716    
우지원 committed
90

우지원's avatar
0728    
우지원 committed
91
const getRoom = async (req, res) => {
이재연's avatar
이재연 committed
92
93
94
95
96
97
98
99
100
101
102
  console.log("fhgfghdgfdgf:", req.body);
  const roomId = req.body
  try {
    const roomlist = await Room.findAll({ where: { id: roomId } });
    console.log(roomlist);
    res.json(roomlist)
  } catch (error) {
    console.log(error);
    res.status(500).send("에러");
  }
};
우지원's avatar
e    
우지원 committed
103

Kim, Chaerin's avatar
Kim, Chaerin committed
104
export default {
이재연's avatar
이재연 committed
105
106
107
  joinRoom,
  createRoom,
  getRoom,
Kim, Chaerin's avatar
Kim, Chaerin committed
108
};