前言

原来的统计数据需要每个月手动统计上传非常的麻烦容易把人累死,直到看到了fox的统计页面眼前一亮,于是借鉴学习了一波,注本文大部分代码都出自fox大佬之手。

简析原理

获取百度统计开放api的token,利用python将百度统计api返回的统计数据下载保存为json文件,再利用JavaScript读取并处理json数据,将处理好的数据通过echarts.js绘制为图表。

获取token与site_id

在此之前我相信你已经完成了在百度统计的注册并将已经可以正常使用百度统计功能。关于获取token和site_id,可以参考百度统计文档或者博主Eurkon的教程里面都讲的很清楚不再赘叙。值得注意的是获取的token是由有效期的为一个月需要每隔一个月重新利用refresh_token重新更新token故可将更新token的链接保存好待token失效后可直接利用该链接更新。

使用python下载文件

通过6个链接,我们可以获取:一年内每日访问统计、访问地图数据、月度访问统计、来源分类统计、搜索引擎访问统计和外部链接访问统计;通过python进行下载保存。为了避免跨域问题所以保存的json文件需要和census.js在同一目录下,关于跨域问题可以通过造成跨域的原因和解决方法了解一下。我先将完整的结构目录展示出来,你同理创建即可。

1
2
3
4
5
6
7
8
9
10
source 
└── census
└── index.md //辅助统计页面渲染
└── census.js //处理数据
└──data
└──get.py //获取保存数据
theme
└──matery
└──layout
└──census.ejs//渲染为统计页面

按照如上目录新建好get.py文件后在其中写入如下内容:

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
import requests
import time, datetime

# 开始统计的日期
start_date = '20201101'
date = datetime.datetime.now()
# 结束统计的日期
end_date = str(date.year) + (str(date.month) if date.month > 9 else ('0' + str(date.month))) + (str(date.day) if date.day > 9 else ('0' + str(date.day)))
# token和siteid
#需要修改为你的token和siteid
access_token = '121.*******'
site_id = '16*******'
# 百度统计API
dataUrl = 'https://openapi.baidu.com/rest/2.0/tongji/report/getData?access_token=' + access_token + '&site_id=' + site_id
# 统计访问次数 PV 填写 'pv_count',统计访客数 UV 填写 'visitor_count',二选一
metrics = 'pv_count'
ips = 'visitor_count'

def downFile(url, fileName, prefix=''):
print('downloading :', url)
down_res = requests.get(url)
with open(prefix+fileName, 'wb') as f:
f.write(down_res.content)
print('writing :', prefix+fileName)

# 访客地图
downFile(dataUrl + '&start_date=' + start_date + '&end_date=' + end_date + '&metrics=' + metrics + '&method=visit/district/a',
'map.json')

# 访问趋势
downFile(dataUrl + '&start_date=' + start_date + '&end_date=' + end_date + '&metrics=' + metrics + '&method=trend/time/a&gran=month',
'pv.json')
downFile(dataUrl + '&start_date=' + start_date + '&end_date=' + end_date + '&metrics=' + ips + '&method=trend/time/a&gran=month',
'uv.json')
# 访问来源
downFile(dataUrl + '&start_date=' + start_date + '&end_date=' + end_date + '&metrics=' + metrics + '&method=source/all/a',
'sources.json')

## 搜索引擎
downFile(dataUrl + '&start_date=' + start_date + '&end_date=' + end_date + '&metrics=' + metrics + '&method=source/engine/a',
'engine.json')

## 外部链接
downFile(dataUrl + '&start_date=' + start_date + '&end_date=' + end_date + '&metrics=' + metrics + '&method=source/link/a',
'link.json')

# 访问日历
'''
访问日历需要获取一年内的数据,按照一年365天计算,大概为52周多一点,所以前面有完整的52排,获取方式只要通过开始日期年份-1即可
然后就是第53排的处理,python中的date.weekday()获取的星期几是0对应周一,所以通过(date.weekday()+1)%7即可转换到0对应周日
于是在52周的基础上,减去星期数,就可以得到新的start_date
'''
date = datetime.datetime(date.year-1, date.month, date.day)
date = datetime.datetime.fromtimestamp(date.timestamp()-3600*24*((date.weekday()+1)%7))
start_date = str(date.year) + (str(date.month) if date.month > 9 else ('0' + str(date.month))) + (str(date.day) if date.day > 9 else ('0' + str(date.day)))
downFile(dataUrl + '&method=overview/getTimeTrendRpt' + '&metrics=' + metrics + '&start_date=' + start_date + '&end_date=' + end_date,
'calendar.json')
downFile(dataUrl + '&method=overview/getTimeTrendRpt' + '&metrics=' + ips + '&start_date=' + start_date + '&end_date=' + end_date,
'ipcalendar.json')

