aboutsummaryrefslogtreecommitdiffhomepage
path: root/infrastructure/Console
diff options
context:
space:
mode:
Diffstat (limited to 'infrastructure/Console')
-rw-r--r--infrastructure/Console/Commands/WebSocketServerCommand.php38
-rw-r--r--infrastructure/Console/Kernel.php3
2 files changed, 40 insertions, 1 deletions
diff --git a/infrastructure/Console/Commands/WebSocketServerCommand.php b/infrastructure/Console/Commands/WebSocketServerCommand.php
new file mode 100644
index 0000000..4723b29
--- /dev/null
+++ b/infrastructure/Console/Commands/WebSocketServerCommand.php
@@ -0,0 +1,38 @@
+<?php
+
+namespace Infrastructure\Console\Commands;
+
+use Illuminate\Console\Command;
+use Infrastructure\Http\WebSocketController;
+use Ratchet\Http\HttpServer;
+use Ratchet\Server\IoServer;
+use Ratchet\WebSocket\WsServer;
+
+class WebSocketServerCommand extends Command
+{
+ /**
+ * The console command name.
+ *
+ * @var string
+ */
+ protected $name = 'websocket';
+
+ /**
+ * Execute the console command.
+ *
+ * @return void
+ */
+ public function fire()
+ {
+ $server = IoServer::factory(
+ new HttpServer(
+ new WsServer(
+ new WebSocketController()
+ )
+ ),
+ 1337
+ );
+ $this->line('Started server.');
+ $server->run();
+ }
+} \ No newline at end of file
diff --git a/infrastructure/Console/Kernel.php b/infrastructure/Console/Kernel.php
index dffc73a..13329ae 100644
--- a/infrastructure/Console/Kernel.php
+++ b/infrastructure/Console/Kernel.php
@@ -14,7 +14,8 @@ class Kernel extends ConsoleKernel
* @var array
*/
protected $commands = [
- AddUserCommand::class
+ AddUserCommand::class,
+ Commands\WebSocketServerCommand::class
];
/**