review.controller.js 2.6 KB
Newer Older
1
2
3
import Review from '../models/Review.js'
import cheerio from "cheerio";
import fs from 'fs'
Kim, Chaerin's avatar
서연    
Kim, Chaerin committed
4
import axios from 'axios';
5

Kim, Chaerin's avatar
Kim, Chaerin committed
6
7
8
const search = async (req, res, next) => {
    try {
        let reviews = []
9
        let content = []
baesangjune's avatar
baesangjune committed
10
        // Review.find()
11
        const url = "https://www.google.com/search?q=" + encodeURI(req.params.search) + "+site%3Atistory.com&page_no=1"
Kim, Chaerin's avatar
Kim, Chaerin committed
12
        const response1 = await axios.get(url)
13
        // console.log(response1.data)
Kim, Chaerin's avatar
Kim, Chaerin committed
14
15
16
        const $1 = cheerio.load(response1.data);
        $1('.kCrYT').each(async function (i) {
            const title = $1(this).find('h3').text()
17
            const searchParams = new URLSearchParams($1(this).find('a').attr('href'));
Kim, Chaerin's avatar
Kim, Chaerin committed
18
19
            const link = searchParams.get("/url?q")
            const summary = $1(this).find('.s3v9rd').find('.s3v9rd').text()
Kim, Chaerin's avatar
상준    
Kim, Chaerin committed
20
            content.push(getReview(link))
Kim, Chaerin's avatar
Kim, Chaerin committed
21
            if (title) {
22
                reviews[i] = { title: title, link: link }
Kim, Chaerin's avatar
Kim, Chaerin committed
23
24
25
26
            } else if (summary) {
                reviews[i - 1] = { ...reviews[i - 1], summary: summary }
                reviews = reviews.filter(e => e)
            }
27
        })
28
29
30
        let promiseReview = await Promise.all(content)
        promiseReview = promiseReview.filter(e => typeof (e) === 'string')
        reviews.forEach(async (review, i) => {
31
            review["content"] = promiseReview[i]
Kim, Chaerin's avatar
   
Kim, Chaerin committed
32
            const reviews = new Review(review).save()
33
        })
Kim, Chaerin's avatar
   
Kim, Chaerin committed
34

Kim, Chaerin's avatar
Kim, Chaerin committed
35
36
        res.send(reviews)
    } catch (error) {
baesangjune's avatar
baesangjune committed
37
38
        // console.log(error)
        // res.send(error)
39
40
41
    }
}

baesangjune's avatar
.    
baesangjune committed
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//***************네이버 크롤링 할 때 ********************* */
//     try {
//         let reviews = []
//         let content = []
//         const url = "https://search.naver.com/search.naver?where=view&sm=tab_jum&query=" + encodeURI('한라산')
//         const response1 = await axios.get(url)
//         // console.log(response1.data)
//         const $1 = cheerio.load(response1.data);
//         $1('._list').find('.total_wrap').each(async function (i) {
//             reviews[i] = { name: $1(this).find('.total_tit').text(), summery: $1(this).find('.dsc_txt').text(), link: $1(this).find('.total_tit').attr('href') }
//         })
//         res.send(reviews)
//     } catch (error) {
//         console.log(error)
//         res.send(error)
//     }
// }

Kim, Chaerin's avatar
상준    
Kim, Chaerin committed
60
const getReview = async (link) => {
61
    if (link) {
62
        let content = '없음'
63
64
65
66
67
        const res = await axios.get(link)
        const $2 = cheerio.load(res.data);
        if ($2('.tt_article_useless_p_margin').text()) {
            content = $2('.tt_article_useless_p_margin').text()
        }
68
        return content
Kim, Chaerin's avatar
Kim, Chaerin committed
69
70
    }
}
Kim, Chaerin's avatar
?    
Kim, Chaerin committed
71

baesangjune's avatar
baesangjune committed
72
export default { search }