Files
Xboard/app/Protocols/Surge.php

219 lines
8.3 KiB
PHP
Raw Normal View History

2023-11-17 14:44:01 +08:00
<?php
namespace App\Protocols;
use App\Utils\Helper;
use Illuminate\Support\Facades\File;
use App\Support\AbstractProtocol;
2023-11-17 14:44:01 +08:00
class Surge extends AbstractProtocol
2023-11-17 14:44:01 +08:00
{
2025-01-21 14:57:54 +08:00
public $flags = ['surge'];
const CUSTOM_TEMPLATE_FILE = 'resources/rules/custom.surge.conf';
const DEFAULT_TEMPLATE_FILE = 'resources/rules/default.surge.conf';
2023-11-17 14:44:01 +08:00
protected $protocolRequirements = [
'surge' => [
'hysteria' => [
'protocol_settings.version' => [
'2' => '2398'
],
],
],
];
2025-01-21 14:57:54 +08:00
2023-11-17 14:44:01 +08:00
public function handle()
{
$servers = $this->servers;
$user = $this->user;
$appName = admin_setting('app_name', 'XBoard');
$proxies = '';
$proxyGroup = '';
foreach ($servers as $item) {
2025-01-21 14:57:54 +08:00
if (
$item['type'] === 'shadowsocks'
&& in_array(data_get($item, 'protocol_settings.cipher'), [
2023-11-17 14:44:01 +08:00
'aes-128-gcm',
'aes-192-gcm',
'aes-256-gcm',
'chacha20-ietf-poly1305'
])
) {
$proxies .= self::buildShadowsocks($item['password'], $item);
2023-11-17 14:44:01 +08:00
$proxyGroup .= $item['name'] . ', ';
}
if ($item['type'] === 'vmess') {
$proxies .= self::buildVmess($user['uuid'], $item);
$proxyGroup .= $item['name'] . ', ';
}
if ($item['type'] === 'trojan') {
$proxies .= self::buildTrojan($user['uuid'], $item);
$proxyGroup .= $item['name'] . ', ';
}
if ($item['type'] === 'hysteria') {
$proxies .= self::buildHysteria($user['uuid'], $item);
$proxyGroup .= $item['name'] . ', ';
}
2023-11-17 14:44:01 +08:00
}
$config = File::exists(base_path(self::CUSTOM_TEMPLATE_FILE))
? File::get(base_path(self::CUSTOM_TEMPLATE_FILE))
: File::get(base_path(self::DEFAULT_TEMPLATE_FILE));
2023-11-17 14:44:01 +08:00
// Subscription link
$subsDomain = request()->header('Host');
$subsURL = Helper::getSubscribeUrl($user['token'], $subsDomain ? 'https://' . $subsDomain : null);
2023-11-17 14:44:01 +08:00
$config = str_replace('$subs_link', $subsURL, $config);
$config = str_replace('$subs_domain', $subsDomain, $config);
$config = str_replace('$proxies', $proxies, $config);
$config = str_replace('$proxy_group', rtrim($proxyGroup, ', '), $config);
2025-01-21 14:57:54 +08:00
$upload = round($user['u'] / (1024 * 1024 * 1024), 2);
$download = round($user['d'] / (1024 * 1024 * 1024), 2);
2023-11-17 14:44:01 +08:00
$useTraffic = $upload + $download;
2025-01-21 14:57:54 +08:00
$totalTraffic = round($user['transfer_enable'] / (1024 * 1024 * 1024), 2);
$unusedTraffic = $totalTraffic - $useTraffic;
2023-11-17 14:44:01 +08:00
$expireDate = $user['expired_at'] === NULL ? '长期有效' : date('Y-m-d H:i:s', $user['expired_at']);
$subscribeInfo = "title={$appName}订阅信息, content=上传流量:{$upload}GB\\n下载流量{$download}GB\\n剩余流量{ $unusedTraffic }GB\\n套餐流量{$totalTraffic}GB\\n到期时间{$expireDate}";
2023-11-17 14:44:01 +08:00
$config = str_replace('$subscribe_info', $subscribeInfo, $config);
return response($config, 200)
2025-01-21 14:57:54 +08:00
->header('content-disposition', "attachment;filename*=UTF-8''" . rawurlencode($appName) . ".conf");
2023-11-17 14:44:01 +08:00
}
public static function buildShadowsocks($password, $server)
{
2025-01-21 14:57:54 +08:00
$protocol_settings = $server['protocol_settings'];
2023-11-17 14:44:01 +08:00
$config = [
"{$server['name']}=ss",
"{$server['host']}",
"{$server['port']}",
2025-01-21 14:57:54 +08:00
"encrypt-method={$protocol_settings['cipher']}",
2023-11-17 14:44:01 +08:00
"password={$password}",
'tfo=true',
'udp-relay=true'
];
if (data_get($protocol_settings, 'plugin') && data_get($protocol_settings, 'plugin_opts')) {
$plugin = data_get($protocol_settings, 'plugin');
$pluginOpts = data_get($protocol_settings, 'plugin_opts', '');
// 解析插件选项
$parsedOpts = collect(explode(';', $pluginOpts))
->filter()
->mapWithKeys(function ($pair) {
if (!str_contains($pair, '=')) {
return [];
}
[$key, $value] = explode('=', $pair, 2);
return [trim($key) => trim($value)];
})
->all();
switch ($plugin) {
case 'obfs':
$config[] = "obfs={$parsedOpts['obfs']}";
if (isset($parsedOpts['obfs-host'])) {
$config[] = "obfs-host={$parsedOpts['obfs-host']}";
}
if (isset($parsedOpts['path'])) {
$config[] = "obfs-uri={$parsedOpts['path']}";
}
break;
}
}
2023-11-17 14:44:01 +08:00
$config = array_filter($config);
$uri = implode(',', $config);
$uri .= "\r\n";
return $uri;
}
public static function buildVmess($uuid, $server)
{
2025-01-21 14:57:54 +08:00
$protocol_settings = $server['protocol_settings'];
2023-11-17 14:44:01 +08:00
$config = [
"{$server['name']}=vmess",
"{$server['host']}",
"{$server['port']}",
"username={$uuid}",
"vmess-aead=true",
'tfo=true',
'udp-relay=true'
];
2025-01-21 14:57:54 +08:00
if (data_get($protocol_settings, 'tls')) {
2023-11-17 14:44:01 +08:00
array_push($config, 'tls=true');
2025-01-21 14:57:54 +08:00
if (data_get($protocol_settings, 'tls_settings')) {
$tlsSettings = data_get($protocol_settings, 'tls_settings');
if (data_get($tlsSettings, 'allow_insecure'))
array_push($config, 'skip-cert-verify=' . ($tlsSettings['allow_insecure'] ? 'true' : 'false'));
if (data_get($tlsSettings, 'server_name'))
array_push($config, "sni={$tlsSettings['server_name']}");
2023-11-17 14:44:01 +08:00
}
}
if (data_get($protocol_settings, 'network') === 'ws') {
2023-11-17 14:44:01 +08:00
array_push($config, 'ws=true');
2025-01-21 14:57:54 +08:00
if (data_get($protocol_settings, 'network_settings')) {
$wsSettings = data_get($protocol_settings, 'network_settings');
if (data_get($wsSettings, 'path'))
2023-11-17 14:44:01 +08:00
array_push($config, "ws-path={$wsSettings['path']}");
2025-01-21 14:57:54 +08:00
if (data_get($wsSettings, 'headers.Host'))
2023-11-17 14:44:01 +08:00
array_push($config, "ws-headers=Host:{$wsSettings['headers']['Host']}");
}
}
$uri = implode(',', $config);
$uri .= "\r\n";
return $uri;
}
public static function buildTrojan($password, $server)
{
2025-01-21 14:57:54 +08:00
$protocol_settings = $server['protocol_settings'];
2023-11-17 14:44:01 +08:00
$config = [
"{$server['name']}=trojan",
"{$server['host']}",
"{$server['port']}",
"password={$password}",
2025-01-21 14:57:54 +08:00
$protocol_settings['server_name'] ? "sni={$protocol_settings['server_name']}" : "",
2023-11-17 14:44:01 +08:00
'tfo=true',
'udp-relay=true'
];
2025-01-21 14:57:54 +08:00
if (!empty($protocol_settings['allow_insecure'])) {
array_push($config, !!data_get($protocol_settings, 'allow_insecure') ? 'skip-cert-verify=true' : 'skip-cert-verify=false');
2023-11-17 14:44:01 +08:00
}
$config = array_filter($config);
$uri = implode(',', $config);
$uri .= "\r\n";
return $uri;
}
//参考文档: https://manual.nssurge.com/policy/proxy.html
public static function buildHysteria($password, $server)
{
2025-01-21 14:57:54 +08:00
$protocol_settings = $server['protocol_settings'];
if ($protocol_settings['version'] != 2)
return '';
$config = [
"{$server['name']}=hysteria2",
"{$server['host']}",
"{$server['port']}",
"password={$password}",
2025-01-21 14:57:54 +08:00
"download-bandwidth={$protocol_settings['bandwidth']['up']}",
$protocol_settings['tls']['server_name'] ? "sni={$protocol_settings['tls']['server_name']}" : "",
// 'tfo=true',
'udp-relay=true'
];
2025-01-21 14:57:54 +08:00
if (data_get($protocol_settings, 'tls.allow_insecure')) {
$config[] = !!data_get($protocol_settings, 'tls.allow_insecure') ? 'skip-cert-verify=true' : 'skip-cert-verify=false';
2025-01-21 14:57:54 +08:00
}
$config = array_filter($config);
$uri = implode(',', $config);
$uri .= "\r\n";
return $uri;
}
2023-11-17 14:44:01 +08:00
}