forked from LeonStraathof/pfsense-speedtest-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspeedtest.widget.php
More file actions
167 lines (160 loc) · 6.66 KB
/
speedtest.widget.php
File metadata and controls
167 lines (160 loc) · 6.66 KB
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
<?php
/*
* speedtest.widget.php
*
* Copyright (c) 2020 Alon Noy (only works with the not official speedtest cli that is no longer supported and does give wrong results)
* The original by Alon Noy can be found here: https://github.com/aln-1/pfsense-speedtest-widget
* Copyright (c) 2024 Leon Straathof (modified version to work with official speedtest cli)
*
* Licensed under the GPL, Version 3.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.gnu.org/licenses/gpl-3.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* EXAMPLE JSON DATA FORMAT FROM THE OFFICIAL SPEEDTEST CLI (VERSION 1.2.0.84-1)
{"type":"result",
"timestamp":"2024-01-05T10:09:25Z",
"ping":{"jitter":0.043,"latency":4.752,"low":4.727,"high":4.799},
"download":{"bandwidth":117318968,"bytes":692084632,"elapsed":5914,"latency":{"iqm":21.800,"low":4.676,"high":24.308,"jitter":0.680}},
"upload":{"bandwidth":110904809,"bytes":1097799285,"elapsed":10311,"latency":{"iqm":4.714,"low":3.697,"high":7.739,"jitter":0.416}},
"packetLoss":0,
"isp":"T-Mobile Netherlands",
"interface":{"internalIp":"123.123.123.123","name":"vmx0","macAddr":"0A:1B:2C:3D:4E:5F","isVpn":false,"externalIp":"123.123.123.123"},
"server":{"id":13883,"host":"speedtest.trined.nl","port":8080,"name":"TriNed B.V.","location":"Sint-Oedenrode","country":"Netherlands","ip":"45.145.108.44"},
"result":{"id":"12345678-abcd-1234-abcd-123456789abc","url":"https://www.speedtest.net/result/c/12345678-abcd-1234-abcd-123456789abc","persisted":true}}
INSTALL
-------
Goto https://www.speedtest.net/apps/cli
Click FreeBSD and find URL of newest version.
Diagnotics-->Command Prompt-->Execute Shell Command:
env ABI=FreeBSD:13:x86:64 pkg add "https://install.speedtest.net/app/cli/ookla-speedtest-1.2.0-freebsd13-x86_64.pkg"
(Use the URL found on the speedtest.net website and the FreeBSD version number in env ABI must match the version number in the URL)
Diagnotics-->Command Prompt-->Execute Shell Command:
speedtest --accept-license
Diagnotics-->Command Prompt-->Execute Shell Command:
speedtest --accept-gdpr
Diagnotics-->Command Prompt-->Upload File:
speedtest.widget.php
Diagnotics-->Command Prompt-->Execute Shell Command:
mv -f /tmp/speedtest.widget.php /usr/local/www/widgets/widgets/
Status-->Dashboard:
Add the speedtest widget.
UNINSTALL
---------
Diagnotics-->Command Prompt-->Execute Shell Command:
pkg info | grep speedtest
Diagnotics-->Command Prompt-->Execute Shell Command:
pkg delete -y speedtest-1.2.0.84-1.ea6b6773cf
(use the package name found in the first step)
Status-->Dashboard:
Remove the speedtest widget.
Diagnotics-->Command Prompt-->Execute Shell Command:
rm -f /usr/local/www/widgets/widgets/speedtest.widget.php
*/
require_once("guiconfig.inc");
if ($_REQUEST['ajax']) {
$results = shell_exec("speedtest -f json --accept-license --accept-gdpr");
if(($results !== null) && (json_decode($results) !== null)) {
$config['widgets']['speedtest_result'] = $results;
write_config("Save speedtest results");
echo $results;
} else {
echo json_encode(null);
}
} else {
$results = isset($config['widgets']['speedtest_result']) ? $config['widgets']['speedtest_result'] : null;
if(($results !== null) && (!is_object(json_decode($results)))) {
$results = null;
}
?>
<table class="table">
<tr>
<td><h4>Ping <i class="fa fa-exchange"></h4></td>
<td><h4>Download <i class="fa fa-download"></i></h4></td>
<td><h4>Upload <i class="fa fa-upload"></h4></td>
</tr>
<tr>
<td><h4 id="speedtest-ping">N/A</h4></td>
<td><h4 id="speedtest-download">N/A</h4></td>
<td><h4 id="speedtest-upload">N/A</h4></td>
</tr>
<tr>
<td>ISP</td>
<td colspan="2" id="speedtest-isp">N/A</td>
</tr>
<tr>
<td>Host</td>
<td colspan="2" id="speedtest-host">N/A</td>
</tr>
<tr>
<td colspan="3" id="speedtest-ts" style="font-size: 0.8em;"> </td>
</tr>
</table>
<a id="updspeed" href="#" class="fa fa-refresh" style="display: none;"></a>
<a id="Ookla" href="#" target="_blank" style="display: none;"> <i class="fa fa-external-link"></i></a>
<script type="text/javascript">
function update_result(results) {
if(results != null) {
var date = new Date(results.timestamp);
$("#speedtest-ts").html(date);
$("#speedtest-ping").html(results.ping.latency.toFixed(2) + "<small> ms</small>");
$("#speedtest-download").html((results.download.bandwidth / 1000000 * 8).toFixed(2) + "<small> Mbps </small><h5>(" + results.download.latency.iqm + "<small> ms</small>)</h5>");
$("#speedtest-upload").html((results.upload.bandwidth / 1000000 * 8).toFixed(2) + "<small> Mbps </small><h5>(" + results.upload.latency.iqm + "<small> ms</small>)</h5>");
$("#speedtest-isp").html(results.isp + "<small> (" + results.interface.externalIp + ")</small>");
$("#speedtest-host").html(results.server.name + " " + results.server.location + " " + results.server.country + "<small> (" + results.server.ip + ")</small>");
$("#Ookla").attr("href", results.result.url);
$("#Ookla").show();
} else {
$("#speedtest-ts").html("Speedtest failed");
$("#speedtest-ping").html("N/A");
$("#speedtest-download").html("N/A");
$("#speedtest-upload").html("N/A");
$("#speedtest-upload").html("N/A");
$("#speedtest-isp").html("N/A");
$("#speedtest-host").html("N/A");
}
}
function update_speedtest() {
$('#updspeed').off("click").blur().addClass("fa-spin").click(function() {
$('#updspeed').blur();
return false;
});
$.ajax({
type: 'POST',
url: "/widgets/widgets/speedtest.widget.php",
dataType: 'json',
data: {
ajax: "ajax"
},
success: function(data) {
update_result(data);
},
error: function() {
update_result(null);
},
complete: function() {
$('#updspeed').off("click").removeClass("fa-spin").click(function() {
update_speedtest();
return false;
});
}
});
}
events.push(function() {
var target = $("#updspeed").closest(".panel").find(".widget-heading-icon");
$("#Ookla").prependTo(target);
$("#updspeed").prependTo(target).show();
$('#updspeed').click(function() {
update_speedtest();
return false;
});
update_result(<?php echo ($results === null ? "null" : $results); ?>);
});
</script>
<?php } ?>