loop = LoopFactory::create(); $this->router = new RouteGenerator(); } public function setHost(string $host) { $this->host = $host; return $this; } public function setPort(int $port) { $this->port = $port; return $this; } public function setAuth(?string $auth) { $this->auth = $auth; return $this; } public function setLoop(LoopInterface $loop) { $this->loop = $loop; return $this; } protected function bindConfiguration() { app()->singleton(Configuration::class, function ($app) { return new Configuration($this->host, $this->port, $this->auth); }); } protected function bindProxyManager() { app()->bind(ProxyManager::class, function ($app) { return new ProxyManager($app->make(Configuration::class), $this->loop); }); } public function createClient($sharedUrl, $subdomain = null, $auth = null) { $this->bindConfiguration(); $this->bindProxyManager(); app(Client::class)->share($sharedUrl, $subdomain); return $this; } protected function addRoutes() { $this->router->get('/', DashboardController::class); $this->router->get('/logs', LogController::class); $this->router->post('/logs', PushLogsToDashboardController::class); $this->router->get('/replay/{log}', ReplayLogController::class); $this->router->post('/logs/{request_id}/data', AttachDataToLogController::class); $this->router->get('/logs/clear', ClearLogsController::class); $this->app->route('/socket', new WsServer(new Socket()), ['*']); foreach ($this->router->getRoutes()->all() as $name => $route) { $this->app->routes->add($name, $route); } } protected function detectNextFreeDashboardPort($port = 4040): int { while (is_resource(@fsockopen('127.0.0.1', $port))) { $port++; } return $port; } public function createHttpServer() { $dashboardPort = $this->detectNextFreeDashboardPort(); $this->loop->futureTick(function () use ($dashboardPort) { $dashboardUrl = "http://127.0.0.1:{$dashboardPort}/"; echo("Started Dashboard on port {$dashboardPort}" . PHP_EOL); echo('If the dashboard does not automatically open, visit: ' . $dashboardUrl . PHP_EOL); }); $this->app = new App('127.0.0.1', $dashboardPort, '0.0.0.0', $this->loop); $this->addRoutes(); return $this; } public function getApp(): App { return $this->app; } public function run() { $this->loop->run(); } }