forked from YComputer/crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrawler.js
112 lines (87 loc) · 2.51 KB
/
crawler.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
var http = require('http')
var cheerio = require('cheerio')
var Promise = require('Promise')
var url = 'http://www.imooc.com/learn/348'
var baseUrl = 'http://www.imooc.com/learn/'
function filterChapter(html) {
var $ = cheerio.load(html)
var chapters = $('.chapter')
var title = $('')
// courseData = {
// title: title,
// number: number,
// videos: [{
// chapterTitle: '',
// videos:[{
// title: '',
// id: ''
// }]
// }]
// }
var courseData = {
title: title,
number:number,
videos:[]
}
chapters.each(function(item) {
var chapter = $(this)
var chapterTitle = chapter.find('strong').text()
var videos = chapter.find('.video').children('li')
var chapterData = {
chapterTitle: chapterTitle,
videos: []
}
videos.each(function(item) {
var video = $(this).find('.J-media-item')
//console.log('---------',video)
var videoTitle = video.text()
var id = video.attr('href').split('video/')[1]
chapterData.videos.push({
title: videoTitle,
id: id
})
})
courseData.push(chapterData)
})
return courseData
}
function printCourseInfo(courseData) {
courseData.forEach(function(item) {
var chapterTitle = item.chapterTitle
console.log(chapterTitle + '\n')
item.videos.forEach(function(item) {
console.log('[' + item.id + ']' + item.tilte + '\n')
})
})
}
function getPageAsync(url) {
return new Promise(function(resolve, reject) {
conosle.log('正在爬取 ' + url)
http.get(url, function(res) {
var html = '';
res.on('data', function(data) {
html += data
})
res.on('end', function() {
resolve(html)
//var courseData = filterChapter(html)
//printCourseInfo(courseData)
})
}).on('error', function(e) {
console.log('获取课程数据出错!')
reject(e)
})
})
}
var fetchCourseArray = []
videoIds.forEach(function(id) {
fetchCourseArray.push(getPageAsync(baseUrl + id))
})
Promise.all(fetchCourseArray)
.then(function(pages){
var coursesData = []
pages.forEach(function(html){
var courses = filterChapter(html)
coursesData.push(courses)
})
})