user.controller.js 2.88 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
import multer from "multer";
이재연's avatar
이재연 committed
6
import Order from "../schemas/Order.js";
7
8
9
10

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

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

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

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

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

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

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

        const newUser = await new User({
Kim, Subin's avatar
Kim, Subin committed
49
            name,
이재연's avatar
이재연 committed
50
51
            number1,
            number2,
이재연's avatar
이재연 committed
52
            id,
Jiwon Yoon's avatar
qwr    
Jiwon Yoon committed
53
            password: hash,
이재연's avatar
이재연 committed
54
            tel,
박상호's avatar
0120    
박상호 committed
55
            email
Kim, Subin's avatar
Kim, Subin committed
56
        }).save()
박상호's avatar
0120    
박상호 committed
57
        await new Cart({ userId: newUser._id }).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
        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)
        }
Jiwon Yoon's avatar
Jiwon Yoon committed
82

83
84
85
86
87
88
    } catch (error) {
        console.log(error);
        res.status(500).send('이미지 업데이트 실패')
    }
}

이재연's avatar
이재연 committed
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
const addorder = async (req, res) => {
    const {userId}=req.body
    try {
        const order = await Order.find({ userId: userId }).populate({
            path: 'products.productId',
            model: 'Product'
        })
        console.log("hey", order)
        res.status(200).json(order)
    } catch (error) {
        console.log(error)
        res.status(500).send('주문현황을 불러오지 못했습니다.')
    }
}


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