room.controller.js 1.51 KB
Newer Older
Soo Hyun Kim's avatar
Soo Hyun Kim committed
1
import Room from "../models/Room.js"
우지원's avatar
수정    
우지원 committed
2
// import { customAlphabet } from 'nanoid'
Soo Hyun Kim's avatar
Soo Hyun Kim committed
3
4
import isLength from 'validator/lib/isLength.js'

우지원's avatar
수정    
우지원 committed
5
// const nanoid = customAlphabet('1234567890abcdef', 10)
Soo Hyun Kim's avatar
Soo Hyun Kim committed
6

Soo Hyun Kim's avatar
Soo Hyun Kim committed
7
8
const makeRoom = async (req, res) => {
    console.log(req.body)
우지원's avatar
수정    
우지원 committed
9
10
    const { roomName, interest, isOpen, moderator, roomId } = req.body;
    console.log(roomName, interest, isOpen, moderator, roomId)
Soo Hyun Kim's avatar
Soo Hyun Kim committed
11

우지원's avatar
수정    
우지원 committed
12
13
14
15
16
17
    // const roomId = nanoid()
    // const room = await Room.findOne({ roomId })
    // while (room) {
    //     roomId = nanoid()
    //     room = await Room.findOne({ roomId })
    // }
Soo Hyun Kim's avatar
Soo Hyun Kim committed
18

Soo Hyun Kim's avatar
Soo Hyun Kim committed
19
    try {
Soo Hyun Kim's avatar
Soo Hyun Kim committed
20
        if (!isLength(roomName, { min: 3, max: 20 })) {
Soo Hyun Kim's avatar
Soo Hyun Kim committed
21
22
23
            return res.status(422).send('채팅방의 이름은 3-20자여야 합니다.')
        } else if (interest=='Choose...' || interest==''){
            return res.status(422).send('분야를 반드시 선택하여야 합니다.')
Soo Hyun Kim's avatar
Soo Hyun Kim committed
24
        }
Soo Hyun Kim's avatar
Soo Hyun Kim committed
25
26
        const newRoom = await new Room({
            roomName,
Soo Hyun Kim's avatar
Soo Hyun Kim committed
27
            interest,
우지원's avatar
수정    
우지원 committed
28
29
30
            isOpen,
            moderator,
            roomId,
Soo Hyun Kim's avatar
Soo Hyun Kim committed
31
        }).save()
Soo Hyun Kim's avatar
Soo Hyun Kim committed
32
33
        console.log(newRoom)
        res.json(newRoom)
Soo Hyun Kim's avatar
Soo Hyun Kim committed
34
35
    } catch (error) {
        console.log(error)
Soo Hyun Kim's avatar
Soo Hyun Kim committed
36
        res.status(500).send('방생성 에러')
Soo Hyun Kim's avatar
Soo Hyun Kim committed
37
38
39
    }
}

우지원's avatar
수정    
우지원 committed
40
41
42
43
44
45
46
47
48
49
// const checkmember = async (req, res) => {
//     try {
//         let user = await Room.findOne(req.body).select('roomName').exec()
//         console.log(user)
//         return res.json(user)
//     } catch (error) {
//         alert('올바르지 못한 접근입니다.')
//     }
// }

Soo Hyun Kim's avatar
Soo Hyun Kim committed
50
export default { makeRoom }