本地测试:如果你本地安装有python环境可以直接cd存放到get.py的目录python
get.py,提示缺少库安装即可。若你没有完成GitHubactions集成化部署也可以通过此方法定期半自动更新,不过还是建议弄一下集成化部署真的很香。

新建md和ejs文件

如前结构图所示新建index.mdcensus.ejs文件。

在index.md中写入如下内容:

1
2
3
4
5
---    title: census
date: 2020-10-31 10:11:28
type: "census"
layout: "census"
---

在census.ejs中写入如下内容:

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
<%- partial('_partial/bg-cover') %>
<style>
.journal {
padding: 12px;
border: 1px dashed #e6e6e6;
color: #969696;
position: relative;
display: inline-block;
width: 95%;
background: #fbfbfb50;
border-radius: 10px;
font-size: 16px;
margin: 12px auto;
}
</style>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/echarts@5.1.1/dist/echarts.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/echarts@4.7.0/map/js/china.js"></script>
<main class="content">
<div class="container chip-container">
<div class="card">
<div class="card-content">
<div class="tag-title center-align">
<div class="journal">
<div class="title center-align">“ 站点统计”</div>
“ 自 2020-11-14 起,每12小时自动更新一次 ”
</div>
</div>
<div id="calendar_container" style="min-height: 200px; -webkit-tap-highlight-color: transparent; user-select: none; position: relative"></div>
<div id="uv_container" style="min-width: 250px; height: 400px; margin-top: 50px; -webkit-tap-highlight-color: transparent; user-select: none; position: relative" ></div>
<div id="pv_container" style="min-width: 250px; height: 400px; margin-top: 50px; -webkit-tap-highlight-color: transparent; user-select: none; position: relative" ></div>
<div id="map_container" style="min-width: 250px; height: 400px; margin-top: 50px; -webkit-tap-highlight-color: transparent; user-select: none; position: relative" ></div>
<div id="sources_container" style="min-width: 250px; height: 400px; margin-top: 50px; -webkit-tap-highlight-color: transparent; user-select: none; position: relative" ></div>
<script src="/census/census.js"></script>
</div>
</div>
</div>
</main>

calendar_container为访客日历图的容器,uv_container为站点访客数统计图的容器,pv_container为站点访问量统计图的容器,map_container为站点访问地点地图的容器,sources_container为站点访客来源分析饼图的容器。

新建census.js文件

在如前结构图所示新建census.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
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
var metrics     = 'pv_count' // 统计访问次数 PV 填写 'pv_count',统计访客数 UV 填写 'visitor_count',二选一
var metricsName = (metrics === 'pv_count' ? '访问次数' : (metrics === 'visitor_count' ? '访客数' : ''))
function generatePieces(maxValue, colorBox) {
var pieces = [];
var quotient = 1;
var temp = {'lt': 1, 'label': '0', 'color': colorBox[0]};
pieces.push(temp);

if (maxValue && maxValue >= 10) {
quotient = Math.floor(maxValue / 10)+1;
for (var i = 1; i <= 10; i++) {
var temp = {};
if (i == 1) temp.gte = 1;
else temp.gte = quotient * (i - 1);
temp.lte = quotient * i;
temp.color = colorBox[i];
pieces.push(temp);
}
}
return JSON.stringify(pieces);
}

var append_div_visitcalendar = (parent, text) => {
if (parent !== null) {
if (typeof text === 'string') {
var temp = document.createElement('div');
temp.innerHTML = text;
var frag = document.createDocumentFragment();
while (temp.firstChild) {
frag.appendChild(temp.firstChild)
}
parent.appendChild(frag)
} else {
parent.appendChild(text)
}
}
};

