import Places from '../models/Place.js' import cheerio from 'cheerio' import fs from 'fs' import axios from 'axios'; import { time } from 'console'; const searchPlace = async (req, res) => { 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 // console.log(html) fs.writeFileSync("googleReview", html, { encoding: 'utf-8' }) let $1 = cheerio.load(html); let places = {} $1('.ct_box_area').each(function (i) { // console.log($1('.biz_name').text()) // console.log($1('.category').text()) // console.log($1('.addr').text()) // console.log($1('.t?ime highlight').text()) 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) }) } const searchImg = async (req, res) => { const imgUrl = "https://www.google.com/search?q=" + encodeURI(req.params.search) + "+site:tistory.com/&sxsrf=ALeKk023Dv08KQDodRmpB5222lQuzw2Vaw:1610612821100&source=lnms&tbm=isch" axios.get(imgUrl) .then(async (response) => { const html = response.data let name = req.params.search let $1 = cheerio.load(html); let images = $1('.RAyV4b').find('img').attr('src') // let images = [] // $1('.RAyV4b').each(function (i) { // images[i] = { imgUrl: $(this).find('img').atrr('src') } // }) // console.log('%%%%%%%%%%%%%%%%%%%%%%%%%%%', images) // 여기서 있는건 찾아와서 추가를 시켜야한다. //사진만 업데이트 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) }) } const searchAssociation = async (req, res) => { let Place = await Places.findOne({ name: req.params.search }) let address = Place.address.split(' ')[0] // let AssociationsId = [] let addressPlaces = new RegExp(`${address}`) let responsePlaces = await Places.find({ address: addressPlaces }) res.send(responsePlaces) // responsePlaces.map(Association => { // AssociationsId.push(Association._id) // }) // console.log("Associations = ", Associations) // res.send(AssociationsId) } export default { searchImg, searchPlace, searchAssociation }