review.controller.js 2.71 KB
Newer Older
1
2
3
4
import Review from '../models/Review.js'
import cheerio from "cheerio";
import iconv from 'iconv'
import fs from 'fs'
Kim, Chaerin's avatar
서연    
Kim, Chaerin committed
5
import axios from 'axios';
6
7
const Iconv = iconv.Iconv

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

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

baesangjune's avatar
.    
baesangjune committed
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//***************네이버 크롤링 할 때 ********************* */
//     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
62
const getReview = async (link) => {
63
    if (link) {
64
        let content = '없음'
65
66
67
68
69
        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()
        }
70
        return content
Kim, Chaerin's avatar
Kim, Chaerin committed
71
72
    }
}
Kim, Chaerin's avatar
?    
Kim, Chaerin committed
73

74
75
76
77
78
const find = (res,req,next) => {
    Review.find({address: })

}
export default { search, find }