ServerService.php 14 KB

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