place.controller.js 3.58 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
4
import fs from 'fs'
import axios from 'axios';
baesangjune's avatar
.    
baesangjune committed
5

baesangjune's avatar
.    
baesangjune committed
6
const searchPlace = async (req, res) => {
baesangjune's avatar
.    
baesangjune committed
7

baesangjune's avatar
baesangjune committed
8
9
10
11
12
13
14
15
16
17
18
19
20
    let DuplicateCheckPlace = await Places.findOne({ name: req.params.search })

    if (DuplicateCheckPlace) {
        res.send(DuplicateCheckPlace)
        onsole.log("11111111111111111111111Place################ 기존플레이스줄력중")
    }
    else {
        console.log("2222222222222222222222222222222222222222222222222222222")
        const url = "https://search.naver.com/search.naver?sm=tab_hty.top&where=nexearch&query=" + encodeURI(req.params.search)
        const editUrl = /(http(s)?:\/\/)([a-z0-9\w]+\.*)+[a-z0-9]{2,4}/gi
        axios.get(url)
            .then(async (response) => {
                const html = response.data
baesangjune's avatar
baesangjune committed
21
                // fs.writeFileSync("googleReview", html, { encoding: 'utf-8' })
baesangjune's avatar
baesangjune committed
22
23
24
25
26
27
28
29
30
31
                let $1 = cheerio.load(html);

                let places = {}
                $1('.ct_box_area').each(function (i) {
                    places[i] = { name: $1('.biz_name').text(), category: $1('.category').text(), address: $1('.addr').text() }
                })
                // 값이 비어있거나 에러가 생겼을 때를 대비해 try catch를 해야함
                const newPlaces = await new Places(places[0]
                ).save()
                res.send(places)
baesangjune's avatar
.    
baesangjune committed
32
            })
baesangjune's avatar
baesangjune committed
33
    }
baesangjune's avatar
.    
baesangjune committed
34
35
36
}

const searchImg = async (req, res) => {
baesangjune's avatar
.    
baesangjune committed
37

baesangjune's avatar
baesangjune committed
38
    let DuplicateCheckImg = await Places.findOne({ name: req.params.search })
baesangjune's avatar
.    
baesangjune committed
39
40


baesangjune's avatar
baesangjune committed
41
42
43
44
45
46
47
    if (DuplicateCheckImg.img !== "https://t1.daumcdn.net/thumb/R600x0/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fqna%2Fimage%2F4b035cdf8372d67108f7e8d339660479dfb41bbd" ) {
        res.send(DuplicateCheckImg)
        console.log("333333333333333333333333333IMG@@@@@@@@@@@@@@@@@@@ 기존이미지줄력중")
    }
    else if (DuplicateCheckImg.img === "https://t1.daumcdn.net/thumb/R600x0/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fqna%2Fimage%2F4b035cdf8372d67108f7e8d339660479dfb41bbd" ) {
        console.log("4444444444444444444444444444444444444444444444444")
        const imgUrl = "https://www.google.com/search?q=" + encodeURI(req.params.search) + "+site:tistory.com/&sxsrf=ALeKk023Dv08KQDodRmpB5222lQuzw2Vaw:1610612821100&source=lnms&tbm=isch"
baesangjune's avatar
.    
baesangjune committed
48

baesangjune's avatar
baesangjune committed
49
50
51
52
53
        axios.get(imgUrl)
            .then(async (response) => {
                const html = response.data
                let name = req.params.search
                let $1 = cheerio.load(html);
baesangjune's avatar
.    
baesangjune committed
54

baesangjune's avatar
baesangjune committed
55
56
57
58
59
60
61
62
63
64
65
66
                let images = $1('.RAyV4b').find('img').attr('src')

                //사진만 업데이트
                let Place = await Places.findOne({ name: req.params.search })
                Place.times.push(new Date().toLocaleString())
                await Places.updateOne({ name: req.params.search }, { img: images, times: Place.times })

                const newPlaces = await new Places(
                ).save()

                res.send(images)
            })
baesangjune's avatar
.    
baesangjune committed
67

baesangjune's avatar
baesangjune committed
68
69
70
    } else {
        console.log("IMG에러")
    }
baesangjune's avatar
.    
baesangjune committed
71

baesangjune's avatar
.    
baesangjune committed
72

baesangjune's avatar
.    
baesangjune committed
73

baesangjune's avatar
.    
baesangjune committed
74
75
}

baesangjune's avatar
.    
baesangjune committed
76
const searchAssociation = async (req, res) => {
Kim, Chaerin's avatar
Kim, Chaerin committed
77
    let Place = await Places.findOne({ name: req.query.keyword })
baesangjune's avatar
.    
baesangjune committed
78

Kim, Chaerin's avatar
Kim, Chaerin committed
79
80
81
82
    if (!Place) {
        res.send([])
    }
    let addresse = Place.address.split(' ')[0]
baesangjune's avatar
.    
baesangjune committed
83
84
85

    // let AssociationsId = []

Kim, Chaerin's avatar
Kim, Chaerin committed
86
    let addressPlaces = new RegExp(`${addresse}`)
baesangjune's avatar
.    
baesangjune committed
87
88
    let responsePlaces = await Places.find({ address: addressPlaces })
    res.send(responsePlaces)
Kim, Chaerin's avatar
Kim, Chaerin committed
89

baesangjune's avatar
.    
baesangjune committed
90
91
92
93
94
95
96
    // responsePlaces.map(Association => {
    //     AssociationsId.push(Association._id)
    // })
    // console.log("Associations = ", Associations)
    // res.send(AssociationsId)
}

baesangjune's avatar
.    
baesangjune committed
97

baesangjune's avatar
.    
baesangjune committed
98
export default { searchImg, searchPlace, searchAssociation }