mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 13:35:54 +00:00
36 lines
1016 B
PHP
36 lines
1016 B
PHP
<?php
|
|
|
|
namespace App\Server\Http\Controllers\Admin;
|
|
|
|
use App\Contracts\ConnectionManager;
|
|
use App\Server\Configuration;
|
|
use App\Server\Connections\ControlConnection;
|
|
use Illuminate\Http\Request;
|
|
use Ratchet\ConnectionInterface;
|
|
|
|
class ListSitesController extends AdminController
|
|
{
|
|
/** @var ConnectionManager */
|
|
protected $connectionManager;
|
|
/** @var Configuration */
|
|
protected $configuration;
|
|
|
|
public function __construct(ConnectionManager $connectionManager, Configuration $configuration)
|
|
{
|
|
$this->connectionManager = $connectionManager;
|
|
$this->configuration = $configuration;
|
|
}
|
|
|
|
public function handle(Request $request, ConnectionInterface $httpConnection)
|
|
{
|
|
$sites = $this->getView($httpConnection, 'server.sites.index', [
|
|
'scheme' => $this->configuration->port() === 443 ? 'https' : 'http',
|
|
'configuration' => $this->configuration,
|
|
]);
|
|
|
|
$httpConnection->send(
|
|
respond_html($sites)
|
|
);
|
|
}
|
|
}
|