function calChart () {
let script = document.createElement("script")
fetch('/census/data/ipcalendar.json?date'+new Date()).then(data => data.json()).then(data => {
let date_arr = data.result.items[0];
let value_arr = data.result.items[1];
let calArr = [];
let maxValue = 0, total = 0, weekdatacore = 0, thisweekdatacore = 0;
let colorBox = ['#EBEDF0', '#90EE90', '#98FB98', '#32CD32', '#00FF00', '#7FFF00', '#3CB371', '#2E8B57', '#228B22', '#008000', ' #006400'];
for (let i = 0; i < date_arr.length; i++) {
calArr.push([date_arr[i][0], value_arr[i][0] === '--' ? 0 : value_arr[i][0]] );
maxValue = value_arr[i][0] > maxValue ? value_arr[i][0] : maxValue ;
total += value_arr[i][0] === '--' ? 0 : value_arr[i][0];
}
for (let i = date_arr.length-1; i >= date_arr.length-7; i--) weekdatacore += value_arr[i][0] === '--' ? 0 : value_arr[i][0];
for (let i = date_arr.length-1; i >= date_arr.length-30; i--) thisweekdatacore += value_arr[i][0] === '--' ? 0 : value_arr[i][0];
let calArrJson = JSON.stringify(calArr);
script.innerHTML = `
var calChart = echarts.init(document.getElementById("calendar_container"));
var option = {
title: { text: '访问日历' },
tooltip: {
padding: 10,
backgroundColor: '#555',
borderColor: '#777',
borderWidth: 1,
textStyle: { color: '#fff' },
formatter: function (obj) {
var value = obj.value;
return '<div style="font-size: 14px;">' + value[0] + ':' + value[1] + '</div>';
}
},
visualMap: {
show: false,
showLabel: true,
min: 0,
max: ${maxValue},
type: 'piecewise',
orient: 'horizontal',
left: 'center',
bottom: 0,
pieces: ${generatePieces(maxValue, colorBox)}
},
calendar: [{
left: 'center',
range: ['${date_arr[0]}', '${date_arr[date_arr.length-1]}'],
cellSize: [14, 14],
splitLine: {
show: false
},
itemStyle: {
color: '#ebedf0',
borderColor: '#fff',
borderWidth: 2
},
yearLabel: {
show: false
},
monthLabel: {
nameMap: 'cn',
fontSize: 11
},
dayLabel: {
formatter: '{start} 1st',
nameMap: 'cn',
fontSize: 11
}
}],
series: [{
type: 'heatmap',
coordinateSystem: 'calendar',
calendarIndex: 0,
data: ${calArrJson},
}]
};
calChart.setOption(option);`;
let style = '<style>.number{font-family: sans-serif, Arial;margin-top: 10px;text-align:center;width:100%;padding:10px;margin:0 auto;}.contrib-column{text-align:center;border-left:1px solid #ddd;border-top:1px solid #ddd;}.contrib-column-first{border-left:0;}.table-column{padding:10px;display:table-cell;flex:1;vertical-align:top;}.contrib-number{font-weight:400;line-height:1.3em;font-size:24px;display:block;}.left.text-muted{float:left;margin-left:9px;color:#767676;}.left.text-muted a{color:#4078c0;text-decoration:none;}.left.text-muted a:hover{text-decoration:underline;}h2.f4.text-normal.mb-3{display:none;}.float-left.text-gray{float:left;}.position-relative{width:100%;}@media screen and (max-width:650px){.contrib-column{display:none}}</style>';
style = '<div style="display:flex;width:100%" class="number"><div class="contrib-column contrib-column-first table-column"><span class="text-muted">过去一年访问</span><span class="contrib-number">' + total + '</span><span class="text-muted">' + date_arr[0][0] + '&nbsp;-&nbsp;' + date_arr[date_arr.length-1][0] + '</span></div><div class="contrib-column table-column"><span class="text-muted">最近30天访问</span><span class="contrib-number">' + thisweekdatacore + '</span><span class="text-muted">' + date_arr[date_arr.length-30][0] + '&nbsp;-&nbsp;' + date_arr[date_arr.length-1][0] + '</span></div><div class="contrib-column table-column"><span class="text-muted">最近7天访问</span><span class="contrib-number">' + weekdatacore + '</span><span class="text-muted">' + date_arr[date_arr.length-7][0] + '&nbsp;-&nbsp;' + date_arr[date_arr.length-1][0] + '</span></div></div>' + style;

document.getElementById("calendar_container").after(script);
append_div_visitcalendar(calendar_container, style);
}).catch(function (error) {
console.log(error);
});
}
function get_year(s) {
return parseInt(s.substr(0, 4))
}
function get_month(s) {
return parseInt(s.substr(5, 2))
}
// 浏览量
function pvChart () {
let script = document.createElement("script")
fetch('/census/data/pv.json?date'+new Date()).then(data => data.json()).then(data => {
let date = new Date();
let monthValueArr = {};
let monthName = data.result.items[0];
let monthValue = data.result.items[1];
for (let i =2020; i <= date.getFullYear(); i++) monthValueArr[String(i)] = [ , , , , , , , , , , , ];
monthValueArr
for (let i = 0; i < monthName.length; i++) {
let year = get_year(monthName[i][0]);
let month = get_month(monthName[i][0]);
monthValueArr[String(year)][String(month-1)] = monthValue[i][0];
}
script.innerHTML = `
var pvChart = echarts.init(document.getElementById('pv_container'), 'light');
var pvOption = {
color: ['#01C2F9', '#18D070', '#d223e7', '#3F77FE'],
title: {
text: '站点访问量统计',
subtext: '数据来源: 百度统计(自 2020/11/14 开始统计)',
textStyle: {
color: '#504b4d',
}
},
legend: {
data: ['2020年访问量', '2021年访问量'],
//修改年份
bottom: 0,
left: 'center',
textStyle: {
color: '#504b4d',
}
},
tooltip: {
trigger: 'axis'
},
toolbox: {
show: true,
feature: {
mark: {
show: true
},
magicType: {
show: true,
type: ['line', 'bar', 'stack', 'tiled']
},
restore: {
show: true
},
saveAsImage: {
show: true
}
}
},
calculable: true,
xAxis: [{
type: 'category',
boundaryGap: false,
data: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
axisLabel: {
formatter: '{value}',
textStyle: {
color: '#929298'
}
}
}],
yAxis: [{
type: 'value',
axisLabel: {
formatter: '{value}',
textStyle: {
color: '#929298'
}
},
axisTick: {
show: true
},
axisLine: {
show: true,
lineStyle: {
color: '#4c4948'}
}
}],
series: [{
name: '2020年访问量',
type: 'line',
stack: '总量',
data: [${monthValueArr["2020"]}],
axisLabel: {
formatter: '{value}',
//第一个年份对应的数据顺序对应月份
textStyle: {
color: '#929298'
}
}
},
{
name: '2021年访问量',
type: 'line',
stack: '总量',
data: [${monthValueArr["2021"]}],
//第二个年份对应的数据顺序对应月份
axisLabel: {
formatter: '{value}',
textStyle: {
color: '#929298'
}
}
}]
};
pvChart.setOption(pvOption);
window.addEventListener("resize", () => {
pvChart.resize();
});`
document.getElementById('pv_container').after(script);
}).catch(function (error) {
console.log(error);
});
}
//访客数
function uvChart () {
let script = document.createElement("script")
fetch('/census/data/uv.json?date'+new Date()).then(data => data.json()).then(data => {
let date = new Date();
let monthValueArr = {};
let monthName = data.result.items[0];
let monthValue = data.result.items[1];
for (let i =2020; i <= date.getFullYear(); i++) monthValueArr[String(i)] = [ , , , , , , , , , , , ];
monthValueArr
for (let i = 0; i < monthName.length; i++) {
let year = get_year(monthName[i][0]);
let month = get_month(monthName[i][0]);
monthValueArr[String(year)][String(month-1)] = monthValue[i][0];
}
script.innerHTML = `
var uvChart = echarts.init(document.getElementById('uv_container'), 'light');
var uvOption = {
color: ['#d223e7', '#3F77FE', '#01C2F9', '#18D070'],
title: {
text: '站点访客数统计',
subtext: '数据来源: 百度统计(自 2020/11/14 开始统计)',
textStyle: {
color: '#504b4d',
}
},
tooltip: {
trigger: 'axis'
},
legend: {
data: ['2020年访客数', '2021年访客数'],
bottom: 0,
left: 'center',
textStyle: {
color: '#504b4d',
}
},
//修改年份
toolbox: {
show: true,
feature: {
mark: {
show: true
},
magicType: {
show: true,
type: ['line', 'bar', 'stack', 'tiled']
},
restore: {
show: true
},
saveAsImage: {
show: true
}
}
},
calculable: true,
xAxis: [{
type: 'category',
boundaryGap: false,
data: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
axisLabel: {
formatter: '{value}',
textStyle: {
color: '#929298'
}
}
}],
yAxis: [{
type: 'value',
axisLabel: {
formatter: '{value}',
textStyle: {
color: '#929298'
}
},
axisTick: {
show: true
},
axisLine: {
show: true,
lineStyle: {
color: '#4c4948'}
}
}],
series: [{
name: '2020年访客数',
type: 'line',
smooth: true,
itemStyle: {
normal: {
areaStyle: {
type: 'default'
}
}
},
data: [${monthValueArr["2020"]}],
//第一个年份对应的数据顺序对应月份
axisLabel: {
formatter: '{value}',
textStyle: {
color: '#929298'
}
},
},
{
name: '2021年访客数',
type: 'line',
smooth: true,
itemStyle: {
normal: {
areaStyle: {
type: 'default'
}
}
},
data: [${monthValueArr["2021"]}],
//第二个年份对应的数据顺序对应月份
axisLabel: {
formatter: '{value}',
textStyle: {
color: '#929298'
}
},
}]
};
uvChart.setOption(uvOption);
window.addEventListener("resize", () => {
uvChart.resize();
});`
document.getElementById('uv_container').after(script);
}).catch(function (error) {
console.log(error);
});
}
// 访问地图
function mapChart () {
let script = document.createElement("script")
fetch('/census/data/map.json?date'+new Date()).then(data => data.json()).then(data => {
let mapName = data.result.items[0]
let mapValue = data.result.items[1]
let mapArr = []
let max = mapValue[0][0]
for (let i = 0; i < mapName.length; i++) {
mapArr.push({ name: mapName[i][0].name, value: mapValue[i][0] })
}
let mapArrJson = JSON.stringify(mapArr)
script.innerHTML = `
var mapChart = echarts.init(document.getElementById('map_container'), 'light');
var mapOption = {
title: { text: '访问地点' },
tooltip: { trigger: 'item' },
visualMap: {
min: 0,
max: ${max},
left: 'left',
top: 'bottom',
text: ['高','低'],
color: ['#1E90FF', '#AAFAFA'],
calculable: true
},
series: [{
name: '${metricsName}',
type: 'map',
mapType: 'china',
showLegendSymbol: false,
label: {
emphasis: { show: false }
},
itemStyle: {
normal: {
areaColor: 'rgba(255, 255, 255, 0.1)',
borderColor: '#121212'
},
emphasis: { areaColor: 'gold' }
},
data: ${mapArrJson}
}]
};
mapChart.setOption(mapOption);
window.addEventListener("resize", () => {
mapChart.resize();
});`
document.getElementById('map_container').after(script);
}).catch(function (error) {
console.log(error);
});
}
// 访问来源
function sourcesChart () {
let script = document.createElement("script");
var innerHTML = '';
var link = 0, direct = 0, search = 0;
fetch('/census/data/sources.json?date'+new Date()).then(data => data.json()).then(data => {
let sourcesName = data.result.items[0];
let sourcesValue = data.result.items[1];
let sourcesArr = [];
for (let i = 0; i < sourcesName.length; i++)
sourcesArr.push({ name: sourcesName[i][0].name, value: sourcesValue[i][0] });
link = sourcesArr[1]['value'] ;
search = sourcesArr[2]['value'] ;
direct = sourcesArr[0]['value'] ;
innerHTML += `
var sourcesChart = echarts.init(document.getElementById('sources_container'), 'light');
var sourcesOption = {
title:{text:'站点访客来源统计',itemGap:20,textStyle:{color:'#504b4d',}},
tooltip: { trigger: 'item', formatter: '{a} <br/>{b}: {c} ({d}%)' },
legend: {
data: ['直达', '外链', '搜索', '百度', '谷歌', '必应', 'Github', '开往/十年之约'],
y: 'bottom'
},
series: [
{
name: '来源明细', type: 'pie', radius: ['45%', '60%'],
labelLine: { length: 30 },
label: {
formatter: '{a|{a}}{abg|}\\n{hr|}\\n {b|{b}:}{c} {per|{d}%} ',
backgroundColor: '#F6F8FC', borderColor: '#8C8D8E',
borderWidth: 1, borderRadius: 4,
rich: {
a: { color: '#6E7079', lineHeight: 22, align: 'center' },
hr: { borderColor: '#8C8D8E', width: '100%', borderWidth: 1, height: 0 },
b: { color: '#4C5058', fontSize: 14, fontWeight: 'bold', lineHeight: 33 },
per: { color: '#fff', backgroundColor: '#4C5058', padding: [3, 4], borderRadius: 4 }
}
},
data: [`;
}).catch(function (error) {
console.log(error);
});
fetch('/census/data/engine.json?date'+new Date()).then(data => data.json()).then(data => {
let enginesName = data.result.items[0];
let enginesValue = data.result.items[1];
let enginesArr = [];
for (let i = 0; i < enginesName.length; i++)
enginesArr.push({ name: enginesName[i][0].name, value: enginesValue[i][0] });
innerHTML += `
{value: ${enginesArr[1]['value']}, name: '谷歌'},
{value: ${enginesArr[0]['value']}, name: '百度'},`;
}).catch(function (error) {
console.log(error);
});
fetch('/census/data/link.json?date'+new Date()).then(data => data.json()).then(data => {
let linksName = data.result.items[0];
let linksValue = data.result.items[1];
let linksArr = {};
for (let i = 0; i < linksName.length; i++)
linksArr[linksName[i][0].name] = linksValue[i][0];
let sum = data.result.sum[0][0];
let bing = linksArr['http://cn.bing.com']+linksArr['http://www.bing.com'];
let github = linksArr['http://github.com'];
innerHTML += `
{value: ${bing}, name: '必应'},
{value: ${direct}, name: '直达'},
{value: ${github}, name: 'Github'},
{value: ${sum-bing-github}, name: '友链'}
]
},
{
name: '访问来源', type: 'pie', selectedMode: 'single', radius: [0, '30%'],
label: { position: 'inner', fontSize: 14},
labelLine: { show: false },
data: [
{value: ${search+bing}, name: '搜索', itemStyle: { color : 'green' }},
{value: ${direct}, name: '直达', itemStyle: { color : '#FFDB5C' }},
{value: ${link-bing}, name: '外链', itemStyle: { color : '#32C5E9' }}
]
},
]
};
sourcesChart.setOption(sourcesOption);
window.addEventListener("resize", () => {
sourcesChart.resize();
});`;
script.innerHTML = innerHTML;
}).catch(function (error) {
console.log(error);
});
document.getElementById('sources_container').after(script);
}
if (document.getElementById("calendar_container")) calChart();
if (document.getElementById('map_container')) mapChart();
if (document.getElementById('uv_container')) uvChart();
if (document.getElementById('pv_container')) pvChart();
if (document.getElementById('sources_container')) sourcesChart();

