mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 21:45:55 +00:00
37 lines
1.0 KiB
PHP
37 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Commands;
|
|
|
|
use App\Client\Factory;
|
|
use React\EventLoop\LoopInterface;
|
|
|
|
class ShareFilesCommand extends ServerAwareCommand
|
|
{
|
|
protected $signature = 'share-files {folder=.} {--name=} {--subdomain=} {--auth=}';
|
|
|
|
protected $description = 'Share a local folder with a remote expose server';
|
|
|
|
public function handle()
|
|
{
|
|
if (! is_dir($this->argument('folder'))) {
|
|
throw new \InvalidArgumentException('The folder '.$this->argument('folder').' does not exist.');
|
|
}
|
|
|
|
$auth = $this->option('auth') ?? config('expose.auth_token', '');
|
|
|
|
(new Factory())
|
|
->setLoop(app(LoopInterface::class))
|
|
->setHost($this->getServerHost())
|
|
->setPort($this->getServerPort())
|
|
->setAuth($auth)
|
|
->createClient()
|
|
->shareFolder(
|
|
$this->argument('folder'),
|
|
$this->option('name') ?? '',
|
|
explode(',', $this->option('subdomain'))
|
|
)
|
|
->createHttpServer()
|
|
->run();
|
|
}
|
|
}
|