2021-07-29 19:13:01 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Client\Protocols;
|
|
|
|
|
2022-03-25 02:02:01 +08:00
|
|
|
class SagerNet
|
2021-07-29 19:13:01 +08:00
|
|
|
{
|
2022-03-25 02:02:01 +08:00
|
|
|
public $flag = 'sagernet';
|
2021-07-29 19:13:01 +08:00
|
|
|
private $servers;
|
|
|
|
private $user;
|
|
|
|
|
|
|
|
public function __construct($user, $servers)
|
|
|
|
{
|
|
|
|
$this->user = $user;
|
|
|
|
$this->servers = $servers;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
$servers = $this->servers;
|
|
|
|
$user = $this->user;
|
|
|
|
$uri = '';
|
|
|
|
|
|
|
|
foreach ($servers as $item) {
|
2023-02-15 14:53:13 +08:00
|
|
|
if ($item['type'] === 'vmess') {
|
2021-07-29 19:13:01 +08:00
|
|
|
$uri .= self::buildVmess($user['uuid'], $item);
|
|
|
|
}
|
|
|
|
if ($item['type'] === 'shadowsocks') {
|
|
|
|
$uri .= self::buildShadowsocks($user['uuid'], $item);
|
|
|
|
}
|
|
|
|
if ($item['type'] === 'trojan') {
|
|
|
|
$uri .= self::buildTrojan($user['uuid'], $item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return base64_encode($uri);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function buildShadowsocks($uuid, $server)
|
|
|
|
{
|
|
|
|
$name = rawurlencode($server['name']);
|
|
|
|
$str = str_replace(
|
|
|
|
['+', '/', '='],
|
|
|
|
['-', '_', ''],
|
|
|
|
base64_encode("{$server['cipher']}:{$uuid}")
|
|
|
|
);
|
|
|
|
return "ss://{$str}@{$server['host']}:{$server['port']}#{$name}\r\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function buildShadowsocksSIP008($uuid, $server)
|
|
|
|
{
|
|
|
|
$config = [
|
|
|
|
"id" => $server['id'],
|
|
|
|
"remarks" => $server['name'],
|
|
|
|
"server" => $server['host'],
|
|
|
|
"server_port" => $server['port'],
|
|
|
|
"password" => $uuid,
|
|
|
|
"method" => $server['cipher']
|
|
|
|
];
|
|
|
|
return $config;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function buildVmess($uuid, $server)
|
|
|
|
{
|
|
|
|
$config = [
|
|
|
|
"encryption" => "none",
|
|
|
|
"type" => urlencode($server['network']),
|
|
|
|
"security" => $server['tls'] ? "tls" : "",
|
|
|
|
];
|
2021-07-31 12:13:01 +08:00
|
|
|
if ($server['tls']) {
|
|
|
|
if ($server['tlsSettings']) {
|
2021-08-06 00:43:01 +08:00
|
|
|
$tlsSettings = $server['tlsSettings'];
|
2021-07-31 12:13:01 +08:00
|
|
|
if (isset($tlsSettings['serverName']) && !empty($tlsSettings['serverName']))
|
|
|
|
$config['sni'] = urlencode($tlsSettings['serverName']);
|
|
|
|
}
|
|
|
|
}
|
2021-07-29 19:13:01 +08:00
|
|
|
if ((string)$server['network'] === 'ws') {
|
2021-08-06 00:43:01 +08:00
|
|
|
$wsSettings = $server['networkSettings'];
|
2022-03-25 02:02:01 +08:00
|
|
|
if (isset($wsSettings['path'])) $config['path'] = $wsSettings['path'];
|
2021-07-29 19:13:01 +08:00
|
|
|
if (isset($wsSettings['headers']['Host'])) $config['host'] = urlencode($wsSettings['headers']['Host']);
|
|
|
|
}
|
|
|
|
if ((string)$server['network'] === 'grpc') {
|
2021-08-06 00:43:01 +08:00
|
|
|
$grpcSettings = $server['networkSettings'];
|
2021-07-29 19:13:01 +08:00
|
|
|
if (isset($grpcSettings['serviceName'])) $config['serviceName'] = urlencode($grpcSettings['serviceName']);
|
|
|
|
}
|
|
|
|
return "vmess://" . $uuid . "@" . $server['host'] . ":" . $server['port'] . "?" . http_build_query($config) . "#" . urlencode($server['name']) . "\r\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function buildTrojan($uuid, $server)
|
|
|
|
{
|
|
|
|
$name = rawurlencode($server['name']);
|
|
|
|
$query = http_build_query([
|
|
|
|
'allowInsecure' => $server['allow_insecure'],
|
|
|
|
'peer' => $server['server_name'],
|
|
|
|
'sni' => $server['server_name']
|
|
|
|
]);
|
|
|
|
$uri = "trojan://{$uuid}@{$server['host']}:{$server['port']}?{$query}#{$name}";
|
|
|
|
$uri .= "\r\n";
|
|
|
|
return $uri;
|
|
|
|
}
|
|
|
|
}
|