place.controller.js 3.1 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

baesangjune's avatar
baesangjune 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 })
baesangjune's avatar
baesangjune 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
    }
baesangjune's avatar
baesangjune committed
26
27
    next()
}
baesangjune's avatar
.    
baesangjune committed
28

baesangjune's avatar
baesangjune 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") {
baesangjune's avatar
baesangjune 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") {
baesangjune's avatar
baesangjune committed
37
        const imgUrl = "https://www.google.com/search?q=" + encodeURI(req.query.keyword) + "+site:tistory.com/&sxsrf=ALeKk023Dv08KQDodRmpB5222lQuzw2Vaw:1610612821100&source=lnms&tbm=isch"
baesangjune's avatar
.    
baesangjune committed
38

baesangjune's avatar
baesangjune committed
39
40
41
42
43
44
45
        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
46
47
<<<<<<< HEAD
=======
48
                console.log("4141414141414141", req.places)
baesangjune's avatar
baesangjune committed
49
50
                //사진만 업데이트
                // let Place2 = await Places.findOne({ name: req.query.keyword })
51
>>>>>>> origin/cherry
baesangjune's avatar
baesangjune committed
52
53
54
55
                req.places.times.push(new Date().toLocaleString())
                const newPlaces = await new Places(req.places).save()
                next()
            })
56
57
    } else {
        console.log("이미지 생성 오류발생!!")
baesangjune's avatar
baesangjune committed
58
    }
baesangjune's avatar
.    
baesangjune committed
59
}
baesangjune's avatar
.    
baesangjune committed
60
const searchAssociation = async (req, res) => {
baesangjune's avatar
baesangjune committed
61
62
    let Place3 = req.places.address
    if (!Place3) {
63
64
<<<<<<< HEAD
=======
baesangjune's avatar
baesangjune committed
65
        console.log("asdfasdfasdf222222222222222222dsaf2222222222214123q5", Place3)
66
>>>>>>> origin/cherry
baesangjune's avatar
baesangjune committed
67
        res.send({ error: "Place.address is null" })
Kim, Chaerin's avatar
.    
Kim, Chaerin committed
68
69
    }
    else {
baesangjune's avatar
baesangjune committed
70
        let addresse = Place3.split(' ')[0]
Kim, Chaerin's avatar
.    
Kim, Chaerin committed
71
72
        let AssociationsId = []
        let addressPlaces = new RegExp(`${addresse}`)
73
        let responsePlaces = await Places.find({ address: addressPlaces }).sort({ updatedAt: -1 })
Kim, Chaerin's avatar
.    
Kim, Chaerin committed
74
        res.send(responsePlaces)
Kim, Chaerin's avatar
Kim, Chaerin committed
75
    }
baesangjune's avatar
.    
baesangjune committed
76
77
}

baesangjune's avatar
.    
baesangjune committed
78

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