This commit is contained in:
Marcel Pociot
2020-04-14 21:19:23 +02:00
commit 2b03398f40
48 changed files with 8099 additions and 0 deletions

0
app/Commands/.gitkeep Normal file
View File

View File

@@ -0,0 +1,21 @@
<?php
namespace App\Commands;
use App\Server\Factory;
use Illuminate\Console\Scheduling\Schedule;
use LaravelZero\Framework\Commands\Command;
class ServeCommand extends Command
{
protected $signature = 'serve';
protected $description = 'Start the shaft server';
public function handle()
{
(new Factory())
->createServer()
->run();
}
}

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Commands;
use App\Client\Factory;
use Illuminate\Console\Scheduling\Schedule;
use LaravelZero\Framework\Commands\Command;
use React\EventLoop\LoopInterface;
class ShareCommand extends Command
{
protected $signature = 'share {host} {--subdomain=}';
protected $description = 'Share a local url with a remote shaft server';
public function handle()
{
(new Factory())
->setLoop(app(LoopInterface::class))
->createClient($this->argument('host'), explode(',', $this->option('subdomain')))
->createHttpServer()
->run();
}
}