
* Update README.md Added simple manual instructions * Link to docker documentation * Add basic docker compose example * add descriptive alt-text to GIF * Fix some typos and formatting * Updated Docker to use php8.2-apache as the upstream image. * Clean up apt lists after installation in Dockerfile * Update Dockerfile Co-authored-by: Quentame <polletquentin74@me.com> * fix typo * doc: sqlite db persistance explained * Create docker-publish.yml * Update docker-publish.yml * Update docker-publish.yml * fix action * switch docker image location * without image signing * remove signing * switch units to Mbit/s * move examples to folder * fix ipinfo parsing * fix regression on getIpinfo * removed trailing whitespaces * integrate ios favicon closes #400 * set single-server-full as index --------- Co-authored-by: Les W <30345058+leswaters@users.noreply.github.com> Co-authored-by: bt90 <btom1990@googlemail.com> Co-authored-by: An | Anton Röhm <18481195+AnTheMaker@users.noreply.github.com> Co-authored-by: 0kyn <0kyn.dev@gmail.com> Co-authored-by: Marc Zampetti <zampettim@users.noreply.github.com> Co-authored-by: Peter Dave Hello <hsu@peterdavehello.org> Co-authored-by: Quentame <polletquentin74@me.com> Co-authored-by: Stefan STIDL <stefan.stidl@ffg.at>
300 lines
7.7 KiB
PHP
Executable file
300 lines
7.7 KiB
PHP
Executable file
<?php
|
|
|
|
require_once 'idObfuscation.php';
|
|
|
|
define('TELEMETRY_SETTINGS_FILE', 'telemetry_settings.php');
|
|
|
|
/**
|
|
* @return PDO|false
|
|
*/
|
|
function getPdo($returnErrorMessage = false)
|
|
{
|
|
if (
|
|
!file_exists(TELEMETRY_SETTINGS_FILE)
|
|
|| !is_readable(TELEMETRY_SETTINGS_FILE)
|
|
) {
|
|
if($returnErrorMessage){
|
|
return 'missing TELEMETRY_SETTINGS_FILE';
|
|
}
|
|
return false;
|
|
}
|
|
|
|
require TELEMETRY_SETTINGS_FILE;
|
|
|
|
if (!isset($db_type)) {
|
|
if($returnErrorMessage){
|
|
return "db_type not set in '" . TELEMETRY_SETTINGS_FILE . "'";
|
|
}
|
|
return false;
|
|
}
|
|
|
|
$pdoOptions = [
|
|
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
|
|
];
|
|
|
|
try {
|
|
if ('mssql' === $db_type) {
|
|
if (!isset(
|
|
$MsSql_server,
|
|
$MsSql_databasename,
|
|
$MsSql_WindowsAuthentication
|
|
)) {
|
|
if($returnErrorMessage){
|
|
return "Required MSSQL database settings missing in '" . TELEMETRY_SETTINGS_FILE . "'";
|
|
}
|
|
return false;
|
|
}
|
|
|
|
if (!$MsSql_WindowsAuthentication and
|
|
!isset(
|
|
$MsSql_username,
|
|
$MsSql_password,
|
|
)
|
|
) {
|
|
if($returnErrorMessage){
|
|
return "Required MSSQL database settings missing in '" . TELEMETRY_SETTINGS_FILE . "'";
|
|
}
|
|
return false;
|
|
}
|
|
$dsn = 'sqlsrv:'
|
|
.'server='.$MsSql_server
|
|
.';Database='.$MsSql_databasename;
|
|
|
|
if($MsSql_TrustServerCertificate === true){
|
|
$dsn = $dsn . ';TrustServerCertificate=1';
|
|
}
|
|
if($MsSql_TrustServerCertificate === false){
|
|
$dsn = $dsn . ';TrustServerCertificate=0';
|
|
}
|
|
|
|
if($MsSql_WindowsAuthentication){
|
|
return new PDO($dsn, "", "", $pdoOptions);
|
|
} else {
|
|
return new PDO($dsn, $MySql_username, $MySql_password, $pdoOptions);
|
|
}
|
|
}
|
|
|
|
if ('mysql' === $db_type) {
|
|
if (!isset(
|
|
$MySql_hostname,
|
|
$MySql_port,
|
|
$MySql_databasename,
|
|
$MySql_username,
|
|
$MySql_password
|
|
)) {
|
|
if($returnErrorMessage){
|
|
return "Required mysql database settings missing in '" . TELEMETRY_SETTINGS_FILE . "'";
|
|
}
|
|
return false;
|
|
}
|
|
|
|
$dsn = 'mysql:'
|
|
.'host='.$MySql_hostname
|
|
.';port='.$MySql_port
|
|
.';dbname='.$MySql_databasename;
|
|
|
|
return new PDO($dsn, $MySql_username, $MySql_password, $pdoOptions);
|
|
}
|
|
|
|
if ('sqlite' === $db_type) {
|
|
if (!isset($Sqlite_db_file)) {
|
|
if($returnErrorMessage){
|
|
return "Required sqlite database settings missing in '" . TELEMETRY_SETTINGS_FILE . "'";
|
|
}
|
|
return false;
|
|
}
|
|
|
|
$pdo = new PDO('sqlite:'.$Sqlite_db_file, null, null, $pdoOptions);
|
|
|
|
$pdo->exec('
|
|
CREATE TABLE IF NOT EXISTS `speedtest_users` (
|
|
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
`ispinfo` text,
|
|
`extra` text,
|
|
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
`ip` text NOT NULL,
|
|
`ua` text NOT NULL,
|
|
`lang` text NOT NULL,
|
|
`dl` text,
|
|
`ul` text,
|
|
`ping` text,
|
|
`jitter` text,
|
|
`log` longtext
|
|
);
|
|
');
|
|
|
|
return $pdo;
|
|
}
|
|
|
|
if ('postgresql' === $db_type) {
|
|
if (!isset(
|
|
$PostgreSql_hostname,
|
|
$PostgreSql_databasename,
|
|
$PostgreSql_username,
|
|
$PostgreSql_password
|
|
)) {
|
|
if($returnErrorMessage){
|
|
return "Required postgresql database settings missing in '" . TELEMETRY_SETTINGS_FILE . "'";
|
|
}
|
|
return false;
|
|
}
|
|
|
|
$dsn = 'pgsql:'
|
|
.'host='.$PostgreSql_hostname
|
|
.';dbname='.$PostgreSql_databasename;
|
|
|
|
return new PDO($dsn, $PostgreSql_username, $PostgreSql_password, $pdoOptions);
|
|
}
|
|
} catch (Exception $e) {
|
|
if($returnErrorMessage){
|
|
return $e->getMessage();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
if($returnErrorMessage){
|
|
return "db_type '" . $db_type . "' not supported";
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
function isObfuscationEnabled()
|
|
{
|
|
require TELEMETRY_SETTINGS_FILE;
|
|
|
|
return
|
|
isset($enable_id_obfuscation)
|
|
&& true === $enable_id_obfuscation;
|
|
}
|
|
|
|
/**
|
|
* @return string|false returns the id of the inserted column or false on error if returnErrorMessage is false or a error message if returnErrorMessage is true
|
|
*/
|
|
function insertSpeedtestUser($ip, $ispinfo, $extra, $ua, $lang, $dl, $ul, $ping, $jitter, $log, $returnExceptionOnError = false)
|
|
{
|
|
$pdo = getPdo();
|
|
if (!($pdo instanceof PDO)) {
|
|
if($returnExceptionOnError){
|
|
return new Exception("Failed to get database connection object");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
try {
|
|
$stmt = $pdo->prepare(
|
|
'INSERT INTO speedtest_users
|
|
(ip,ispinfo,extra,ua,lang,dl,ul,ping,jitter,log)
|
|
VALUES (?,?,?,?,?,?,?,?,?,?)'
|
|
);
|
|
$stmt->execute([
|
|
$ip, $ispinfo, $extra, $ua, $lang, $dl, $ul, $ping, $jitter, $log
|
|
]);
|
|
$id = $pdo->lastInsertId();
|
|
} catch (Exception $e) {
|
|
if($returnExceptionOnError){
|
|
return $e;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
if (isObfuscationEnabled()) {
|
|
return obfuscateId($id);
|
|
}
|
|
|
|
return $id;
|
|
}
|
|
|
|
/**
|
|
* @param int|string $id
|
|
*
|
|
* @return array|null|false|exception returns the speedtest data as array, null
|
|
* if no data is found for the given id or
|
|
* false or an exception if there was an error (based on returnExceptionOnError)
|
|
*
|
|
* @throws RuntimeException
|
|
*/
|
|
function getSpeedtestUserById($id,$returnExceptionOnError = false)
|
|
{
|
|
$pdo = getPdo();
|
|
if (!($pdo instanceof PDO)) {
|
|
if($returnExceptionOnError){
|
|
return new Exception("Failed to get database connection object");
|
|
}
|
|
return false;
|
|
}
|
|
|
|
if (isObfuscationEnabled()) {
|
|
$id = deobfuscateId($id);
|
|
}
|
|
|
|
try {
|
|
$stmt = $pdo->prepare(
|
|
'SELECT
|
|
id, timestamp, ip, ispinfo, ua, lang, dl, ul, ping, jitter, log, extra
|
|
FROM speedtest_users
|
|
WHERE id = :id'
|
|
);
|
|
$stmt->bindValue(':id', $id, PDO::PARAM_INT);
|
|
$stmt->execute();
|
|
$row = $stmt->fetch(PDO::FETCH_ASSOC);
|
|
} catch (Exception $e) {
|
|
if($returnExceptionOnError){
|
|
return $e;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
if (!is_array($row)) {
|
|
return null;
|
|
}
|
|
|
|
$row['id_formatted'] = $row['id'];
|
|
if (isObfuscationEnabled()) {
|
|
$row['id_formatted'] = obfuscateId($row['id']).' (deobfuscated: '.$row['id'].')';
|
|
}
|
|
|
|
return $row;
|
|
}
|
|
|
|
/**
|
|
* @return array|false
|
|
*/
|
|
function getLatestSpeedtestUsers()
|
|
{
|
|
$pdo = getPdo();
|
|
if (!($pdo instanceof PDO)) {
|
|
return false;
|
|
}
|
|
|
|
require TELEMETRY_SETTINGS_FILE;
|
|
|
|
try {
|
|
$sql = 'SELECT ';
|
|
|
|
if('mssql' === $db_type) {$sql .= ' TOP(100) ';}
|
|
|
|
$sql .= ' id, timestamp, ip, ispinfo, ua, lang, dl, ul, ping, jitter, log, extra
|
|
FROM speedtest_users
|
|
ORDER BY timestamp DESC ';
|
|
|
|
if('mssql' !== $db_type) {$sql .= ' LIMIT 100 ';}
|
|
|
|
$stmt = $pdo->query($sql);
|
|
|
|
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
foreach ($rows as $i => $row) {
|
|
$rows[$i]['id_formatted'] = $row['id'];
|
|
if (isObfuscationEnabled()) {
|
|
$rows[$i]['id_formatted'] = obfuscateId($row['id']).' (deobfuscated: '.$row['id'].')';
|
|
}
|
|
}
|
|
} catch (Exception $e) {
|
|
return false;
|
|
}
|
|
|
|
return $rows;
|
|
}
|