123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <?php
- namespace App\Http\Controllers\Server;
- use App\Services\ServerService;
- use Illuminate\Http\Request;
- use App\Http\Controllers\Controller;
- use App\Models\User;
- use App\Models\Plan;
- use App\Models\Server;
- use App\Models\ServerLog;
- use Illuminate\Support\Facades\Log;
- use Illuminate\Support\Facades\Cache;
- class PoseidonController extends Controller
- {
- CONST SERVER_CONFIG = '{"api":{"services":["HandlerService","StatsService"],"tag":"api"},"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}}}}';
- // 后端获取用户
- public function user(Request $request)
- {
- if ($r = $this->verifyToken($request)) { return $r; }
- $nodeId = $request->input('node_id');
- $server = Server::find($nodeId);
- if (!$server) {
- return $this->error("server could not be found", 404);
- }
- Cache::put('server_last_check_at_' . $server->id, time());
- $serverService = new ServerService();
- $users = $serverService->getAvailableUsers(json_decode($server->group_id));
- $result = [];
- foreach ($users as $user) {
- $user->v2ray_user = [
- "uuid" => $user->v2ray_uuid,
- "email" => sprintf("%s@v2board.user", $user->v2ray_uuid),
- "alter_id" => $user->v2ray_alter_id,
- "level" => $user->v2ray_level,
- ];
- unset($user['v2ray_uuid']);
- unset($user['v2ray_alter_id']);
- unset($user['v2ray_level']);
- array_push($result, $user);
- }
- return $this->success($result);
- }
- // 后端提交数据
- public function submit(Request $request)
- {
- if ($r = $this->verifyToken($request)) { return $r; }
- // Log::info('serverSubmitData:' . $request->input('node_id') . ':' . file_get_contents('php://input'));
- $server = Server::find($request->input('node_id'));
- if (!$server) {
- return $this->error("server could not be found", 404);
- }
- $data = file_get_contents('php://input');
- $data = json_decode($data, true);
- foreach ($data as $item) {
- $u = $item['u'] * $server->rate;
- $d = $item['d'] * $server->rate;
- $user = User::find($item['user_id']);
- $user->t = time();
- $user->u = $user->u + $u;
- $user->d = $user->d + $d;
- $user->save();
- $serverLog = new ServerLog();
- $serverLog->user_id = $item['user_id'];
- $serverLog->server_id = $request->input('node_id');
- $serverLog->u = $item['u'];
- $serverLog->d = $item['d'];
- $serverLog->rate = $server->rate;
- $serverLog->save();
- }
- return $this->success('');
- }
- // 后端获取配置
- public function config(Request $request)
- {
- if ($r = $this->verifyToken($request)) { return $r; }
- $nodeId = $request->input('node_id');
- $localPort = $request->input('local_port');
- if (empty($nodeId) || empty($localPort)) {
- return $this->error('invalid parameters', 400);
- }
- $server = Server::find($nodeId);
- if (!$server) {
- return $this->error("server could not be found", 404);
- }
- $json = json_decode(self::SERVER_CONFIG);
- $json->inboundDetour[0]->port = (int)$localPort;
- $json->inbound->port = (int)$server->server_port;
- $json->inbound->streamSettings->network = $server->network;
- if ($server->settings) {
- switch ($server->network) {
- case 'tcp':
- $json->inbound->streamSettings->tcpSettings = json_decode($server->settings);
- break;
- case 'kcp':
- $json->inbound->streamSettings->kcpSettings = json_decode($server->settings);
- break;
- case 'ws':
- $json->inbound->streamSettings->wsSettings = json_decode($server->settings);
- break;
- case 'http':
- $json->inbound->streamSettings->httpSettings = json_decode($server->settings);
- break;
- case 'domainsocket':
- $json->inbound->streamSettings->dsSettings = json_decode($server->settings);
- break;
- case 'quic':
- $json->inbound->streamSettings->quicSettings = json_decode($server->settings);
- break;
- }
- }
- if ($server->rules) {
- $rules = json_decode($server->rules);
- // domain
- if (isset($rules->domain) && !empty($rules->domain)) {
- $domainObj = new \StdClass();
- $domainObj->type = 'field';
- $domainObj->domain = $rules->domain;
- $domainObj->outboundTag = 'block';
- array_push($json->routing->rules, $domainObj);
- }
- // protocol
- if (isset($rules->protocol) && !empty($rules->protocol)) {
- $protocolObj = new \StdClass();
- $protocolObj->type = 'field';
- $protocolObj->protocol = $rules->protocol;
- $protocolObj->outboundTag = 'block';
- array_push($json->routing->rules, $protocolObj);
- }
- }
- if ((int)$server->tls) {
- $json->inbound->streamSettings->security = 'tls';
- $tls = (object)[
- 'certificateFile' => '/home/v2ray.crt',
- 'keyFile' => '/home/v2ray.key'
- ];
- $json->inbound->streamSettings->tlsSettings = new \StdClass();
- $json->inbound->streamSettings->tlsSettings->certificates[0] = $tls;
- }
- $json->poseidon = [
- 'license_key' => (string)config('v2board.server_license'),
- ];
- return $this->success($json);
- }
- protected function verifyToken(Request $request)
- {
- $token = $request->input('token');
- if (empty($token)) {
- return $this->error("token must be set");
- }
- if ($token !== config('v2board.server_token')) {
- return $this->error("invalid token");
- }
- }
- protected function error($msg, int $status = 400) {
- return response([
- 'msg' => $msg,
- ], $status);
- }
- protected function success($data) {
- return response([
- 'msg' => 'ok',
- 'data' => $data,
- ]);
- }
- }
|