ServerService.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. <?php
  2. namespace App\Services;
  3. use App\Models\ServerLog;
  4. use App\Models\ServerShadowsocks;
  5. use App\Models\User;
  6. use App\Models\Server;
  7. use App\Models\ServerTrojan;
  8. use App\Utils\CacheKey;
  9. use App\Utils\Helper;
  10. use App\Utils\URLSchemes;
  11. use Illuminate\Support\Facades\Cache;
  12. class ServerService
  13. {
  14. CONST V2RAY_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}}}}';
  15. CONST TROJAN_CONFIG = '{"run_type":"server","local_addr":"0.0.0.0","local_port":443,"remote_addr":"www.taobao.com","remote_port":80,"password":[],"ssl":{"cert":"server.crt","key":"server.key","sni":"domain.com"},"api":{"enabled":true,"api_addr":"127.0.0.1","api_port":10000}}';
  16. public function getV2ray(User $user, $all = false):array
  17. {
  18. $model = Server::orderBy('sort', 'ASC');
  19. if (!$all) {
  20. $model->where('show', 1);
  21. }
  22. $vmess = $model->get();
  23. for ($i = 0; $i < count($vmess); $i++) {
  24. $vmess[$i]['type'] = 'v2ray';
  25. $groupId = json_decode($vmess[$i]['group_id']);
  26. if (in_array($user->group_id, $groupId)) {
  27. $vmess[$i]['link'] = URLSchemes::buildVmess($vmess[$i], $user);
  28. if ($vmess[$i]['parent_id']) {
  29. $vmess[$i]['last_check_at'] = Cache::get(CacheKey::get('SERVER_V2RAY_LAST_CHECK_AT', $vmess[$i]['parent_id']));
  30. } else {
  31. $vmess[$i]['last_check_at'] = Cache::get(CacheKey::get('SERVER_V2RAY_LAST_CHECK_AT', $vmess[$i]['id']));
  32. }
  33. }
  34. }
  35. return $vmess->toArray();
  36. }
  37. public function getTrojan(User $user, $all = false):array
  38. {
  39. $model = ServerTrojan::orderBy('sort', 'ASC');
  40. if (!$all) {
  41. $model->where('show', 1);
  42. }
  43. $trojan = $model->get();
  44. for ($i = 0; $i < count($trojan); $i++) {
  45. $trojan[$i]['type'] = 'trojan';
  46. $groupId = json_decode($trojan[$i]['group_id']);
  47. $trojan[$i]['link'] = URLSchemes::buildTrojan($trojan[$i], $user);
  48. if (in_array($user->group_id, $groupId)) {
  49. if ($trojan[$i]['parent_id']) {
  50. $trojan[$i]['last_check_at'] = Cache::get(CacheKey::get('SERVER_TROJAN_LAST_CHECK_AT', $trojan[$i]['parent_id']));
  51. } else {
  52. $trojan[$i]['last_check_at'] = Cache::get(CacheKey::get('SERVER_TROJAN_LAST_CHECK_AT', $trojan[$i]['id']));
  53. }
  54. }
  55. }
  56. return $trojan->toArray();
  57. }
  58. public function getShadowsocks(User $user, $all = false)
  59. {
  60. $model = ServerShadowsocks::orderBy('sort', 'ASC');
  61. if (!$all) {
  62. $model->where('show', 1);
  63. }
  64. $shadowsocks = $model->get();
  65. for ($i = 0; $i < count($shadowsocks); $i++) {
  66. $shadowsocks[$i]['type'] = 'shadowsocks';
  67. $groupId = json_decode($shadowsocks[$i]['group_id']);
  68. $shadowsocks[$i]['link'] = URLSchemes::buildShadowsocks($shadowsocks[$i], $user);
  69. if (in_array($user->group_id, $groupId)) {
  70. if ($shadowsocks[$i]['parent_id']) {
  71. $shadowsocks[$i]['last_check_at'] = Cache::get(CacheKey::get('SERVER_SHADOWSOCKS_LAST_CHECK_AT', $shadowsocks[$i]['parent_id']));
  72. } else {
  73. $shadowsocks[$i]['last_check_at'] = Cache::get(CacheKey::get('SERVER_SHADOWSOCKS_LAST_CHECK_AT', $shadowsocks[$i]['id']));
  74. }
  75. }
  76. }
  77. return $shadowsocks->toArray();
  78. }
  79. public function getAvailableServers(User $user, $all = false)
  80. {
  81. $servers = array_merge(
  82. $this->getShadowsocks($user, $all),
  83. $this->getV2ray($user, $all),
  84. $this->getTrojan($user, $all)
  85. );
  86. $tmp = array_column($servers, 'sort');
  87. array_multisort($tmp, SORT_ASC, $servers);
  88. return $servers;
  89. }
  90. public function getAvailableUsers($groupId)
  91. {
  92. return User::whereIn('group_id', $groupId)
  93. ->whereRaw('u + d < transfer_enable')
  94. ->where(function ($query) {
  95. $query->where('expired_at', '>=', time())
  96. ->orWhere('expired_at', NULL);
  97. })
  98. ->where('banned', 0)
  99. ->select([
  100. 'id',
  101. 'email',
  102. 't',
  103. 'u',
  104. 'd',
  105. 'transfer_enable',
  106. 'uuid',
  107. 'v2ray_alter_id',
  108. 'v2ray_level'
  109. ])
  110. ->get();
  111. }
  112. public function getVmessConfig(int $nodeId, int $localPort)
  113. {
  114. $server = Server::find($nodeId);
  115. if (!$server) {
  116. abort(500, '节点不存在');
  117. }
  118. $json = json_decode(self::V2RAY_CONFIG);
  119. $json->log->loglevel = config('v2board.server_log_level', 'none');
  120. $json->inboundDetour[0]->port = (int)$localPort;
  121. $json->inbound->port = (int)$server->server_port;
  122. $json->inbound->streamSettings->network = $server->network;
  123. $this->setDns($server, $json);
  124. $this->setNetwork($server, $json);
  125. $this->setRule($server, $json);
  126. $this->setTls($server, $json);
  127. return $json;
  128. }
  129. public function getTrojanConfig(int $nodeId, int $localPort)
  130. {
  131. $server = ServerTrojan::find($nodeId);
  132. if (!$server) {
  133. abort(500, '节点不存在');
  134. }
  135. $json = json_decode(self::TROJAN_CONFIG);
  136. $json->local_port = $server->server_port;
  137. $json->ssl->sni = $server->server_name ? $server->server_name : $server->host;
  138. $json->ssl->cert = "/root/.cert/server.crt";
  139. $json->ssl->key = "/root/.cert/server.key";
  140. $json->api->api_port = $localPort;
  141. return $json;
  142. }
  143. private function setDns(Server $server, object $json)
  144. {
  145. if ($server->dnsSettings) {
  146. $dns = json_decode($server->dnsSettings);
  147. if (isset($dns->servers)) {
  148. array_push($dns->servers, '1.1.1.1');
  149. array_push($dns->servers, 'localhost');
  150. }
  151. $json->dns = $dns;
  152. $json->outbound->settings->domainStrategy = 'UseIP';
  153. }
  154. }
  155. private function setNetwork(Server $server, object $json)
  156. {
  157. if ($server->networkSettings) {
  158. switch ($server->network) {
  159. case 'tcp':
  160. $json->inbound->streamSettings->tcpSettings = json_decode($server->networkSettings);
  161. break;
  162. case 'kcp':
  163. $json->inbound->streamSettings->kcpSettings = json_decode($server->networkSettings);
  164. break;
  165. case 'ws':
  166. $json->inbound->streamSettings->wsSettings = json_decode($server->networkSettings);
  167. break;
  168. case 'http':
  169. $json->inbound->streamSettings->httpSettings = json_decode($server->networkSettings);
  170. break;
  171. case 'domainsocket':
  172. $json->inbound->streamSettings->dsSettings = json_decode($server->networkSettings);
  173. break;
  174. case 'quic':
  175. $json->inbound->streamSettings->quicSettings = json_decode($server->networkSettings);
  176. break;
  177. }
  178. }
  179. }
  180. private function setRule(Server $server, object $json)
  181. {
  182. $domainRules = array_filter(explode(PHP_EOL, config('v2board.server_v2ray_domain')));
  183. $protocolRules = array_filter(explode(PHP_EOL, config('v2board.server_v2ray_protocol')));
  184. if ($server->ruleSettings) {
  185. $ruleSettings = json_decode($server->ruleSettings);
  186. // domain
  187. if (isset($ruleSettings->domain)) {
  188. $ruleSettings->domain = array_filter($ruleSettings->domain);
  189. if (!empty($ruleSettings->domain)) {
  190. $domainRules = array_merge($domainRules, $ruleSettings->domain);
  191. }
  192. }
  193. // protocol
  194. if (isset($ruleSettings->protocol)) {
  195. $ruleSettings->protocol = array_filter($ruleSettings->protocol);
  196. if (!empty($ruleSettings->protocol)) {
  197. $protocolRules = array_merge($protocolRules, $ruleSettings->protocol);
  198. }
  199. }
  200. }
  201. if (!empty($domainRules)) {
  202. $domainObj = new \StdClass();
  203. $domainObj->type = 'field';
  204. $domainObj->domain = $domainRules;
  205. $domainObj->outboundTag = 'block';
  206. array_push($json->routing->rules, $domainObj);
  207. }
  208. if (!empty($protocolRules)) {
  209. $protocolObj = new \StdClass();
  210. $protocolObj->type = 'field';
  211. $protocolObj->protocol = $protocolRules;
  212. $protocolObj->outboundTag = 'block';
  213. array_push($json->routing->rules, $protocolObj);
  214. }
  215. if (empty($domainRules) && empty($protocolRules)) {
  216. $json->inbound->sniffing->enabled = false;
  217. }
  218. }
  219. private function setTls(Server $server, object $json)
  220. {
  221. if ((int)$server->tls) {
  222. $tlsSettings = json_decode($server->tlsSettings);
  223. $json->inbound->streamSettings->security = 'tls';
  224. $tls = (object)[
  225. 'certificateFile' => '/root/.cert/server.crt',
  226. 'keyFile' => '/root/.cert/server.key'
  227. ];
  228. $json->inbound->streamSettings->tlsSettings = new \StdClass();
  229. if (isset($tlsSettings->serverName)) {
  230. $json->inbound->streamSettings->tlsSettings->serverName = (string)$tlsSettings->serverName;
  231. }
  232. if (isset($tlsSettings->allowInsecure)) {
  233. $json->inbound->streamSettings->tlsSettings->allowInsecure = (int)$tlsSettings->allowInsecure ? true : false;
  234. }
  235. $json->inbound->streamSettings->tlsSettings->certificates[0] = $tls;
  236. }
  237. }
  238. public function log(int $userId, int $serverId, int $u, int $d, float $rate, string $method)
  239. {
  240. if (($u + $d) <= 10240) return;
  241. $timestamp = strtotime(date('Y-m-d H:0'));
  242. $serverLog = ServerLog::where('log_at', '>=', $timestamp)
  243. ->where('log_at', '<', $timestamp + 3600)
  244. ->where('server_id', $serverId)
  245. ->where('user_id', $userId)
  246. ->where('rate', $rate)
  247. ->where('method', $method)
  248. ->lockForUpdate()
  249. ->first();
  250. if ($serverLog) {
  251. $serverLog->u = $serverLog->u + $u;
  252. $serverLog->d = $serverLog->d + $d;
  253. $serverLog->save();
  254. } else {
  255. $serverLog = new ServerLog();
  256. $serverLog->user_id = $userId;
  257. $serverLog->server_id = $serverId;
  258. $serverLog->u = $u;
  259. $serverLog->d = $d;
  260. $serverLog->rate = $rate;
  261. $serverLog->log_at = $timestamp;
  262. $serverLog->method = $method;
  263. $serverLog->save();
  264. }
  265. }
  266. public function getShadowsocksServers()
  267. {
  268. $server = ServerShadowsocks::orderBy('sort', 'ASC')->get();
  269. for ($i = 0; $i < count($server); $i++) {
  270. $server[$i]['type'] = 'shadowsocks';
  271. if (!empty($server[$i]['tags'])) {
  272. $server[$i]['tags'] = json_decode($server[$i]['tags']);
  273. }
  274. $server[$i]['group_id'] = json_decode($server[$i]['group_id']);
  275. $server[$i]['online'] = Cache::get(CacheKey::get('SERVER_SHADOWSOCKS_ONLINE_USER', $server[$i]['parent_id'] ? $server[$i]['parent_id'] : $server[$i]['id']));
  276. if ($server[$i]['parent_id']) {
  277. $server[$i]['last_check_at'] = Cache::get(CacheKey::get('SERVER_SHADOWSOCKS_LAST_CHECK_AT', $server[$i]['parent_id']));
  278. } else {
  279. $server[$i]['last_check_at'] = Cache::get(CacheKey::get('SERVER_SHADOWSOCKS_LAST_CHECK_AT', $server[$i]['id']));
  280. }
  281. }
  282. return $server->toArray();
  283. }
  284. public function getV2rayServers()
  285. {
  286. $server = Server::orderBy('sort', 'ASC')->get();
  287. for ($i = 0; $i < count($server); $i++) {
  288. $server[$i]['type'] = 'v2ray';
  289. if (!empty($server[$i]['tags'])) {
  290. $server[$i]['tags'] = json_decode($server[$i]['tags']);
  291. }
  292. if (!empty($server[$i]['dnsSettings'])) {
  293. $server[$i]['dnsSettings'] = json_decode($server[$i]['dnsSettings']);
  294. }
  295. if (!empty($server[$i]['tlsSettings'])) {
  296. $server[$i]['tlsSettings'] = json_decode($server[$i]['tlsSettings']);
  297. }
  298. if (!empty($server[$i]['ruleSettings'])) {
  299. $server[$i]['ruleSettings'] = json_decode($server[$i]['ruleSettings']);
  300. }
  301. $server[$i]['group_id'] = json_decode($server[$i]['group_id']);
  302. $server[$i]['online'] = Cache::get(CacheKey::get('SERVER_V2RAY_ONLINE_USER', $server[$i]['parent_id'] ? $server[$i]['parent_id'] : $server[$i]['id']));
  303. if ($server[$i]['parent_id']) {
  304. $server[$i]['last_check_at'] = Cache::get(CacheKey::get('SERVER_V2RAY_LAST_CHECK_AT', $server[$i]['parent_id']));
  305. } else {
  306. $server[$i]['last_check_at'] = Cache::get(CacheKey::get('SERVER_V2RAY_LAST_CHECK_AT', $server[$i]['id']));
  307. }
  308. }
  309. return $server->toArray();
  310. }
  311. public function getTrojanServers()
  312. {
  313. $server = ServerTrojan::orderBy('sort', 'ASC')->get();
  314. for ($i = 0; $i < count($server); $i++) {
  315. $server[$i]['type'] = 'trojan';
  316. if (!empty($server[$i]['tags'])) {
  317. $server[$i]['tags'] = json_decode($server[$i]['tags']);
  318. }
  319. $server[$i]['group_id'] = json_decode($server[$i]['group_id']);
  320. $server[$i]['online'] = Cache::get(CacheKey::get('SERVER_TROJAN_ONLINE_USER', $server[$i]['parent_id'] ? $server[$i]['parent_id'] : $server[$i]['id']));
  321. if ($server[$i]['parent_id']) {
  322. $server[$i]['last_check_at'] = Cache::get(CacheKey::get('SERVER_TROJAN_LAST_CHECK_AT', $server[$i]['parent_id']));
  323. } else {
  324. $server[$i]['last_check_at'] = Cache::get(CacheKey::get('SERVER_TROJAN_LAST_CHECK_AT', $server[$i]['id']));
  325. }
  326. }
  327. return $server->toArray();
  328. }
  329. }