Compare commits

...

5 Commits

Author SHA1 Message Date
mercury 3a8a843d8c update version 2025-05-20 21:39:34 +04:00
mercury 90828d1117 improve main menu 2025-05-18 19:23:42 +04:00
mercury 37e8b96bcf improve main menu 2025-05-18 11:30:59 +04:00
mercury 306bc41813 improve main menu 2025-05-18 03:29:15 +04:00
mercury f6e5da382b reset vless stats monthly 2025-05-17 16:18:46 +04:00
2 changed files with 168 additions and 36 deletions
+165 -36
View File
@@ -162,6 +162,9 @@ class Bot
case preg_match('~^/switchBanIp$~', $this->input['callback'], $m): case preg_match('~^/switchBanIp$~', $this->input['callback'], $m):
$this->switchBanIp(); $this->switchBanIp();
break; break;
case preg_match('~^/switchMonthlyStats$~', $this->input['callback'], $m):
$this->switchMonthlyStats();
break;
case preg_match('~^/setIpLimit$~', $this->input['callback'], $m): case preg_match('~^/setIpLimit$~', $this->input['callback'], $m):
$this->setIpLimit(); $this->setIpLimit();
break; break;
@@ -1337,6 +1340,7 @@ class Bot
$this->checkVersion(); $this->checkVersion();
$this->checkBackup($period); $this->checkBackup($period);
$this->checkLogs($period); $this->checkLogs($period);
$this->checkResetXrayStats($period);
$this->checkCert(); $this->checkCert();
$this->autoAnalyzeLogs(); $this->autoAnalyzeLogs();
$this->xrayStatsUser(); $this->xrayStatsUser();
@@ -1444,6 +1448,29 @@ class Bot
} }
} }
public function checkResetXrayStats($delta)
{
$pac = $this->getPacConf();
if (!empty($pac['reset_monthly'])) {
$now = strtotime(date('Y-m-d H:i:s'));
$start = strtotime('first day of previous month midnight');
$period = strtotime('1 month', 0);
if (
!empty($start)
&& !empty($period)
&& empty($this->backup)
&& $now - $start >= 0
&& (($now - $start) % $period < $delta)
) {
$this->resetXrStats(1);
require __DIR__ . '/config.php';
foreach ($c['admin'] as $admin) {
$this->send($admin, "vless: reset stats");
}
}
}
}
public function checkLogs($delta) public function checkLogs($delta)
{ {
$c = $this->getPacConf(); $c = $this->getPacConf();
@@ -4276,6 +4303,43 @@ DNS-over-HTTPS with IP:
$this->menu('wg', 0); $this->menu('wg', 0);
} }
public function alignColumns(array $columns): string
{
// Находим максимальную длину для каждого столбца
$columnLengths = [];
foreach ($columns as $column) {
$maxLength = 0;
foreach ($column as $cell) {
$len = mb_strlen($cell, 'UTF-8');
$maxLength = max($maxLength, $len);
}
$columnLengths[] = $maxLength;
}
// Получаем количество строк из первого столбца
$rowCount = count($columns[0]);
$columnCount = count($columns);
// Формируем строки с выравниванием
$result = [];
for ($row = 0; $row < $rowCount; $row++) {
$line = '';
for ($col = 0; $col < $columnCount; $col++) {
$cell = $columns[$col][$row];
$padding = str_repeat(' ', $columnLengths[$col] - mb_strlen($cell, 'UTF-8'));
$line .= $cell . $padding;
// Добавляем разделитель между столбцами, кроме последнего
if ($col < $columnCount - 1) {
$line .= ' '; // Два пробела между столбцами
}
}
$result[] = $line;
}
return implode("\n", $result);
}
public function menu($type = false, $arg = false, $return = false) public function menu($type = false, $arg = false, $return = false)
{ {
$conf = $this->getPacConf(); $conf = $this->getPacConf();
@@ -4296,26 +4360,70 @@ DNS-over-HTTPS with IP:
$f = '/docker/compose'; $f = '/docker/compose';
$c = yaml_parse_file($f)['services']; $c = yaml_parse_file($f)['services'];
$main[] = 'v' . getenv('VER') . " $branch" . ($update ? ' (have updates)' : ''); $main[] = 'v' . getenv('VER') . " $branch" . ($update ? ' (have updates)' : '');
$main[] = '';
$main[] = $cron;
$main[] = $this->i18n($backup ? 'on' : 'off') . ' autobackup' . ($backup ? " $backup" : '');
$main[] = $this->i18n($conf['autoupdate'] ? 'on' : 'off') . ' autoupdate';
$main[] = $this->i18n($conf['autoscan'] ? 'on' : 'off') . ' autoscan';
$main[] = $this->i18n($conf['autodeny'] ? 'on' : 'off') . ' autoblock' . ($conf['deny'] ? ': ' . count($conf['deny']) : '');
$main[] = '';
$main[] = $this->i18n($c['wg'] ? 'on' : 'off') . ' ' . getenv('WGPORT') . ' Wireguard';
$main[] = $this->i18n($c['wg1'] ? 'on' : 'off') . ' ' . getenv('WG1PORT') . ' Wireguard 1';
$main[] = $this->i18n($c['tg'] ? 'on' : 'off') . ' ' . getenv('TGPORT') . ' MTProto';
$main[] = $this->i18n($c['ad'] ? 'on' : 'off') . ' 853 AdguardHome DoT';
$main[] = $this->i18n($c['ss'] ? 'on' : 'off') . ' 8388 Shadowsocks';
if (!empty($conf['domain'])) { if (!empty($conf['domain'])) {
$main[] = ''; $main[] = '';
$oc = $this->getHashSubdomain('oc'); $oc = $this->getHashSubdomain('oc');
$np = $this->getHashSubdomain('np'); $np = $this->getHashSubdomain('np');
$main[] = $conf['domain'] ? "Domains:\n{$conf['domain']}\n$np.{$conf['domain']} (for naiveproxy)\n$oc.{$conf['domain']} (for openconnect)" . ($conf['adguardkey'] ? "\n{$conf['adguardkey']}.{$conf['domain']} (for adguard DoT)" : '') : $this->i18n('domain explain'); if (!empty($conf['domain'])) {
$ssl = $this->expireCert(); $ssl_expiry = $this->expireCert();
$main[] = $conf['domain'] ? "\nSSL: " . ($ssl ? date('Y-m-d H:i:s', $this->expireCert()) . "\n" . $this->domainsCert() : 'none') : ''; $certs = $this->domainsCert() ?: [];
$main[] = "<blockquote>";
$main[] = "Domains:";
$main[] = $conf['domain'] . (in_array($conf['domain'], $certs) ? ' (ssl: ' . date('Y-m-d H:i:s', $ssl_expiry) . ')' : '');
$main[] = 'naive ' . "$np.{$conf['domain']}" . (in_array("$np.{$conf['domain']}", $certs) ? ' (ssl: ' . date('Y-m-d H:i:s', $ssl_expiry) . ')' : '');
$main[] = 'openconnect ' . "$oc.{$conf['domain']}" . (in_array("$oc.{$conf['domain']}", $certs) ? ' (ssl: ' . date('Y-m-d H:i:s', $ssl_expiry) . ')' : '');
if (!empty($conf['adguardkey'])) {
$main[] = "{$conf['adguardkey']}.{$conf['domain']}" . (in_array("{$conf['adguardkey']}.{$conf['domain']}", $certs) ? ' (ssl: ' . date('Y-m-d H:i:s', $ssl_expiry) . ')' : '') . ' adguard DOT';;
}
$main[] = "</blockquote>";
} else {
$main[] = $this->i18n('domain explain');
}
} }
$main[] = '';
$main[] = '<code>';
$main[] = $this->alignColumns([
[
$this->i18n($this->ssh($this->getPacConf()['amnezia'] ? 'awg' : 'wg', 'wg') ? 'on' : 'off') . ' ' . $this->i18n($this->getPacConf()['amnezia'] ? 'amnezia' : 'wg_title'),
$this->i18n($this->ssh($this->getPacConf()['wg1_amnezia'] ? 'awg' : 'wg', 'wg1') ? 'on' : 'off') . ' ' . $this->i18n($this->getPacConf()['wg1_amnezia'] ? 'amnezia' : 'wg_title'),
$this->i18n($this->ssh('pgrep xray', 'xr') ? 'on' : 'off') . ' ' . $this->i18n('xray'),
$this->i18n($this->ssh('pgrep caddy', 'np') ? 'on' : 'off') . ' ' . $this->i18n('naive'),
$this->i18n($this->ssh('pgrep ocserv', 'oc') ? 'on' : 'off') . ' ' . $this->i18n('ocserv'),
$this->i18n($this->ssh('pgrep mtproto-proxy', 'tg') ? 'on' : 'off') . ' ' . $this->i18n('mtproto'),
$this->i18n(exec("JSON=1 timeout 2 dnslookup google.com ad") ? 'on' : 'off') . ' ' . $this->i18n('ad_title'),
$this->i18n($this->ssh('pgrep ssserver', 'ss') ? 'on' : 'off') . ' ' . $this->i18n('sh_title'),
$this->i18n($this->warpStatus()) . ' ' . $this->i18n('warp'),
],
[
$this->i18n($c['wg'] ? 'on' : 'off') . ' ' . getenv('WGPORT'),
$this->i18n($c['wg1'] ? 'on' : 'off') . ' ' . getenv('WG1PORT'),
$this->i18n('on') . ' 443',
$this->i18n('on') . ' 443',
$this->i18n('on') . ' 443',
$this->i18n($c['tg'] ? 'on' : 'off') . ' ' . getenv('TGPORT'),
$this->i18n($c['ad'] ? 'on' : 'off') . ' 853',
$this->i18n($c['ss'] ? 'on' : 'off') . ' ' . getenv('SSPORT'),
'',
],
]);
$main[] = '';
$main[] = $this->alignColumns([
[
$this->i18n($backup ? 'on' : 'off') . ' autobackup',
$this->i18n($conf['autoupdate'] ? 'on' : 'off') . ' autoupdate',
$this->i18n($conf['autoscan'] ? 'on' : 'off') . ' autoscan',
],
[
$this->i18n($conf['autodeny'] ? 'on' : 'off') . ' autoblock' . ($conf['deny'] ? ': ' . count($conf['deny']) : ''),
$this->i18n($conf['reset_monthly'] ? 'on' : 'off') . ' autoreset',
$cron,
],
]);
$main[] = '</code>';
} }
$menu = [ $menu = [
'main' => [ 'main' => [
@@ -4323,47 +4431,47 @@ DNS-over-HTTPS with IP:
'data' => [ 'data' => [
[ [
[ [
'text' => $this->i18n($this->getPacConf()['amnezia'] ? 'amnezia' : 'wg_title') . ' ' . $this->i18n($this->ssh($this->getPacConf()['amnezia'] ? 'awg' : 'wg', 'wg') ? 'on' : 'off'), 'text' => $this->i18n($this->getPacConf()['amnezia'] ? 'amnezia' : 'wg_title'),
'callback_data' => "/changeWG 0", 'callback_data' => "/changeWG 0",
], ],
[ [
'text' => $this->i18n($this->getPacConf()['wg1_amnezia'] ? 'amnezia' : 'wg_title') . ' ' . $this->i18n($this->ssh($this->getPacConf()['wg1_amnezia'] ? 'awg' : 'wg', 'wg1') ? 'on' : 'off'), 'text' => $this->i18n($this->getPacConf()['wg1_amnezia'] ? 'amnezia' : 'wg_title'),
'callback_data' => "/changeWG 1", 'callback_data' => "/changeWG 1",
], ],
], ],
[ [
[ [
'text' => $this->i18n('xray') . ' ' . $this->i18n($this->ssh('pgrep xray', 'xr') ? 'on' : 'off'), 'text' => $this->i18n('xray'),
'callback_data' => "/xray", 'callback_data' => "/xray",
], ],
[ [
'text' => $this->i18n('naive') . ' ' . $this->i18n($this->ssh('pgrep caddy', 'np') ? 'on' : 'off'), 'text' => $this->i18n('naive'),
'callback_data' => "/menu naive", 'callback_data' => "/menu naive",
], ],
], ],
[ [
[ [
'text' => $this->i18n('ocserv') . ' ' . $this->i18n($this->ssh('pgrep ocserv', 'oc') ? 'on' : 'off'), 'text' => $this->i18n('ocserv'),
'callback_data' => "/menu oc", 'callback_data' => "/menu oc",
], ],
[ [
'text' => $this->i18n('mtproto') . ' ' . $this->i18n($this->ssh('pgrep mtproto-proxy', 'tg') ? 'on' : 'off'), 'text' => $this->i18n('mtproto'),
'callback_data' => "/mtproto", 'callback_data' => "/mtproto",
], ],
], ],
[ [
[ [
'text' => $this->i18n('ad_title') . ' ' . $this->i18n(exec("JSON=1 timeout 2 dnslookup google.com ad") ? 'on' : 'off'), 'text' => $this->i18n('ad_title'),
'callback_data' => "/menu adguard", 'callback_data' => "/menu adguard",
], ],
[ [
'text' => $this->i18n('warp') . ' ' . $this->i18n($this->warpStatus()), 'text' => $this->i18n('warp'),
'callback_data' => "/warp", 'callback_data' => "/warp",
], ],
], ],
[ [
[ [
'text' => $this->i18n('sh_title') . ' ' . $this->i18n($this->ssh('pgrep ssserver', 'ss') ? 'on' : 'off'), 'text' => $this->i18n('sh_title'),
'callback_data' => "/menu ss", 'callback_data' => "/menu ss",
], ],
[ [
@@ -4459,6 +4567,14 @@ DNS-over-HTTPS with IP:
$this->ipMenu(); $this->ipMenu();
} }
public function switchMonthlyStats()
{
$c = $this->getPacConf();
$c['reset_monthly'] = $c['reset_monthly'] ? 0 : 1;
$this->setPacConf($c);
$this->xray();
}
public function switchIpLimit($limit) public function switchIpLimit($limit)
{ {
$limit = explode(':', $limit); $limit = explode(':', $limit);
@@ -5440,11 +5556,13 @@ DNS-over-HTTPS with IP:
$this->userXr($i); $this->userXr($i);
} }
public function resetXrStats() public function resetXrStats($nomenu = false)
{ {
$this->restartXray($this->getXray()); $this->restartXray($this->getXray());
$this->setXrayStats([]); $this->setXrayStats([]);
$this->xray(); if (empty($nomenu)) {
$this->xray();
}
} }
public function listXr($i) public function listXr($i)
@@ -5756,6 +5874,10 @@ DNS-over-HTTPS with IP:
'text' => $this->i18n('reset stats') . ": ↓$td$tu", 'text' => $this->i18n('reset stats') . ": ↓$td$tu",
'callback_data' => '/resetXrStats', 'callback_data' => '/resetXrStats',
], ],
[
'text' => $this->i18n('reset monthly') . ": " . $this->i18n($this->getPacConf()['reset_monthly'] ? 'on' : 'off'),
'callback_data' => '/switchMonthlyStats',
],
]; ];
$data[] = [ $data[] = [
[ [
@@ -7096,7 +7218,7 @@ DNS-over-HTTPS with IP:
if (empty($domains)) { if (empty($domains)) {
return false; return false;
} }
return implode("\n", array_map(fn($e) => trim($e), explode(',', str_replace('DNS:', '', $domains)))); return array_map(fn($e) => trim($e), explode(',', str_replace('DNS:', '', $domains)));
} }
public function updatebot() public function updatebot()
@@ -7166,17 +7288,24 @@ DNS-over-HTTPS with IP:
public function configMenu() public function configMenu()
{ {
$conf = $this->getPacConf(); $conf = $this->getPacConf();
if (!empty($conf['subdomain'])) {
$custom = "\ncustom:\n";
foreach ($conf['subdomain'] as $v) {
$custom .= "$v\n";
}
}
$oc = $this->getHashSubdomain('oc'); $oc = $this->getHashSubdomain('oc');
$np = $this->getHashSubdomain('np'); $np = $this->getHashSubdomain('np');
$text[] = $conf['domain'] ? "Domains:\n{$conf['domain']}\n$np.{$conf['domain']} (for naiveproxy)\n$oc.{$conf['domain']} (for openconnect)" . ($conf['adguardkey'] ? "\n{$conf['adguardkey']}.{$conf['domain']} (for adguard DoT)" : '') : $this->i18n('domain explain'); if (!empty($conf['domain'])) {
$ssl = $this->expireCert(); $ssl_expiry = $this->expireCert();
$text[] = $conf['domain'] ? "\nSSL: " . ($ssl ? date('Y-m-d H:i:s', $this->expireCert()) . "\n" . $this->domainsCert() : 'none') : ''; $certs = $this->domainsCert() ?: [];
$text[] = "<blockquote>";
$text[] = "Domains:";
$text[] = $conf['domain'] . (in_array($conf['domain'], $certs) ? ' (ssl: ' . date('Y-m-d H:i:s', $ssl_expiry) . ')' : '');
$text[] = 'naive ' . "$np.{$conf['domain']}" . (in_array("$np.{$conf['domain']}", $certs) ? ' (ssl: ' . date('Y-m-d H:i:s', $ssl_expiry) . ')' : '');
$text[] = 'openconnect ' . "$oc.{$conf['domain']}" . (in_array("$oc.{$conf['domain']}", $certs) ? ' (ssl: ' . date('Y-m-d H:i:s', $ssl_expiry) . ')' : '');
if (!empty($conf['adguardkey'])) {
$text[] = "{$conf['adguardkey']}.{$conf['domain']}" . (in_array("{$conf['adguardkey']}.{$conf['domain']}", $certs) ? ' (ssl: ' . date('Y-m-d H:i:s', $ssl_expiry) . ')' : '') . ' adguard DOT';;
}
$text[] = "</blockquote>";
} else {
$text[] = $this->i18n('domain explain');
}
$data = [ $data = [
[ [
+3
View File
@@ -1,3 +1,6 @@
20.05.2025 v2.20
- коррекция главного меню
- vless: опция обнуления статы ежемесячно
17.05.2025 v2.19 17.05.2025 v2.19
- фикс падения vless при одинаковом имени пользователей - фикс падения vless при одинаковом имени пользователей
- фикс падения vless при установке таймера для выключенного пользователя - фикс падения vless при установке таймера для выключенного пользователя