forked from xiaoyu2er/xwlb
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathanalysis.js
498 lines (453 loc) · 12.8 KB
/
analysis.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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
// 计算 日、周、本月、上月、季、年、全部累计词频分析
const fs = require('fs')
const { isDate, parseDate, formatDate, formatDate2, formatDate3 } = require("./util");
// 定义时间
const dateStr = formatDate(new Date())
const path = require('path');
const filePath = path.resolve('./news')
const nodejieba = require("nodejieba");
nodejieba.load({
userDict: './userdict.utf8',
});
// 时间计算
function getThisWeekData() {//获得本周周一~周日的年月日
var thisweek = {};
var date = new Date();
// 本周一的日期
date.setDate(date.getDate() - date.getDay() + 1);
var year=date.getFullYear();
var month= date.getMonth() + 1
var day = date.getDate()
if(month==0){
year=year-1;
month = 12;
}
if (month < 10) {
month = '0' + month
}
if (day < 10) {
day = '0' + day
}
thisweek.start_day = year+ "-" + month + "-" + day ;
// 本周日的日期
date.setDate(date.getDate() + 6);
var month= date.getMonth() + 1
var day = date.getDate()
if (month < 10) {
month = '0' + month
}
if (day < 10) {
day = '0' + day
}
thisweek.end_day = year + "-" + month + "-" + day ;
return thisweek
}
function getLastWeekData() {//获得上周周一~周日的年月日
var lastweek = {};
var date = new Date();
// 上周一的日期
date.setDate(date.getDate()-7 - date.getDay() + 1);
var year=date.getFullYear();
var month= date.getMonth() + 1
var day = date.getDate()
if(month==0){
year=year-1;
month = 12;
}
if (month < 10) {
month = '0' + month
}
if (day < 10) {
day = '0' + day
}
lastweek.start_day = year + "-" + month + "-" + day ;
// 上周日的日期
date.setDate(date.getDate() +6);
var month= date.getMonth() + 1
var day = date.getDate()
if (month < 10) {
month = '0' + month
}
if (day < 10) {
day = '0' + day
}
lastweek.end_day = year+ "-" + month + "-" + day ;
return lastweek
}
function getThisMonth() {//获得本月第一天~本月最后一天年月日
var thismonth={};
var date = new Date();
date.setDate(1);
var month = parseInt(date.getMonth()+1);
var day = date.getDate();
if (month < 10) {
month = '0' + month
}
if (day < 10) {
day = '0' + day
}
thismonth.start_day=date.getFullYear() + '-' + month + '-' + day
var endDate=new Date();
var currentMonth=endDate.getMonth();
var nextMonth=++currentMonth;
var nextMonthFirstDay=new Date(endDate.getFullYear(),nextMonth,1);
var oneDay=1000*60*60*24;
var lastTime = new Date(nextMonthFirstDay-oneDay);
var endMonth = parseInt(lastTime.getMonth()+1);
var endDay = lastTime.getDate();
if (endMonth < 10) {
endMonth = '0' + endMonth
}
if (endDay < 10) {
endDay = '0' + endDay
}
thismonth.end_day=endDate.getFullYear() + '-' + endMonth + '-' + endDay
return thismonth
}
function getLastMonth(){//获得上月第一天~上月最后一天年月日
var thismonth={};
var date = new Date();
var year=date.getFullYear();
var month=date.getMonth();
var day=date.getDate();
if(month<10){
month="0"+month;
}
if(month==0){
year=year-1;
month = 12;
}
thismonth.start_day=year+ '-' + month + '-' +'01'
var lastday=new Date(year,month,0).getDate();
thismonth.end_day=year+'-'+month+'-'+lastday;
return thismonth
}
// 季度
// 本季度
function getThisQuarterly(){
var ThisQuarterly={};
var date = new Date();
var year=date.getFullYear();
var month=getQuarterSeasonStartMonth(date.getMonth());
var day=date.getDate();
if(month<10){
month="0"+month;
}
ThisQuarterly.start_day=year+ '-' + month + '-' +'01'
var endmonth =getQuarterSeasonStartMonth(date.getMonth())+2
var lastday=new Date(year,endmonth,0).getDate();
if(endmonth<10){
month="0"+month;
}
if (lastday < 10) {
lastday = '0' + lastday
}
ThisQuarterly.end_day=year+ '-' + endmonth + '-' +lastday
return ThisQuarterly
}
/**
* 得到本季度开始的月份
* @param month 需要计算的月份
***/
function getQuarterSeasonStartMonth(month) {
var spring = 1; //春
var summer = 3; //夏
var fall = 6; //秋
var winter = 9; //冬
//月份从0-11
if (month < 3) {
return spring;
}
if (month < 6) {
return summer;
}
if (month < 9) {
return fall;
}
return winter;
}
// 本年
function getThisyear() {
var Thisyear={};
var date = new Date();
var year = date.getFullYear();
Thisyear.start_day = year + '-' + '01' + '-' + '01';
Thisyear.end_day = year + '-' + '12' + '-' + '31';
return Thisyear
}
// 去年
function getlastyear() {
var lastyear={};
var date = new Date();
var year = date.getFullYear();
lastyear.start_day = year-1 + '-' + '01' + '-' + '01';
lastyear.end_day = year-1 + '-' + '12' + '-' + '31';
return lastyear
}
// 读取文件内容
function fileRead(filePath){
var stat=fs.lstatSync(__dirname+"/"+filePath);
if (stat.isFile()) {
var content = fs.readFileSync(__dirname+"/"+filePath, 'utf-8');
return content
}
}
function fileDate(start,end){//读取全部本地缓存新闻文件
/**
* 读取全部本地缓存新闻文件
*/
var readDir = fs.readdirSync('./news/');
var re={}
var fuck = ""
var firstFileName=readDir[0]
var lastFileName =readDir[readDir.length-1]
var fileSum =readDir.length
if((typeof(start)=='undefined')||(typeof(end)=='undefined')){
for (let index = 0; index < readDir.length; index++) {
var element = readDir[index];
put="./news/"+element
fuck+=fileRead(put)
}
}else{
for (let index = 0; index < readDir.length; index++) {
var element = readDir[index];
var b =path.posix.basename(element,'.md')
if((b>=start)&(b<=end)){
put="./news/"+element
fuck+=fileRead(put)
}
}
}
re.c=fuck
re.fs=fileSum
re.fn=firstFileName
re.lfn=lastFileName
return re
}
function first(){
/**
* 第一次全面分析
* 如果分析文件为空,则执行第一次全面分析
*/
console.time('全面分析')
var c={}
var f=fileDate()
if(f.c!=''){
f=regexp(f.c)
f=nodejieba.cut(f)
f=stopWords(f)
f=StatisticsWordfrequency(f)
f=sortNumber(f)
c.all=f
}
// 日
var f=fileDate(dateStr,dateStr)
if(f.c!=''){
f=regexp(f.c)
f=nodejieba.cut(f)
f=stopWords(f)
f=StatisticsWordfrequency(f)
f=sortNumber(f)
c.theday=f
}else{
c.theday={}
}
// 本周
var f=fileDate(getThisWeekData()['start_day'],dateStr)
if(f.c!=''){
f=regexp(f.c)
f=nodejieba.cut(f)
f=stopWords(f)
f=StatisticsWordfrequency(f)
f=sortNumber(f)
c.thisweek=f
}else{
c.thisweek={}
}
// 上周
var f=fileDate(getLastWeekData()['start_day'],getLastWeekData()['end_day'])
if(f.c!=''){
f=regexp(f.c)
f=nodejieba.cut(f)
f=stopWords(f)
f=StatisticsWordfrequency(f)
f=sortNumber(f)
c.lastweek=f
}else{
c.lastweek={}
}
// 本月
var f=fileDate(getThisMonth()['start_day'],dateStr)
if(f.c!=''){
f=regexp(f.c)
f=nodejieba.cut(f)
f=stopWords(f)
f=StatisticsWordfrequency(f)
f=sortNumber(f)
c.thismonth=f
}else{
c.thismonth={}
}
// 上月
var f=fileDate(getLastMonth()['start_day'],getLastMonth()['end_day'])
if(f.c!=''){
f=regexp(f.c)
f=nodejieba.cut(f)
f=stopWords(f)
f=StatisticsWordfrequency(f)
f=sortNumber(f)
c.lastmonth=f
}else{
c.lastmonth={}
}
// 本季度
var f=fileDate(getThisQuarterly()['start_day'],dateStr)
if(f.c!=''){
f=regexp(f.c)
f=nodejieba.cut(f)
f=stopWords(f)
f=StatisticsWordfrequency(f)
f=sortNumber(f)
c.thisquarterly=f
}else{
c.thisquarterly={}
}
// 本年
var f=fileDate(getThisyear()['start_day'],dateStr)
if(f.c!=''){
f=regexp(f.c)
f=nodejieba.cut(f)
f=stopWords(f)
f=StatisticsWordfrequency(f)
f=sortNumber(f)
c.thisyear=f
}else{
c.thisyear={}
}
// 去年
var f=fileDate(getlastyear()['start_day'],getlastyear()['end_day'])
if(f.c!=''){
f=regexp(f.c)
f=nodejieba.cut(f)
f=stopWords(f)
f=StatisticsWordfrequency(f)
f=sortNumber(f)
c.lastyear=f
}else{
c.lastyear={}
}
fs.writeFileSync('./analysisout/analysis.json', JSON.stringify(c) , 'utf-8');
// console.log(JSON.parse(fs.readFileSync('./analysisout/analysis.json', 'utf8')))
// var tt= filterWordfrequency(JSON.parse(fs.readFileSync('./analysisout/analysis.json', 'utf8')).all,500) // 从文件读取并过滤
// // console.log(sortNumber(tt)) // 排序
// fs.writeFileSync('./analysisout/analysis.json', sortNumber(tt) , 'utf-8');// 排序后写如文件
console.timeEnd('全面分析')
// 全面分析: 7:08.633 (m:ss.mmm)
}
function dailySum(){
/**
* 日常每天进行计算并累计
*/
// fileDate(filePath)
// console.log(dateStr)
// console.log(getThisWeekData()['start_day']) // 本周第一天
// console.log(getThisWeekData()['end_day']) // 本周最后一天
// console.log(getLastWeekData()['start_day']) // 上周第一天
// console.log(getLastWeekData()['end_day']) // 上周最后一天
// console.log(getThisMonth()['start_day']) // 本月第一天
// console.log(getThisMonth()['end_day']) // 本月最后一天
// // getLastMonth
// console.log(getLastMonth()['start_day']) // 上月第一天
// console.log(getLastMonth()['end_day']) // 上月最后一天
// // getThisyear
// console.log(getThisyear()['start_day']) // 本年第一天
// console.log(getThisyear()['end_day']) // 本年最后一天
// console.log(getThisQuarterly()) // 本季度
// console.log(getlastyear())//去年
// 日 本周 上周 本月 上月 本季度 本年 去年
}
function regexp(str){// 获取全部中文
/**
* 通过正则表达式过滤特殊符号、字母等,粗略过滤不需要的内容。
*
*/
// var regEx = /[\n-'--;“"”??::,,。.;#*()《》【】[\/\]()、a-z0-9A-Z原文新闻联播央视网快评消息求是总书记更新于]/g
// return str.replace(regEx,"").trim()
var regEx=/[\u4e00-\u9fa5]/g
return str.match(regEx).join("")
}
function stopWords(result){// 停用词,过滤。
/**
* 停用词,过滤。
* result 原始文件切片后数据
* 返回 过滤后数据
*/
var counts = []
var s = fs.readFileSync(`./stop_words.utf8`, 'utf8')
var sarry = s.split('\n')
for(i in result){
var t =false
for (ii in sarry){
if(result[i].includes(sarry[ii])){
// console.log(result[i])
t=true
break
}
}
if(t==false){
counts.push(result[i])
}
}
return counts
}
function StatisticsWordfrequency(str){//统计词频,需要专递切词以后数据
var counts = {}
str.forEach(function(item) {
counts[item] = (counts[item] || 0) + 1;
});
return counts
}
function filterWordfrequency(str,num){// 过滤频次大于指定次数的数据
/**
* 过滤频次大于指定次数的数据
* str 传递统计词频后数据
* num 过滤大于等于的次数
*/
var counts = {}
for(var i in str){
// console.log(counts[i])
if (str[i]>=num) {
// console.log(i,":",counts[i])
counts[i]=str[i]
}
}
return counts
}
function sortNumber(list)// 降序排序
{
counts={}
var array=Object.keys(list).sort(function(a,b){return list[b]-list[a]})// 升序 list[a]-list[b] // 降序 list[b]-list[a]
for (let index = 0; index < array.length; index++) {
const element = array[index];
counts[element]=list[element]
}
return counts
}
async function main(){
// 判断是否有历史统计数据,没有就全面计算
fs.access('./analysisout/analysis.json', fs.constants.F_OK, (err) => {
if (err){
console.log("全面计算")
first() // 全面计算
}
else{
console.log("日累计")
dailySum()// 日累计
}
});
}
main()
// module.exports = {
// fileRead,
// regexp,
// };