forked from jiangqizheng/cnblogs_spider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
385 lines (368 loc) · 11.5 KB
/
app.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
// 1.以首页为入口,抓取全部页数url;
// 2.解析文章页url,获取用户主页url;
// 3.解析用户主页,判断是否存在多个页面,获取当前用户所有文章;
// 4.抓取分析文章详情页,调用数据库查询更新;
// 5.分析数据,未完;
// express..后续显示..数据分析结果用
var express = require('express');
var cheerio = require("cheerio");
var superagent = require("superagent");
// 备选,用于解决编码问题
// var charset = require("superagent-charset");
var async = require("async");
var eventproxy = require("eventproxy");
// 数据库相关models
var db = require("./models/db.js");
var userdb = require("./models/userdb.js");
var articledb = require("./models/articledb.js");
var app = express();
var ep = new eventproxy();
// charset(superagent);
// 入口url
var baseUrl = "https://www.cnblogs.com/mvc/AggSite/PostList.aspx";
// 主页post请求内容数组
var pagePost = [];
// 用户主页连接
var userhomeUrl = [];
// 文章URL集合
var articleUrl = [];
// 存放数据库中articleurl比对资料
var articleUrldb = [];
// 并发数量控制
var asyncCount = 5;
// 并发量统计
var curCount = 0;
// 抓取计数
var urlindex = 0;
// 抓取异常量统计,只做统计。
var urlErrCount = 0;
// 初始时间
var starttime = new Date().getTime();
// 全局进程异常捕获
process.on('uncaughtException', function(err) {
console.log('Caught exception: ' + err);
console.log(err.stack);
console.log("全局异常机制:捕获无法处理的异常,为避免发生新的错误,程序30s后重新启动!");
setTimeout(function() {
StART();
}, 30000);
});
// 回调异常捕获处理
ep.fail(function(err) {
console.log("捕获回调中的异常,为避免发生新的错误,程序30s后重新启动!");
setTimeout(function() {
StART();
}, 30000);
});
// 循环获取主页连接post请求内需要的参数(页数)
for (var i = 1; i <= 200; i++) {
pagePost.push({
"CategoryType": "SiteHome",
"ParentCategoryId": 0,
"CategoryId": 808,
"PageIndex": i,
"TotalPostCount": 4000,
"ItemListActionName": "PostList"
});
};
StART();
function StART() {
console.log("程序开始:当前正在加载数据库......");
// 查询数据库中文章url
articledb.find({}, {
url: 1,
_id: 0
}, ep.done(function(result) {
result.forEach(function(item) {
articleUrldb.push(item.url);
});
console.log("比对数组长度:" + articleUrldb.length);
ep.emit("start");
}));
};
ep.tail("start", function(result) {
spiderStart();
});
// 爬虫初始函数
function spiderStart() {
// phaseOne
phaseOne();
function phaseOne() {
async.mapLimit(pagePost, asyncCount, function(item, callback) {
getpageurl(item, callback);
}, ep.done(function(msg) {
var newdate = new Date().getTime();
console.log("————————————————————————————————————————————————————");
console.log("phaseOne完成..共抓取到:" + articleUrl.length + "条articleUrl;抓取失败:" + urlErrCount + "项");
console.log("共耗时:" + (newdate - starttime) / 1000 + "s");
console.log("————————————————————————————————————————————————————");
curCount = 0;
urlindex = 0;
ep.emit("phaseTwo", newdate);
}));
};
// phaseOne处理函数
function getpageurl(postjson, callback) {
curCount++;
urlindex++;
console.log("phaseOne:目前并发数:" + curCount + ";正在抓取第:" + urlindex + "项");
superagent
.post(baseUrl)
.set("User-Agent", "User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64)")
.send(postjson)
.end(function(err, data) {
if (err) {
curCount--;
urlErrCount++;
callback(null);
};
try {
var $ = cheerio.load(data.text);
} catch (e) {
urlErrCount++;
curCount--;
callback(null);
};
$("a.titlelnk").each(function(i, item) {
var url = $(this).attr("href");
// 判断当前url数据库中是否已经存在
if (articleUrldb.indexOf(url) == -1) {
articleUrl.push(url);
};
});
curCount--;
callback(null);
});
};
// phaseTwo
ep.all("phaseTwo", function(beforedate) {
var blogurlRegExp = /\b\.com\/(.+)(?=\/p\/)/;
articleUrl.forEach(function(item) {
if (userhomeUrl.indexOf("http://www.cnblogs.com/" + blogurlRegExp.exec(item)[0].slice(5)) == -1) {
userhomeUrl.push("http://www.cnblogs.com/" + blogurlRegExp.exec(item)[0].slice(5));
};
});
async.mapLimit(userhomeUrl, asyncCount, function(url, callback) {
// async.mapSeries(userhomeUrl, function(url, callback) {
homearticleUrl(url, callback);
}, ep.done(function(msg) {
var newdate = new Date().getTime();
console.log("————————————————————————————————————————————————————");
console.log("phaseTwo完成..共抓取到:" + articleUrl.length + "条articleUrl;抓取失败:" + urlErrCount + "项");
console.log("共耗时:" + (newdate - beforedate) / 1000 + "s");
console.log("—————————————————————————————————————————————————————");
curCount = 0;
// ep.emit("phaseThree", newdate);
}));
});
// phaseTwo处理函数
function homearticleUrl(url, callback) {
// 当前项处理的url数组
var StatusUrl = [];
curCount++;
console.log(" phaseTwo处理函数;正在抓取; " + url);
superagent
// 直接加载第二页,判断是否存在多页
.get(url + "/default.html?page=2")
.set("User-Agent", "User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64)")
.end(function(err, data) {
if (err) {
urlErrCount++;
curCount--;
console.log(err);
return callback(null);
};
try {
var $ = cheerio.load(data.text);
} catch (e) {
urlErrCount++;
curCount--;
console.log(e);
return callback(null);
};
if ($(".pager") != "") {
var page = [];
$(".pager").first().children("a").each(function(i, item) {
var url = $(this).attr("href")
if (page.indexOf(url) == -1) {
page.push(url);
};
});
if (page == []) {
curCount--;
return callback(null);
};
async.mapLimit(page, asyncCount, function(url, callback2) {
allpage(url, callback2);
}, ep.done(function() {
// 交接数据进行数据库操作
phaseThree(StatusUrl, callback);
}));
} else {
dispose($);
// 交接数据进行数据库操作
phaseThree(StatusUrl, callback);
};
// 二次加载
function allpage(url, callback2) {
console.log("二次抓取;url:" + url);
superagent
.get(url)
.end(function(err, data) {
if (err) {
urlErrCount++;
return callback2(null);
};
try {
var $ = cheerio.load(data.text);
} catch (e) {
urlErrCount++;
return callback2(null);
};
dispose($);
callback2(null);
});
};
// 基本处理函数
// 传入参数
function dispose($) {
$("a.postTitle2").each(function(i, item) {
var url = $(this).attr("href");
// 判断数据库,当前数组中是否存在重复
if ((articleUrl.indexOf(url) == -1) && (articleUrldb.indexOf(url) == -1)) {
StatusUrl.push(url);
};
});
};
});
};
// phaseThree
function phaseThree(dataurl, callback) {
if (dataurl == []) {
curCount--;
return callback(null);
};
// 此处非并发,(并发时,数据库查询并发时返回相同状态)
// async.mapLimit(dataurl, asyncCount, function(url, callback) {
async.mapSeries(dataurl, function(url, callback) {
reptileArticle(url, callback);
}, function(err) {
console.log("—————————————————————————————————————————————————————");
console.log("phaseThree完成..共抓取到:" + dataurl.length + "条Url");
console.log("—————————————————————————————————————————————————————");
curCount--;
return callback(null);
});
};
// phaseThree处理函数
function reptileArticle(url, callback) {
// 设置抓取延时
var delay = parseInt((Math.random() * 888888) % 1000, 10);
urlindex++;
console.log(" 并发数:" + curCount + " ; 正在抓取第:" + urlindex + " 条数据;模拟延时:" + delay / 1000 + "s ;当前url:" + url);
try {
var blogurlRegExp = /\b\.com\/(.+)(?=\/p\/)/;
var blogurl = blogurlRegExp.exec(url)[0].slice(5);
} catch (e) {
urlErrCount++;
return callback(null);
};
superagent
.get(url)
.set("User-Agent", "User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64)")
.end(function(err, data) {
if (err) {
urlErrCount++;
return callback(null);
};
try {
var $ = cheerio.load(data.text);
} catch (e) {
urlErrCount++;
return callback(null);
};
var articleTitle = $("#cb_post_title_url").text();
var articleBody = $("#cnblogs_post_body p").text();
// get用户信息页
superagent
.get("http://www.cnblogs.com/mvc/blog/news.aspx?blogApp=" + blogurl)
.set("User-Agent", "User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64)")
.end(function(err, data) {
if (err) {
urlErrCount++;
return callback(null);
};
try {
var $ = cheerio.load(data.text);
} catch (e) {
urlErrCount++;
return callback(null);
};
var userContent = [];
$("#profile_block").children('a').each(function(i, elem) {
userContent[i] = $(this).text();
});
// 判断是否推介博客
var useroff = userContent.length == 5 ? true : false;
// 数据库对照,去重存档
userdb.findOne({
name: userContent[0]
}, function(err, result) {
if (!result) {
userdb.create({
name: userContent[0],
date: userContent[1],
referral: useroff ? userContent[2] : "",
fans: useroff ? userContent[3] : userContent[2],
attention: useroff ? userContent[4] : userContent[3],
homeurl: "http://www.cnblogs.com/" + blogurl,
lastupdate: new Date(),
article: {
title: articleTitle,
url: url,
},
}, ep.done("setuserdb"));
} else {
var urlArr = [];
var content = {
"title": articleTitle,
"url": url,
};
result.article.forEach(function(item) {
urlArr.push(item.url);
});
if (urlArr.indexOf(url) == -1) {
result.article.push(content);
result.lastupdate = new Date();
result.save(ep.done("setuserdb"));
} else {
ep.emit("setuserdb", result);
};
};
});
// 对比文章url
articledb.findOne({
url: url
}, function(err, result) {
if (!result) {
articledb.create({
author: userContent[0],
title: articleTitle,
url: url,
lastupdate: new Date(),
body: articleBody,
}, ep.done("setarticledb"));
} else {
ep.emit("setarticledb", result);
};
});
// 两处数据库对照完毕,执行回调函数
ep.all("setuserdb", "setarticledb", function(userdb, articledb) {
setTimeout(function() {
callback(null);
}, delay);
});
});
});
};
};