-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
103 lines (91 loc) · 4.24 KB
/
test.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
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request))
})
async function handleRequest(request) {
const timezone = 'Asia/Shanghai';
const dashboardResponse = await fetch('https://bd.bangbang93.com/openbmclapi/metric/dashboard');
const dashboardData = await dashboardResponse.json();
const sponsorResponse = await fetch('https://bmclapi2.bangbang93.com/openbmclapi/sponsor');
const sponsorData = await sponsorResponse.json();
const genTime = new Date().toLocaleString('zh-CN', { timeZone: timezone });
const load = (dashboardData.load * 100).toFixed(2);
const curNodes = dashboardData.currentNodes;
const curBandwidth = dashboardData.currentBandwidth.toFixed(2);
const todayData = (dashboardData.bytes / 1099511627776).toFixed(2);
const todayHit = dashboardData.hits;
const sponsorUrl = sponsorData.link;
const xml = `
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.8*" />
<ColumnDefinition Width="1*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<local:MyCard Title="OpenBMCLAPI DashBoard" Margin="0,0,0,5" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2">
<TextBlock Margin="25,12,20,10" HorizontalAlignment="Right">
${genTime} (UTC+8)
</TextBlock>
</local:MyCard>
<local:MyCard Title="在线节点" Margin="0,0,2,4" Grid.Row="1" Grid.Column="0">
<StackPanel Margin="25,40,23,15">
<TextBlock Margin="0,0,0,4" HorizontalAlignment="Center" TextWrapping="Wrap">
<Run Text="${curNodes}" FontSize="26"/>
个
</TextBlock>
</StackPanel>
</local:MyCard>
<local:MyCard Title="出网带宽" Margin="2,0,0,4" Grid.Row="1" Grid.Column="1">
<StackPanel Margin="25,40,23,15">
<TextBlock Margin="0,0,0,4" HorizontalAlignment="Center" TextWrapping="Wrap">
<Run Text="${curBandwidth}" FontSize="26"/>
Mbps
</TextBlock>
</StackPanel>
</local:MyCard>
<local:MyCard Title="今日流量" Margin="0,0,2,4" Grid.Row="2" Grid.Column="0">
<StackPanel Margin="25,40,23,15">
<TextBlock Margin="0,0,0,4" HorizontalAlignment="Center" TextWrapping="Wrap">
<Run Text="${todayData}" FontSize="26"/>
TiB
</TextBlock>
</StackPanel>
</local:MyCard>
<local:MyCard Title="今日请求数" Margin="2,0,0,4" Grid.Row="2" Grid.Column="1">
<StackPanel Margin="25,40,23,15">
<TextBlock Margin="0,0,0,4" HorizontalAlignment="Center" TextWrapping="Wrap">
<Run Text="${todayHit}" FontSize="26"/>
次
</TextBlock>
</StackPanel>
</local:MyCard>
<local:MyCard Title="主控负载" Margin="0,0,0,4" Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="2">
<StackPanel Margin="25,40,23,15">
<StackPanel Margin="0,0,0,4">
<TextBlock Margin="0,0,0,4" HorizontalAlignment="Center" TextWrapping="Wrap">
<Run Text="${load}" FontSize="26"/> %
</TextBlock>
<TextBlock Margin="0,0,0,4" HorizontalAlignment="Center" TextWrapping="Wrap">
(此处数据超过 100% 是正常现象)
</TextBlock>
</StackPanel>
<StackPanel Margin="0,4,0,0" Orientation="Horizontal" HorizontalAlignment="Center">
<local:MyButton Margin="0,0,4,0" Width="180" Height="35" Text="刷新" EventType="刷新主页" ToolTip="重新加载数据,请勿频繁点击" />
<local:MyButton Margin="4,0,0,0" Width="180" Height="35" ColorType="Highlight" Text="查看赞助商信息" EventType="打开网页" EventData="${sponsorUrl}" ToolTip="查看来自 OpenBMCLAPI 赞助商的广告" />
</StackPanel>
</StackPanel>
</local:MyCard>
</Grid>
`;
// 返回内容
return new Response(xml, {
headers: {
'Content-Type': 'text/html',
'Cache-Control': 'public, max-age=300',
},
});
}