ServerService.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?php
  2. namespace App\Services;
  3. use App\Models\User;
  4. use App\Models\Server;
  5. class ServerService
  6. {
  7. CONST SERVER_CONFIG = '{"api":{"services":["HandlerService","StatsService"],"tag":"api"},"dns":{},"stats":{},"inbound":{"port":443,"protocol":"vmess","settings":{"clients":[]},"sniffing":{"enabled":true,"destOverride":["http","tls"]},"streamSettings":{"network":"tcp"},"tag":"proxy"},"inboundDetour":[{"listen":"0.0.0.0","port":23333,"protocol":"dokodemo-door","settings":{"address":"0.0.0.0"},"tag":"api"}],"log":{"loglevel":"debug","access":"access.log","error":"error.log"},"outbound":{"protocol":"freedom","settings":{}},"outboundDetour":[{"protocol":"blackhole","settings":{},"tag":"block"}],"routing":{"rules":[{"inboundTag":"api","outboundTag":"api","type":"field"}]},"policy":{"levels":{"0":{"handshake":4,"connIdle":300,"uplinkOnly":5,"downlinkOnly":30,"statsUserUplink":true,"statsUserDownlink":true}}}}';
  8. public function getAvailableUsers($groupId)
  9. {
  10. return User::whereIn('group_id', $groupId)
  11. ->whereRaw('u + d < transfer_enable')
  12. ->where(function ($query) {
  13. $query->where('expired_at', '>=', time())
  14. ->orWhere('expired_at', NULL);
  15. })
  16. ->where('banned', 0)
  17. ->select([
  18. 'id',
  19. 'email',
  20. 't',
  21. 'u',
  22. 'd',
  23. 'transfer_enable',
  24. 'v2ray_uuid',
  25. 'v2ray_alter_id',
  26. 'v2ray_level'
  27. ])
  28. ->get();
  29. }
  30. public function getConfig(int $nodeId, int $localPort)
  31. {
  32. $server = Server::find($nodeId);
  33. if (!$server) {
  34. abort(500, '节点不存在');
  35. }
  36. $json = json_decode(self::SERVER_CONFIG);
  37. $json->inboundDetour[0]->port = (int)$localPort;
  38. $json->inbound->port = (int)$server->server_port;
  39. $json->inbound->streamSettings->network = $server->network;
  40. $this->setDns($server, $json);
  41. $this->setNetwork($server, $json);
  42. $this->setRule($server, $json);
  43. $this->setTls($server, $json);
  44. return $json;
  45. }
  46. private function setDns(Server $server, object $json)
  47. {
  48. if ($server->dnsSettings) {
  49. $dns = json_decode($server->dnsSettings);
  50. $json->dns = $dns;
  51. $json->outbound->settings->domainStrategy = 'UseIP';
  52. }
  53. }
  54. private function setNetwork(Server $server, object $json)
  55. {
  56. if ($server->networkSettings) {
  57. switch ($server->network) {
  58. case 'tcp':
  59. $json->inbound->streamSettings->tcpSettings = json_decode($server->networkSettings);
  60. break;
  61. case 'kcp':
  62. $json->inbound->streamSettings->kcpSettings = json_decode($server->networkSettings);
  63. break;
  64. case 'ws':
  65. $json->inbound->streamSettings->wsSettings = json_decode($server->networkSettings);
  66. break;
  67. case 'http':
  68. $json->inbound->streamSettings->httpSettings = json_decode($server->networkSettings);
  69. break;
  70. case 'domainsocket':
  71. $json->inbound->streamSettings->dsSettings = json_decode($server->networkSettings);
  72. break;
  73. case 'quic':
  74. $json->inbound->streamSettings->quicSettings = json_decode($server->networkSettings);
  75. break;
  76. }
  77. }
  78. }
  79. private function setRule(Server $server, object $json)
  80. {
  81. if ($server->ruleSettings) {
  82. $rules = json_decode($server->ruleSettings);
  83. // domain
  84. if (isset($rules->domain) && !empty($rules->domain)) {
  85. $domainObj = new \StdClass();
  86. $domainObj->type = 'field';
  87. $domainObj->domain = $rules->domain;
  88. $domainObj->outboundTag = 'block';
  89. array_push($json->routing->rules, $domainObj);
  90. }
  91. // protocol
  92. if (isset($rules->protocol) && !empty($rules->protocol)) {
  93. $protocolObj = new \StdClass();
  94. $protocolObj->type = 'field';
  95. $protocolObj->protocol = $rules->protocol;
  96. $protocolObj->outboundTag = 'block';
  97. array_push($json->routing->rules, $protocolObj);
  98. }
  99. }
  100. }
  101. private function setTls(Server $server, object $json)
  102. {
  103. if ((int)$server->tls) {
  104. $tlsSettings = json_decode($server->tlsSettings);
  105. $json->inbound->streamSettings->security = 'tls';
  106. $tls = (object)[
  107. 'certificateFile' => '/home/v2ray.crt',
  108. 'keyFile' => '/home/v2ray.key'
  109. ];
  110. $json->inbound->streamSettings->tlsSettings = new \StdClass();
  111. if (isset($tlsSettings->serverName)) {
  112. $json->inbound->streamSettings->tlsSettings->serverName = (string)$tlsSettings->serverName;
  113. }
  114. if (isset($tlsSettings->allowInsecure)) {
  115. $json->inbound->streamSettings->tlsSettings->allowInsecure = (int)$tlsSettings->allowInsecure ? true : false;
  116. }
  117. $json->inbound->streamSettings->tlsSettings->certificates[0] = $tls;
  118. }
  119. }
  120. }