mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 13:35:54 +00:00
196 lines
4.6 KiB
PHP
196 lines
4.6 KiB
PHP
<?php
|
|
|
|
namespace App\Client;
|
|
|
|
use App\Client\Fileserver\Fileserver;
|
|
use App\Client\Http\Controllers\AttachDataToLogController;
|
|
use App\Client\Http\Controllers\ClearLogsController;
|
|
use App\Client\Http\Controllers\CreateTunnelController;
|
|
use App\Client\Http\Controllers\DashboardController;
|
|
use App\Client\Http\Controllers\LogController;
|
|
use App\Client\Http\Controllers\PushLogsToDashboardController;
|
|
use App\Client\Http\Controllers\ReplayLogController;
|
|
use App\Http\App;
|
|
use App\Http\RouteGenerator;
|
|
use App\WebSockets\Socket;
|
|
use Ratchet\WebSocket\WsServer;
|
|
use React\EventLoop\Factory as LoopFactory;
|
|
use React\EventLoop\LoopInterface;
|
|
|
|
class Factory
|
|
{
|
|
/** @var string */
|
|
protected $host = 'localhost';
|
|
|
|
/** @var int */
|
|
protected $port = 8080;
|
|
|
|
/** @var string */
|
|
protected $auth = '';
|
|
|
|
/** @var \React\EventLoop\LoopInterface */
|
|
protected $loop;
|
|
|
|
/** @var App */
|
|
protected $app;
|
|
|
|
/** @var Fileserver */
|
|
protected $fileserver;
|
|
|
|
/** @var RouteGenerator */
|
|
protected $router;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->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 bindClient()
|
|
{
|
|
app()->singleton('expose.client', function ($app) {
|
|
return $app->make(Client::class);
|
|
});
|
|
}
|
|
|
|
protected function bindProxyManager()
|
|
{
|
|
app()->bind(ProxyManager::class, function ($app) {
|
|
return new ProxyManager($app->make(Configuration::class), $this->loop);
|
|
});
|
|
}
|
|
|
|
public function createClient()
|
|
{
|
|
$this->bindClient();
|
|
|
|
$this->bindConfiguration();
|
|
|
|
$this->bindProxyManager();
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function share($sharedUrl, $subdomain = null)
|
|
{
|
|
app('expose.client')->share($sharedUrl, $subdomain);
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function sharePort(int $port)
|
|
{
|
|
app('expose.client')->sharePort($port);
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function shareFolder(string $folder, string $name, $subdomain = null)
|
|
{
|
|
$host = $this->createFileServer($folder, $name);
|
|
|
|
$this->share($host, $subdomain);
|
|
|
|
return $this;
|
|
}
|
|
|
|
protected function addRoutes()
|
|
{
|
|
$this->router->get('/', DashboardController::class);
|
|
|
|
$this->router->post('/api/tunnel', CreateTunnelController::class);
|
|
$this->router->get('/api/logs', LogController::class);
|
|
$this->router->post('/api/logs', PushLogsToDashboardController::class);
|
|
$this->router->get('/api/replay/{log}', ReplayLogController::class);
|
|
$this->router->post('/api/logs/{request_id}/data', AttachDataToLogController::class);
|
|
$this->router->get('/api/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 detectNextAvailablePort($startPort = 4040): int
|
|
{
|
|
while (is_resource(@fsockopen('127.0.0.1', $startPort))) {
|
|
$startPort++;
|
|
}
|
|
|
|
return $startPort;
|
|
}
|
|
|
|
public function createHttpServer()
|
|
{
|
|
$dashboardPort = $this->detectNextAvailablePort();
|
|
|
|
config()->set('expose.dashboard_port', $dashboardPort);
|
|
|
|
$this->app = new App('127.0.0.1', $dashboardPort, '0.0.0.0', $this->loop);
|
|
|
|
$this->addRoutes();
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function createFileServer(string $folder, string $name)
|
|
{
|
|
$port = $this->detectNextAvailablePort(8090);
|
|
|
|
$this->fileserver = new Fileserver($folder, $name, $port, '0.0.0.0', $this->loop);
|
|
|
|
return "127.0.0.1:{$port}";
|
|
}
|
|
|
|
public function getApp(): App
|
|
{
|
|
return $this->app;
|
|
}
|
|
|
|
public function getFileserver(): Fileserver
|
|
{
|
|
return $this->fileserver;
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
$this->loop->run();
|
|
}
|
|
}
|