Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 60ba3cf15c | |||
| cd8bcbe05a | |||
| 6cc05c88e7 | |||
| 795c357897 | |||
| e172868f39 |
+78
-3
@@ -139,6 +139,9 @@ class Bot
|
||||
case preg_match('~^/mirror$~', $this->input['message'], $m):
|
||||
$this->menu('mirror');
|
||||
break;
|
||||
case preg_match('~^/autoupdate$~', $this->input['message'], $m):
|
||||
$this->autoupdate();
|
||||
break;
|
||||
case preg_match('~^/appOutbound$~', $this->input['callback'], $m):
|
||||
$this->appOutbound();
|
||||
break;
|
||||
@@ -1090,6 +1093,10 @@ class Bot
|
||||
]
|
||||
]);
|
||||
}
|
||||
if ($this->getPacConf()['autoupdate']) {
|
||||
$this->input['chat'] = $this->input['from'] = $c['admin'][0];
|
||||
$this->applyupdatebot();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1101,7 +1108,7 @@ class Bot
|
||||
{
|
||||
try {
|
||||
require __DIR__ . '/config.php';
|
||||
if (!empty($c['admin']) && (empty($this->time2) || ((time() - $this->time2) > 3600))) {
|
||||
if (!empty($c['admin']) && date('H') == 12 && (empty($this->time2) || ((time() - $this->time2) > 4600))) {
|
||||
$this->time2 = time();
|
||||
$cert = $this->expireCert();
|
||||
if (!empty($cert) && $cert - 60 * 60 * 24 * 14 < time()) {
|
||||
@@ -1356,6 +1363,7 @@ class Bot
|
||||
$out[] = 'update xray';
|
||||
$this->update($this->input['chat'], $this->input['message_id'], implode("\n", $out));
|
||||
$this->restartXray($json['xray']);
|
||||
$this->adguardXrayClients();
|
||||
$this->setUpstreamDomain($json['pac']['transport'] == 'Websocket' ? 't' : ($json['pac']['reality']['domain'] ?: $json['xray']['inbounds'][0]['streamSettings']['realitySettings']['serverNames'][0]));
|
||||
}
|
||||
// ocserv
|
||||
@@ -2152,6 +2160,61 @@ class Bot
|
||||
$this->menu('adguard');
|
||||
}
|
||||
|
||||
public function guidv4($data = null) {
|
||||
// Generate 16 bytes (128 bits) of random data or use the data passed into the function.
|
||||
$data = $data ?? random_bytes(16);
|
||||
assert(strlen($data) == 16);
|
||||
|
||||
// Set version to 0100
|
||||
$data[6] = chr(ord($data[6]) & 0x0f | 0x40);
|
||||
// Set bits 6-7 to 10
|
||||
$data[8] = chr(ord($data[8]) & 0x3f | 0x80);
|
||||
|
||||
// Output the 36 character UUID.
|
||||
return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4));
|
||||
}
|
||||
|
||||
public function adguardXrayClients()
|
||||
{
|
||||
$xr = $this->getXray();
|
||||
$ad = yaml_parse_file($this->adguard);
|
||||
foreach ($xr['inbounds'][0]['settings']['clients'] as $k => $v) {
|
||||
$tmp[] = [
|
||||
'safe_search' => [
|
||||
'enabled' => true,
|
||||
'bing' => true,
|
||||
'duckduckgo' => true,
|
||||
'google' => true,
|
||||
'pixabay' => true,
|
||||
'yandex' => true,
|
||||
'youtube' => true,
|
||||
],
|
||||
'blocked_services' => [
|
||||
'schedule' => ['time_zone' => date_default_timezone_get()],
|
||||
'ids' => [],
|
||||
],
|
||||
'name' => str_replace(['_', ' '], '-', $v['email']),
|
||||
'ids' => [$v['email']],
|
||||
'tags' => [],
|
||||
'upstreams' => [],
|
||||
'uid' => $v['id'],
|
||||
'upstreams_cache_size' => 0,
|
||||
'upstreams_cache_enabled' => false,
|
||||
'use_global_settings' => true,
|
||||
'filtering_enabled' => false,
|
||||
'parental_enabled' => false,
|
||||
'safebrowsing_enabled' => false,
|
||||
'use_global_blocked_services' => true,
|
||||
'ignore_querylog' => false,
|
||||
'ignore_statistics' => false,
|
||||
];
|
||||
}
|
||||
$ad['clients']['persistent'] = $tmp;
|
||||
yaml_emit_file($this->adguard, $ad);
|
||||
$this->stopAd();
|
||||
$this->startAd();
|
||||
}
|
||||
|
||||
public function checkdns()
|
||||
{
|
||||
$r = $this->send(
|
||||
@@ -4005,6 +4068,7 @@ DNS-over-HTTPS with IP:
|
||||
if ($i == $k) {
|
||||
unset($r['inbounds'][0]['settings']['clients'][$k]);
|
||||
$this->restartXray($r);
|
||||
$this->adguardXrayClients();
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -4038,6 +4102,7 @@ DNS-over-HTTPS with IP:
|
||||
'email' => $user,
|
||||
];
|
||||
$this->restartXray($c);
|
||||
$this->adguardXrayClients();
|
||||
$this->userXr(count($c['inbounds'][0]['settings']['clients']) - 1);
|
||||
}
|
||||
|
||||
@@ -4084,6 +4149,7 @@ DNS-over-HTTPS with IP:
|
||||
$c = $this->getXray();
|
||||
$c['inbounds'][0]['settings']['clients'][$i]['email'] = $name;
|
||||
$this->restartXray($c);
|
||||
$this->adguardXrayClients();
|
||||
$this->userXr($i);
|
||||
}
|
||||
|
||||
@@ -4625,6 +4691,7 @@ DNS-over-HTTPS with IP:
|
||||
}
|
||||
$template = base64_decode($v["{$type}template"]);
|
||||
$uid = $v['id'];
|
||||
$email = $v['email'];
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -4741,7 +4808,7 @@ DNS-over-HTTPS with IP:
|
||||
break;
|
||||
case 'si':
|
||||
if ($c['dns']['servers'][0]['address'] == '~dns~') {
|
||||
$c['dns']['servers'][0]['address'] = "tls://" . ($pac['adguardkey'] ? "{$pac['adguardkey']}." : '') . "$domain";
|
||||
$c['dns']['servers'][0]['address'] = "https://$domain/dns-query/$email";
|
||||
}
|
||||
|
||||
$c['outbounds'][0]['server'] = $_GET['cdn'] ?: $domain;
|
||||
@@ -5723,7 +5790,7 @@ DNS-over-HTTPS with IP:
|
||||
$conf[] = '';
|
||||
$conf[] = $peer['# PublicKey'] ? '# [Peer]' : '[Peer]';
|
||||
if (!empty($peer['Endpoint'])) {
|
||||
$peer['Endpoint'] = ($pac['domain'] && !$pac[$this->getInstanceWG(1) . 'amnezia'] ? $pac['domain'] : $this->ip) . ":" . getenv($this->getInstanceWG(1) ? 'WG1PORT' : 'WGPORT');
|
||||
$peer['Endpoint'] = ($pac['domain'] ? $pac['domain'] : $this->ip) . ":" . getenv($this->getInstanceWG(1) ? 'WG1PORT' : 'WGPORT');
|
||||
}
|
||||
foreach ($peer as $k => $v) {
|
||||
$conf[] = "$k = $v";
|
||||
@@ -5882,6 +5949,14 @@ DNS-over-HTTPS with IP:
|
||||
return true;
|
||||
}
|
||||
|
||||
public function autoupdate()
|
||||
{
|
||||
$p = $this->getPacConf();
|
||||
$p['autoupdate'] = !$p['autoupdate'];
|
||||
$this->setPacConf($p);
|
||||
$this->send($this->input['from'], $this->i18n('autoupdate') . ' ' . $this->i18n($p['autoupdate'] ? 'on' : 'off'));
|
||||
}
|
||||
|
||||
public function disconnect(...$args)
|
||||
{
|
||||
$this->send($this->input['chat'], "disconnect: \n" . var_export($args, true) . "\n", $this->input['message_id']);
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
16.09.2024 v1.54.1
|
||||
- фикс нэйминга клиентов в adguardHome
|
||||
16.09.2024 v1.54
|
||||
- ~dns~ в шаблоне сингбокса подменяятся на https://DOMAIN/dns-query/USERNAME
|
||||
- при добавлении пользователя в XRAY, он также добавляется в AdguardHome как сохраненый клиент
|
||||
10.09.2024 v1.53
|
||||
- домен в endpoint для амнезии
|
||||
10.09.2024 v1.52
|
||||
- фикс спамящего уведомления о просрочке сертификата
|
||||
10.09.2024 v1.51
|
||||
- фикс ipinfo
|
||||
08.09.2024 v1.50
|
||||
|
||||
Reference in New Issue
Block a user