Files
expose/app/Commands/ShareCommand.php
Marcel Pociot 19606a78af wip
2021-06-17 13:17:32 +02:00

51 lines
1.4 KiB
PHP

<?php
namespace App\Commands;
use App\Client\Factory;
use React\EventLoop\LoopInterface;
class ShareCommand extends ServerAwareCommand
{
protected $signature = 'share {host} {--subdomain=} {--auth=} {--dns=} {--domain=}';
protected $description = 'Share a local url with a remote expose server';
public function handle()
{
$auth = $this->option('auth') ?? config('expose.auth_token', '');
if (strstr($this->argument('host'), 'host.docker.internal')) {
config(['expose.dns' => true]);
}
if ($this->option('dns') !== null) {
config(['expose.dns' => empty($this->option('dns')) ? true : $this->option('dns')]);
}
$domain = config('expose.default_domain');
if (! is_null($this->option('server'))) {
$domain = null;
}
if (! is_null($this->option('domain'))) {
$domain = $this->option('domain');
}
(new Factory())
->setLoop(app(LoopInterface::class))
->setHost($this->getServerHost())
->setPort($this->getServerPort())
->setAuth($auth)
->createClient()
->share(
$this->argument('host'),
explode(',', $this->option('subdomain')),
$domain
)
->createHttpServer()
->run();
}
}