v2board/app/Utils/Shadowrocket.php

78 lines
2.9 KiB
PHP
Raw Normal View History

<?php
namespace App\Utils;
class Shadowrocket
{
public static function buildShadowsocks($password, $server)
{
2020-11-15 17:10:32 +08:00
$name = rawurlencode($server['name']);
$str = str_replace(
['+', '/', '='],
['-', '_', ''],
2020-11-15 17:10:32 +08:00
base64_encode("{$server['cipher']}:{$password}")
);
2020-11-15 17:10:32 +08:00
return "ss://{$str}@{$server['host']}:{$server['port']}#{$name}\r\n";
}
public static function buildVmess($uuid, $server)
{
2020-11-15 17:10:32 +08:00
$userinfo = base64_encode('auto:' . $uuid . '@' . $server['host'] . ':' . $server['port']);
$config = [
2020-11-20 00:26:39 +08:00
'tfo' => 1,
2020-11-17 23:02:12 +08:00
'remark' => $server['name'],
'alterId' => $server['alter_id']
];
2020-11-15 17:10:32 +08:00
if ($server['tls']) {
$config['tls'] = 1;
2020-11-20 00:26:39 +08:00
if ($server['tlsSettings']) {
$tlsSettings = json_decode($server['tlsSettings'], true);
if (isset($tlsSettings['allowInsecure']) && !empty($tlsSettings['allowInsecure']))
$config['allowInsecure'] = (int)$tlsSettings['allowInsecure'];
if (isset($tlsSettings['serverName']) && !empty($tlsSettings['serverName']))
$config['peer'] = $tlsSettings['serverName'];
}
}
2020-11-15 17:10:32 +08:00
if ($server['network'] === 'ws') {
$config['obfs'] = "websocket";
2020-11-20 00:26:39 +08:00
if ($server['networkSettings']) {
$wsSettings = json_decode($server['networkSettings'], true);
if (isset($wsSettings['path']) && !empty($wsSettings['path']))
$config['path'] = $wsSettings['path'];
if (isset($wsSettings['headers']['Host']) && !empty($wsSettings['headers']['Host']))
$config['obfsParam'] = $wsSettings['headers']['Host'];
}
}
if ($server['network'] === 'grpc') {
$config['obfs'] = "grpc";
2021-07-02 21:07:54 +08:00
if ($server['networkSettings']) {
2021-07-02 20:57:00 +08:00
$grpcSettings = json_decode($server['networkSettings'], true);
if (isset($grpcSettings['serviceName']) && !empty($grpcSettings['serviceName']))
$config['path'] = $grpcSettings['serviceName'];
2021-07-02 21:05:12 +08:00
}
if (isset($tlsSettings)) {
$config['host'] = $tlsSettings['serverName'];
} else {
$config['host'] = $server['host'];
}
}
2020-11-20 00:26:39 +08:00
$query = http_build_query($config, '', '&', PHP_QUERY_RFC3986);
$uri = "vmess://{$userinfo}?{$query}";
$uri .= "\r\n";
return $uri;
}
public static function buildTrojan($password, $server)
{
2020-11-15 17:10:32 +08:00
$name = rawurlencode($server['name']);
$query = http_build_query([
2020-11-15 17:10:32 +08:00
'allowInsecure' => $server['allow_insecure'],
'peer' => $server['server_name']
]);
2020-11-15 17:10:32 +08:00
$uri = "trojan://{$password}@{$server['host']}:{$server['port']}?{$query}&tfo=1#{$name}";
$uri .= "\r\n";
return $uri;
}
}