跳过渲染由于census.js在source文件夹下会被渲染,如>会被渲染为gt。在站点yml里skip_render:添加跳过渲染项如下:

1
2
3
skip_render:
- 'census/census.js'
- 'census/data/**'

在主题yml里添加导航就不赘叙了,到此你就可以通过hexo s本地预览查看了。

配置GitHub Action

1
2
3
4
blog (repository)
└── .github
└── workflows
└── getdata.yml

按照如上目录新建getdata.yml如果你已经完成GitHubactions集成化部署。写入如下内容:

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
name: 获取百度统计数据
on:
schedule:
- cron: ' 0 0,6,12,18 * * *'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: 检查分支
uses: actions/checkout@v2
with:
ref: main #2020年10月后github新建仓库默认分支改为main,注意更改
- name: Set up Python #安装python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: 获取数据
run: |
cd /home/runner/work/hexo/hexo/source/census/data/
pip install requests
python get.py
cd /home/runner/work/hexo/hexo
git config --global user.name "你的GitHub用户名如我的brqs"
git config --global user.email "你的GitHub邮箱如3447851674@qq.com"
git add .
git commit -m "百度统计数据上传"
git push origin main

上传到仓库即可,我设置的是每六小时自动执行一次你也可以降低频率。

参考资料

这些是我这篇文章的参考资料,文章中一些代码都出自这些文章,当然也推荐你推荐读一读这些文章了解更多关于站点统计图相关内容。

  1. Hexo 博客访问统计图
  2. 博客成长日志 | 准实时访问统计
  3. Hexo 博客实时访问统计图
  4. Hexo 博客访问日历图
  5. 百度统计api手册
  6. Echarts文档

参考链接:https://blog.csdn.net/qq_51661411/article/details/117459182