place.controller.js 3.5 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
    let DuplicateCheckPlace = await Places.findOne({ name: req.query.keyword })
baesangjune's avatar
baesangjune committed
9
10
11

    if (DuplicateCheckPlace) {
        res.send(DuplicateCheckPlace)
baesangjune's avatar
baesangjune committed
12
        console.log("11111111111111111111111Place################ 기존플레이스줄력중")
baesangjune's avatar
baesangjune committed
13
14
15
    }
    else {
        console.log("2222222222222222222222222222222222222222222222222222222")
baesangjune's avatar
baesangjune committed
16
        const url = "https://search.naver.com/search.naver?sm=tab_hty.top&where=nexearch&query=" + encodeURI(req.query.keyword)
baesangjune's avatar
baesangjune committed
17
18
19
20
        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.query.keyword })
baesangjune's avatar
.    
baesangjune committed
39
40


baesangjune's avatar
baesangjune committed
41
    if (DuplicateCheckImg.img !== "https://t1.daumcdn.net/thumb/R600x0/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fqna%2Fimage%2F4b035cdf8372d67108f7e8d339660479dfb41bbd") {
baesangjune's avatar
baesangjune committed
42
43
44
        res.send(DuplicateCheckImg)
        console.log("333333333333333333333333333IMG@@@@@@@@@@@@@@@@@@@ 기존이미지줄력중")
    }
baesangjune's avatar
baesangjune committed
45
    else if (DuplicateCheckImg.img === "https://t1.daumcdn.net/thumb/R600x0/?fname=http%3A%2F%2Ft1.daumcdn.net%2Fqna%2Fimage%2F4b035cdf8372d67108f7e8d339660479dfb41bbd") {
baesangjune's avatar
baesangjune committed
46
        console.log("4444444444444444444444444444444444444444444444444")
baesangjune's avatar
baesangjune committed
47
        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
48

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

baesangjune's avatar
baesangjune committed
55
56
57
                let images = $1('.RAyV4b').find('img').attr('src')

                //사진만 업데이트
baesangjune's avatar
baesangjune committed
58
                let Place = await Places.findOne({ name: req.query.keyword })
baesangjune's avatar
baesangjune committed
59
                Place.times.push(new Date().toLocaleString())
baesangjune's avatar
하하    
baesangjune committed
60
                await Places.updateOne({ name: req.query.keyword }, { img: images, times: Place.times })
baesangjune's avatar
baesangjune committed
61
62
                res.send(images)
            })
baesangjune's avatar
.    
baesangjune committed
63

baesangjune's avatar
baesangjune committed
64
65
66
    } else {
        console.log("IMG에러")
    }
baesangjune's avatar
.    
baesangjune committed
67

baesangjune's avatar
.    
baesangjune committed
68

baesangjune's avatar
.    
baesangjune committed
69

baesangjune's avatar
.    
baesangjune committed
70
71
}

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

baesangjune's avatar
baesangjune committed
75
76
77
    // if (!Place) {
    //     res.send([])
    // }
Kim, Chaerin's avatar
Kim, Chaerin committed
78
    let addresse = Place.address.split(' ')[0]
baesangjune's avatar
.    
baesangjune committed
79

baesangjune's avatar
baesangjune committed
80
    let AssociationsId = []
Kim, Chaerin's avatar
Kim, Chaerin committed
81
    let addressPlaces = new RegExp(`${addresse}`)
baesangjune's avatar
.    
baesangjune committed
82
83
    let responsePlaces = await Places.find({ address: addressPlaces })
    res.send(responsePlaces)
Kim, Chaerin's avatar
Kim, Chaerin committed
84

baesangjune's avatar
.    
baesangjune committed
85
86
87
88
89
90
91
    // responsePlaces.map(Association => {
    //     AssociationsId.push(Association._id)
    // })
    // console.log("Associations = ", Associations)
    // res.send(AssociationsId)
}

baesangjune's avatar
.    
baesangjune committed
92

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