user.controller.js 2.4 KB
Newer Older
1
import Cart from "../schemas/Cart.js";
kusang96's avatar
dd    
kusang96 committed
2
import User from "../schemas/User.js";
kusang96's avatar
kusang96 committed
3
4
import isLength from 'validator/lib/isLength.js';
import bcrypt from 'bcryptjs';
5
6
7
8
9
import multer from "multer";

const uploadimg = multer({ dest: 'uploads/' });

const imgUpload = uploadimg.fields([
박상호's avatar
박상호 committed
10
    { name: 'avatar', maxCount: 1 }
11
12
13
14
15
16
17
])

const username = (req, res) => {
    res.json(req.account)
    console.log(req.account)
}

박상호's avatar
박상호 committed
18
const userById = async (req, res, next, id) => {
19
20
21
22
23
24
    try {
        const user = await User.findById(id)
        if (!user) {
            res.status(404).send('사용자를 찾을 수 없습니다')
        }
        req.account = user
박상호's avatar
박상호 committed
25
        next()
26
27
28
29
30
31
    } catch (error) {
        console.log(error);
        res.status(500).send('사용자 아이디 검색 실패')
    }
}

Kim, Subin's avatar
Kim, Subin committed
32
33

const signup = async (req, res) => {
이재연's avatar
zz    
이재연 committed
34
    
35
    const { name, number1, number2, id, password,  tel } = req.body
이재연's avatar
zz    
이재연 committed
36
37
    
    console.log(req.body)
Kim, Subin's avatar
Kim, Subin committed
38
    try {
Jiwon Yoon's avatar
qwr    
Jiwon Yoon committed
39
        if (!isLength(password, { min: 8, max: 15 })) {
이재연's avatar
aa    
이재연 committed
40
            return res.status(422).send('비밀번호는 8-15자리로 입력해주세요.')
이재연's avatar
이재연 committed
41
        }
Jiwon Yoon's avatar
qwr    
Jiwon Yoon committed
42
43
        const user = await User.findOne({ id })
        if (user) {
이재연's avatar
aa    
이재연 committed
44
45
46
            return res.status(422).send(`${id}가 이미 사용중입니다.`)
        }

Jiwon Yoon's avatar
qwr    
Jiwon Yoon committed
47
48
49
        const hash = await bcrypt.hash(password, 10)

        const newUser = await new User({
Kim, Subin's avatar
Kim, Subin committed
50
            name,
이재연's avatar
이재연 committed
51
52
            number1,
            number2,
이재연's avatar
이재연 committed
53
            id,
Jiwon Yoon's avatar
qwr    
Jiwon Yoon committed
54
            password: hash,
이재연's avatar
이재연 committed
55
            tel,
Kim, Subin's avatar
Kim, Subin committed
56
        }).save()
이재연's avatar
0115    
이재연 committed
57
        await new Cart({ userId: newUser._id,role}).save()
Kim, Subin's avatar
Kim, Subin committed
58
59
        console.log(newUser)
        res.json(newUser)
kusang96's avatar
kusang96 committed
60

Kim, Subin's avatar
Kim, Subin committed
61
62
    } catch (error) {
        console.log(error)
이재연's avatar
aa    
이재연 committed
63
        res.status(500).send('죄송합니다. 다시 입력해 주십시오.')
Kim, Subin's avatar
Kim, Subin committed
64
65
66
    }
}

67
const update = async (req, res) => {
박상호's avatar
박상호 committed
68
    console.log("req", req.body)
69
    try {
박상호's avatar
박상호 committed
70
71
72
73
74
75
76
77
78
79
80
81
82
        if (req.body.avatar == '') {
            const user = req.account
            user.avatarUrl = req.body.avatar
            const updateUser = await user.save()
            res.json(updateUser)
        } else {
            const avatar = req.files['avatar'][0]
            const user = req.account
            user.avatarUrl = avatar.filename
            const updateUser = await user.save()
            res.json(updateUser)
        }
        
83
84
85
86
87
88
89
    } catch (error) {
        console.log(error);
        res.status(500).send('이미지 업데이트 실패')
    }
}

export default { signup, username, imgUpload, userById, update }