place.controller.js 2.76 KB
Newer Older
baesangjune's avatar
.    
baesangjune committed
1
import Places from '../models/Place.js'
baesangjune's avatar
.    
baesangjune committed
2
import cheerio from 'cheerio'
baesangjune's avatar
.    
baesangjune committed
3
import axios from 'axios';
baesangjune's avatar
.    
baesangjune committed
4

Lee SeoYeon's avatar
merge    
Lee SeoYeon committed
5
const searchPlace = async (req, res, next,) => {
baesangjune's avatar
baesangjune committed
6

Kim, Chaerin's avatar
.    
Kim, Chaerin committed
7
    let DuplicateCheckPlace = await Places.findOne({ name: req.query.keyword })
Lee SeoYeon's avatar
merge    
Lee SeoYeon committed
8
    req.places = DuplicateCheckPlace
Kim, Chaerin's avatar
.    
Kim, Chaerin committed
9
10
11
12
13
    if (DuplicateCheckPlace) {
    }
    else {
        const url = "https://search.naver.com/search.naver?sm=tab_hty.top&where=nexearch&query=" + encodeURI(req.query.keyword)
        const editUrl = /(http(s)?:\/\/)([a-z0-9\w]+\.*)+[a-z0-9]{2,4}/gi
14
15
16
17
18
19
20
21
22
23
24
        const { data: html } = await axios.get(url)
        let $1 = cheerio.load(html);
        let places = {}
        $1('.ct_box_area').each(function (i) {
            places = {
                name: $1('.biz_name').text(), category: $1('.category').text(), address: $1('.addr').text(),
                img: "https://t1.daumcdn.net/thumb/R600x0/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fqna%2Fimage%2F4b035cdf8372d67108f7e8d339660479dfb41bbd",
                times: []
            }
        })
        req.places = places
Kim, Chaerin's avatar
.    
Kim, Chaerin committed
25
    }
Lee SeoYeon's avatar
merge    
Lee SeoYeon committed
26
27
    next()
}
baesangjune's avatar
.    
baesangjune committed
28

Lee SeoYeon's avatar
merge    
Lee SeoYeon committed
29
const searchImg = async (req, res, next) => {
baesangjune's avatar
.    
baesangjune committed
30

baesangjune's avatar
.    
baesangjune committed
31

32
    if (req.places.img !== "https://t1.daumcdn.net/thumb/R600x0/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fqna%2Fimage%2F4b035cdf8372d67108f7e8d339660479dfb41bbd") {
Lee SeoYeon's avatar
merge    
Lee SeoYeon committed
33
34
35
        req.places.times.push(new Date().toLocaleString())
        const newPlaces = await new Places(req.places).save()
        next()
36
    } else if (req.places.img === "https://t1.daumcdn.net/thumb/R600x0/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fqna%2Fimage%2F4b035cdf8372d67108f7e8d339660479dfb41bbd") {
Lee SeoYeon's avatar
merge    
Lee SeoYeon committed
37
        const imgUrl = "https://www.google.com/search?q=" + encodeURI(req.query.keyword) + "+site:tistory.com/&sxsrf=ALeKk023Dv08KQDodRmpB5222lQuzw2Vaw:1610612821100&source=lnms&tbm=isch"
Lee SeoYeon's avatar
..    
Lee SeoYeon committed
38

Lee SeoYeon's avatar
merge    
Lee SeoYeon committed
39
40
41
42
43
44
45
46
47
48
49
        axios.get(imgUrl)
            .then(async (response) => {
                const html = response.data
                let name = req.query.keyword
                let $1 = cheerio.load(html);
                let images = $1('.RAyV4b').find('img').attr('src')
                req.places.img = images
                req.places.times.push(new Date().toLocaleString())
                const newPlaces = await new Places(req.places).save()
                next()
            })
50
51
    } else {
        console.log("이미지 생성 오류발생!!")
Lee SeoYeon's avatar
merge    
Lee SeoYeon committed
52
53
    }
}
baesangjune's avatar
.    
baesangjune committed
54
const searchAssociation = async (req, res) => {
Lee SeoYeon's avatar
merge    
Lee SeoYeon committed
55
56
57
    let Place3 = req.places.address
    if (!Place3) {
        res.send({ error: "Place.address is null" })
Lee SeoYeon's avatar
..    
Lee SeoYeon committed
58
59
    }
    else {
Lee SeoYeon's avatar
merge    
Lee SeoYeon committed
60
        let addresse = Place3.split(' ')[0]
Kim, Chaerin's avatar
.    
Kim, Chaerin committed
61
        let AssociationsId = []
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
62
        let addressPlaces = new RegExp(`${addresse}`)
63
        let responsePlaces = await Places.find({ address: addressPlaces }).sort({ updatedAt: -1 })
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
64
65
        res.send(responsePlaces)
    }
baesangjune's avatar
.    
baesangjune committed
66
67
}

baesangjune's avatar
.    
baesangjune committed
68

Lee SeoYeon's avatar
.    
Lee SeoYeon committed
69
 export default { searchImg, searchPlace, searchAssociation }