12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace App\Utils;
- class Clash
- {
- public static function buildVmess($uuid, $server)
- {
- $array = [];
- $array['name'] = $server->name;
- $array['type'] = 'vmess';
- $array['server'] = $server->host;
- $array['port'] = $server->port;
- $array['uuid'] = $uuid;
- $array['alterId'] = 2;
- $array['cipher'] = 'auto';
- if ($server->tls) {
- $tlsSettings = json_decode($server->tlsSettings);
- $array['tls'] = true;
- if (isset($tlsSettings->allowInsecure)) $array['skip-cert-verify'] = ($tlsSettings->allowInsecure ? true : false );
- }
- if ($server->network == 'ws') {
- $array['network'] = $server->network;
- if ($server->networkSettings) {
- $wsSettings = json_decode($server->networkSettings);
- if (isset($wsSettings->path)) $array['ws-path'] = $wsSettings->path;
- if (isset($wsSettings->headers->Host)) $array['ws-headers'] = [
- 'Host' => $wsSettings->headers->Host
- ];
- }
- }
- return $array;
- }
- public static function buildTrojan($password, $server)
- {
- $array = [];
- $array['name'] = $server->name;
- $array['type'] = 'trojan';
- $array['server'] = $server->host;
- $array['port'] = $server->port;
- $array['password'] = $password;
- return $array;
- }
- }
|