review.controller.js 2.66 KB
Newer Older
1
2
import Review from '../models/Review.js'
import cheerio from "cheerio";
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
3

4
import fs from 'fs'
Kim, Chaerin's avatar
서연    
Kim, Chaerin committed
5
import axios from 'axios';
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
6

Lee SeoYeon's avatar
0113    
Lee SeoYeon committed
7
// const Iconv = iconv.Iconv
8

Kim, Chaerin's avatar
Kim, Chaerin committed
9
const search = async (req, res, next) => {
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
10
    //**************************구글 크롤링 할 때************************/
Kim, Chaerin's avatar
Kim, Chaerin committed
11
12
    try {
        let reviews = []
13
        let content = []
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
14

15
        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
16
        const response1 = await axios.get(url)
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
17
18
19

        fs.writeFileSync("googleSearch", response1.data, { encoding: 'utf-8' })

20
        // console.log(response1.data)
Kim, Chaerin's avatar
Kim, Chaerin committed
21
22
23
        const $1 = cheerio.load(response1.data);
        $1('.kCrYT').each(async function (i) {
            const title = $1(this).find('h3').text()
24
            const searchParams = new URLSearchParams($1(this).find('a').attr('href'));
Kim, Chaerin's avatar
Kim, Chaerin committed
25
26
            const link = searchParams.get("/url?q")
            const summary = $1(this).find('.s3v9rd').find('.s3v9rd').text()
Kim, Chaerin's avatar
상준    
Kim, Chaerin committed
27
            content.push(getReview(link))
Kim, Chaerin's avatar
Kim, Chaerin committed
28
            if (title) {
29
                reviews[i] = { title: title, link: link }
Kim, Chaerin's avatar
Kim, Chaerin committed
30
31
32
33
            } else if (summary) {
                reviews[i - 1] = { ...reviews[i - 1], summary: summary }
                reviews = reviews.filter(e => e)
            }
34
        })
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
35
        const promiseReview = await Promise.all(content)
baesangjune's avatar
.    
baesangjune committed
36
        reviews.forEach(async (review, i) => {
37
38
            review["content"] = promiseReview[i]
        })
Kim, Chaerin's avatar
Kim, Chaerin committed
39
40
        res.send(reviews)
    } catch (error) {
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
41
        // console.log(error)
Kim, Chaerin's avatar
Kim, Chaerin committed
42
        res.send(error)
43
44
45
    }
}

Lee SeoYeon's avatar
.    
Lee SeoYeon committed
46
47


baesangjune's avatar
.    
baesangjune committed
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//***************네이버 크롤링 할 때 ********************* */
//     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
66
const getReview = async (link) => {
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
67
    let content = '없음' 
68
69
    if (link) {
        const res = await axios.get(link)
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
70
        const $2 = cheerio.load(res.data); // cheerio 의미
71
72
73
        if ($2('.tt_article_useless_p_margin').text()) {
            content = $2('.tt_article_useless_p_margin').text()
        }
Kim, Chaerin's avatar
Kim, Chaerin committed
74
    }
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
75
    return content
Kim, Chaerin's avatar
Kim, Chaerin committed
76
}
Kim, Chaerin's avatar
?    
Kim, Chaerin committed
77

Lee SeoYeon's avatar
.    
Lee SeoYeon committed
78
export default { search, getReview }
Lee SeoYeon's avatar
.    
Lee SeoYeon committed
79