category.controller.js 1.49 KB
Newer Older
kusang96's avatar
kusang96 committed
1
2
3
4
import Category from "../schemas/Category.js";

const getCategory = async (req, res) => {
    try {
박상호's avatar
213    
박상호 committed
5
        const category = await Category.find({}, { _id: 0 })
kusang96's avatar
kusang96 committed
6
7
8
9
10
11
12
        res.json(category)
    } catch (error) {
        console.log(error)
        res.status(500).send('카테고리 검색 실패')
    }
}

박상호's avatar
박상호 committed
13
14
15
const getSubCategory = async (req, res) => {
    const { sub } = req.params
    try {
Kim, Subin's avatar
정리    
Kim, Subin committed
16
        const subcategory = await Category.findOne({}, { _id: 0 }).select(`${sub}`)
박상호's avatar
박상호 committed
17
18
        res.json(subcategory);
    } catch (error) {
Kim, Subin's avatar
정리    
Kim, Subin committed
19
        console.log(error)
박상호's avatar
박상호 committed
20
21
        res.status(500).send('카테고리를 불러오지 못했습니다.')
    }
이재연's avatar
0115    
이재연 committed
22
23
}

박상호's avatar
박상호 committed
24
25
26
27
28
29
const getToHome = async (res, req) => {
    try {
        const bestProduct = await Product.find({}).sort({ purchase: 1 }).limit(6)
        const newProduct = await Product.find({}).sort({ createdAt: -1 }).limit(6)
        res.json(bestProduct, newProduct)
    } catch {
Kim, Subin's avatar
정리    
Kim, Subin committed
30
        console.log(error)
박상호's avatar
박상호 committed
31
32
        res.status(500).send('상품을 불러오지 못했습니다.')
    }
이재연's avatar
0115    
이재연 committed
33
34
}

박상호's avatar
박상호 committed
35
36
const getsubId = async (req, res, next, ele) => {
    try {
Kim, Subin's avatar
정리    
Kim, Subin committed
37
        const sub = await Category.find({ ele })
박상호's avatar
박상호 committed
38
39
40
41
42
43
44
45
46
47
        if (!sub) {
            res.status(404).send('카테고리가 존재하지 않습니다.')
        } req.category = sub
        req.subcategory = sub
        next()
    }
    catch (error) {
        console.log(error);
        res.status(500).send('카테고리를 불러오지 못했습니다.')
    }
이재연's avatar
0115    
이재연 committed
48
49
50
    next()
}

kusang96's avatar
kusang96 committed
51
export default { getCategory, getsubId, getSubCategory, getToHome }