@@ -20,14 +20,14 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | function sendMessageToUser() |
| 22 | 22 | { |
| 23 | - $this->validate($this->request,[ |
|
| 23 | + $this->validate($this->request, [ |
|
| 24 | 24 | 'user_id'=>'required', |
| 25 | 25 | 'message' => 'required' |
| 26 | 26 | ]); |
| 27 | 27 | $user_id = $this->request->user_id; |
| 28 | 28 | $message = $this->request->message; |
| 29 | 29 | |
| 30 | - $this->sendToUser($user_id,$message); |
|
| 30 | + $this->sendToUser($user_id, $message); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | /** |
@@ -35,13 +35,13 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | function sendMessageToRoom() |
| 37 | 37 | { |
| 38 | - $this->validate($this->request,[ |
|
| 38 | + $this->validate($this->request, [ |
|
| 39 | 39 | 'room_id'=>'required', |
| 40 | 40 | 'message' => 'required' |
| 41 | 41 | ]); |
| 42 | 42 | $room_id = $this->request->room_id; |
| 43 | 43 | $message = $this->request->message; |
| 44 | 44 | |
| 45 | - $this->sendToRoom($room_id,$message); |
|
| 45 | + $this->sendToRoom($room_id, $message); |
|
| 46 | 46 | } |
| 47 | 47 | } |
| 48 | 48 | \ No newline at end of file |
@@ -72,15 +72,15 @@ discard block |
||
| 72 | 72 | { |
| 73 | 73 | $msg = json_decode($msg); |
| 74 | 74 | |
| 75 | - $this->checkForRequiredInMessage($msg,$from); |
|
| 75 | + $this->checkForRequiredInMessage($msg, $from); |
|
| 76 | 76 | |
| 77 | 77 | \Session::setId($msg->session); |
| 78 | 78 | |
| 79 | 79 | \Session::start(); |
| 80 | 80 | |
| 81 | 81 | $route = $this->routes[$msg->route]; |
| 82 | - if($route->auth && !\Auth::check()) |
|
| 83 | - $this->error($msg,$from,'Unauthenticated.'); |
|
| 82 | + if ($route->auth && !\Auth::check()) |
|
| 83 | + $this->error($msg, $from, 'Unauthenticated.'); |
|
| 84 | 84 | else |
| 85 | 85 | $this->userAuthSocketMapper[\Auth::id()] = $from->resourceId; |
| 86 | 86 | |
@@ -88,16 +88,16 @@ discard block |
||
| 88 | 88 | $method = $route->method; |
| 89 | 89 | $controller = new $class; |
| 90 | 90 | |
| 91 | - $this->cloneProperties($this,$controller); |
|
| 91 | + $this->cloneProperties($this, $controller); |
|
| 92 | 92 | |
| 93 | 93 | $controller->conn = $from; |
| 94 | 94 | $controller->receiver = $this; |
| 95 | 95 | $controller->request = $msg; |
| 96 | 96 | $controller->route = $route; |
| 97 | 97 | |
| 98 | - if(!method_exists($controller,$method)) |
|
| 98 | + if (!method_exists($controller, $method)) |
|
| 99 | 99 | { |
| 100 | - $this->error($msg,$from,'Method doesnt\'t exist !'); |
|
| 100 | + $this->error($msg, $from, 'Method doesnt\'t exist !'); |
|
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | $controller->$method(); |
@@ -106,9 +106,9 @@ discard block |
||
| 106 | 106 | { |
| 107 | 107 | |
| 108 | 108 | } |
| 109 | - catch(ValidationException $exception) |
|
| 109 | + catch (ValidationException $exception) |
|
| 110 | 110 | { |
| 111 | - $this->sendToWebSocketUser($from,[ |
|
| 111 | + $this->sendToWebSocketUser($from, [ |
|
| 112 | 112 | 'message'=>$exception->getMessage(), |
| 113 | 113 | 'errors'=> $exception->errors() |
| 114 | 114 | ]); |
@@ -143,15 +143,15 @@ discard block |
||
| 143 | 143 | * @param $from |
| 144 | 144 | * @throws WebSocketException |
| 145 | 145 | */ |
| 146 | - function checkForRequiredInMessage($msg,$from) |
|
| 146 | + function checkForRequiredInMessage($msg, $from) |
|
| 147 | 147 | { |
| 148 | - if(!isset($msg->route) || !isset($msg->session)) |
|
| 148 | + if (!isset($msg->route) || !isset($msg->session)) |
|
| 149 | 149 | { |
| 150 | - $this->error($msg,$from,'You can\'t send a request without the route and the session id !'); |
|
| 150 | + $this->error($msg, $from, 'You can\'t send a request without the route and the session id !'); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | - if(!isset($this->routes[$msg->route])) |
|
| 154 | - $this->error($msg,$from,'No such route !'); |
|
| 153 | + if (!isset($this->routes[$msg->route])) |
|
| 154 | + $this->error($msg, $from, 'No such route !'); |
|
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | /** |
@@ -167,10 +167,10 @@ discard block |
||
| 167 | 167 | |
| 168 | 168 | function mainRoutes() |
| 169 | 169 | { |
| 170 | - WsRoute::make('initializeWebsocket','Shamaseen\Laravel\Ratchet\Controllers\InitializeController','index'); |
|
| 171 | - WsRoute::make('room-enter','Shamaseen\Laravel\Ratchet\Controllers\RoomController','enterRoom'); |
|
| 172 | - WsRoute::make('room-exit','Shamaseen\Laravel\Ratchet\Controllers\RoomController','exitRoom'); |
|
| 173 | - WsRoute::make('send-to-user','Shamaseen\Laravel\Ratchet\Controllers\ChatController','sendMessageToUser'); |
|
| 174 | - WsRoute::make('send-to-room','Shamaseen\Laravel\Ratchet\Controllers\ChatController','sendMessageToRoom'); |
|
| 170 | + WsRoute::make('initializeWebsocket', 'Shamaseen\Laravel\Ratchet\Controllers\InitializeController', 'index'); |
|
| 171 | + WsRoute::make('room-enter', 'Shamaseen\Laravel\Ratchet\Controllers\RoomController', 'enterRoom'); |
|
| 172 | + WsRoute::make('room-exit', 'Shamaseen\Laravel\Ratchet\Controllers\RoomController', 'exitRoom'); |
|
| 173 | + WsRoute::make('send-to-user', 'Shamaseen\Laravel\Ratchet\Controllers\ChatController', 'sendMessageToUser'); |
|
| 174 | + WsRoute::make('send-to-room', 'Shamaseen\Laravel\Ratchet\Controllers\ChatController', 'sendMessageToRoom'); |
|
| 175 | 175 | } |
| 176 | 176 | } |
| 177 | 177 | \ No newline at end of file |