2024-06-20 02:20:42 +00:00
|
|
|
<?php
|
|
|
|
|
2024-07-20 01:37:37 +00:00
|
|
|
require_once __DIR__ . '/../vendor/autoload.php';
|
2024-06-20 02:20:42 +00:00
|
|
|
|
|
|
|
use Slovocast\Bootstrap;
|
|
|
|
use React\Http\HttpServer;
|
|
|
|
use React\Socket\SocketServer;
|
|
|
|
use Psr\Http\Message\ServerRequestInterface as Request;
|
|
|
|
|
2024-07-20 01:37:37 +00:00
|
|
|
try {
|
|
|
|
$app = Bootstrap::init();
|
|
|
|
$http = new HttpServer(fn (Request $request) => $app->handle($request));
|
|
|
|
$address = "127.0.0.1:8000";
|
|
|
|
$socket = new SocketServer($address);
|
|
|
|
$http->listen($socket);
|
|
|
|
|
|
|
|
$http->on('error', function ($error) use ($socket) {
|
|
|
|
fprintf(STDERR, $error->getMessage() . "\n");
|
|
|
|
fprintf(STDERR, "Closing socket connection.\n");
|
|
|
|
$socket->close();
|
|
|
|
});
|
|
|
|
|
|
|
|
$http->on('exit', function () use ($socket) {
|
|
|
|
fprintf(STDOUT, "Closing socket connection.\n");
|
|
|
|
$socket->close();
|
|
|
|
});
|
|
|
|
|
|
|
|
fprintf(STDOUT, "Server running on %s\n", $address);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
fprintf(STDERR, "Error caught bootstrapping the application\n");
|
|
|
|
fprintf(STDERR, $e->getMessage() . "\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2024-06-20 02:20:42 +00:00
|
|
|
|
|
|
|
|