input('token'); if (empty($token)) { abort(500, 'token is null'); } if ($token !== config('v2board.server_token')) { abort(500, 'token is error'); } } // 后端获取用户 public function user(Request $request) { $nodeId = $request->input('node_id'); $server = ServerShadowsocks::find($nodeId); if (!$server) { abort(500, 'fail'); } Cache::put(CacheKey::get('SERVER_SHADOWSOCKS_LAST_CHECK_AT', $server->id), time(), 3600); $serverService = new ServerService(); $users = $serverService->getAvailableUsers(json_decode($server->group_id)); $result = []; foreach ($users as $user) { array_push($result, [ 'id' => $user->id, 'port' => $server->server_port, 'cipher' => $server->cipher, 'secret' => $user->uuid ]); } return response([ 'data' => $result ]); } // 后端提交数据 public function submit(Request $request) { // Log::info('serverSubmitData:' . $request->input('node_id') . ':' . file_get_contents('php://input')); $server = ServerShadowsocks::find($request->input('node_id')); if (!$server) { return response([ 'ret' => 0, 'msg' => 'server is not found' ]); } $data = file_get_contents('php://input'); $data = json_decode($data, true); Cache::put(CacheKey::get('SERVER_SHADOWSOCKS_ONLINE_USER', $server->id), count($data), 3600); $serverService = new ServerService(); $userService = new UserService(); DB::beginTransaction(); foreach ($data as $item) { $u = $item['u'] * $server->rate; $d = $item['d'] * $server->rate; if (!$userService->trafficFetch((float)$u, (float)$d, (int)$item['user_id'])) { DB::rollBack(); return response([ 'ret' => 0, 'msg' => 'user fetch fail' ]); } $serverService->log( $item['user_id'], $request->input('node_id'), $item['u'], $item['d'], $server->rate, 'trojan' ); } DB::commit(); return response([ 'ret' => 1, 'msg' => 'ok' ]); } // 后端获取配置 public function config(Request $request) { $nodeId = $request->input('node_id'); $localPort = $request->input('local_port'); if (empty($nodeId) || empty($localPort)) { abort(500, '参数错误'); } $serverService = new ServerService(); try { $json = $serverService->getTrojanConfig($nodeId, $localPort); } catch (\Exception $e) { abort(500, $e->getMessage()); } die(json_encode($json, JSON_UNESCAPED_UNICODE)); } }