Completed
Push — master ( b0cac2...9ce739 )
by Ankit
03:13
created
src/Register.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 namespace ChatApp;
4 4
 
5
-require_once (dirname(__DIR__) . '/vendor/autoload.php');
5
+require_once (dirname(__DIR__).'/vendor/autoload.php');
6 6
 use ChatApp\Validate;
7 7
 use ChatApp\Session;
8 8
 use Dotenv\Dotenv;
@@ -41,16 +41,16 @@  discard block
 block discarded – undo
41 41
 		$password = $data["passRegister"];
42 42
 		$userId = '';
43 43
 
44
-		if(filter_var($email, FILTER_VALIDATE_EMAIL) == false)
44
+		if (filter_var($email, FILTER_VALIDATE_EMAIL) == false)
45 45
 		{
46 46
 			$this->onError("email", " *Enter correct Email address");
47 47
 		}
48
-		else if($this->obValidate->validateEmailInDb($email) === 1)
48
+		else if ($this->obValidate->validateEmailInDb($email) === 1)
49 49
 		{
50 50
 			$this->onError("email", " *Email is already registered");
51 51
 		}
52 52
 
53
-		if($this->obValidate->validateUsernameInDb($username) === 1)
53
+		if ($this->obValidate->validateUsernameInDb($username) === 1)
54 54
 		{
55 55
 			$this->onError("username", " *Username is already registered");
56 56
 		}
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 			$this->onError("mob", " *Enter correct Mobile Number");
60 60
 		}
61 61
 
62
-		if($this->flag == 1)
62
+		if ($this->flag == 1)
63 63
 		{
64 64
 			return json_encode($this->error);
65 65
 		}
@@ -67,26 +67,26 @@  discard block
 block discarded – undo
67 67
 		$password = md5($password);
68 68
 
69 69
 		$query = "INSERT INTO register VALUES(null, '$email', '$username', '$password')";
70
-		if(!$this->connect->query($query))
70
+		if (!$this->connect->query($query))
71 71
 		{
72
-			return json_encode(["Error" => "You are not registered, ".$this->connect->error ]);
72
+			return json_encode(["Error" => "You are not registered, ".$this->connect->error]);
73 73
 		}
74 74
 		$query = "SELECT id FROM register WHERE email = '$email'";
75
-		if($result = $this->connect->query($query))
75
+		if ($result = $this->connect->query($query))
76 76
 		{
77 77
 			$row = $result->fetch_assoc();
78 78
 			$userId = $row['id'];
79 79
 			$query = "INSERT INTO login VALUES('$userId', '$name', '$email', '$username', '$mob', 0)";
80 80
 
81
-			if(!$this->connect->query($query))
81
+			if (!$this->connect->query($query))
82 82
 			{
83
-				return json_encode(["Error" => "You are not registered, ".$this->connect->error ]);
83
+				return json_encode(["Error" => "You are not registered, ".$this->connect->error]);
84 84
 			}
85 85
 
86 86
 			$query = "INSERT INTO profile VALUES('$userId', 'Joined OpenChat', 'Joined OpenChat', '')";
87
-			if(!$this->connect->query($query))
87
+			if (!$this->connect->query($query))
88 88
 			{
89
-				return json_encode(["Error" => "You are not registered, ".$this->connect->error ]);
89
+				return json_encode(["Error" => "You are not registered, ".$this->connect->error]);
90 90
 			}
91 91
 
92 92
 			Session::put('start', $userId);
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 		foreach ($data as $key => $value) {
117 117
 			$data[$key] = trim($data[$key]);
118 118
 			$value = trim($value);
119
-			if(empty($value))
119
+			if (empty($value))
120 120
 			{
121 121
 				$this->onError($key, $errorCode[$key]);
122 122
 			}
Please login to merge, or discard this patch.
views/validate_login.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-require (dirname(__DIR__) . '/vendor/autoload.php');
3
+require (dirname(__DIR__).'/vendor/autoload.php');
4 4
 use ChatApp\Login;
5 5
 
6
-if(isset($_POST['q']))
6
+if (isset($_POST['q']))
7 7
 {
8 8
     $loginField = json_decode($_POST['q']);
9 9
     $login = $loginField->login;
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
         'passLogin' => $password
15 15
     );
16 16
     $result = $obLogin->authLogin($data);
17
-    if(isset($result))
17
+    if (isset($result))
18 18
         echo $result;
19 19
     else
20 20
         echo json_encode([]);
Please login to merge, or discard this patch.
src/Chat.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -38,12 +38,12 @@  discard block
 block discarded – undo
38 38
 
39 39
     public function onMessage(ConnectionInterface $from, $msg) {
40 40
         $sessionId = $from->WebSocket->request->getCookies()['PHPSESSID'];
41
-        if($msg == 'OpenChat initiated..!')
41
+        if ($msg == 'OpenChat initiated..!')
42 42
         {
43
-            $initial = (object) array();
43
+            $initial = (object)array();
44 44
             $initial->initial = json_decode($this->onSidebar($from->userId));
45 45
 
46
-            if($initial->initial != null) {
46
+            if ($initial->initial != null) {
47 47
                 $initial->conversation = json_decode(
48 48
                     $this->onConversation(
49 49
                         json_encode([
@@ -58,13 +58,13 @@  discard block
 block discarded – undo
58 58
         }
59 59
         elseif ($msg == 'Load Sidebar')
60 60
         {
61
-            $sidebar = (object) array();
61
+            $sidebar = (object)array();
62 62
             $sidebar->sidebar = json_decode($this->onSidebar($from->userId));
63 63
             $from->send(json_encode($sidebar));
64 64
         }
65 65
         elseif (@json_decode($msg)->newConversation == 'Initiated')
66 66
         {
67
-            $result = (object) array();
67
+            $result = (object)array();
68 68
             $result->conversation = json_decode($this->onConversation($msg, False, $sessionId));
69 69
             $from->send(json_encode($result));
70 70
         }
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
                     $client->send(json_encode($receiveResult));
105 105
                     $this->online = 1;
106 106
                 }
107
-                elseif($client == $from)
107
+                elseif ($client == $from)
108 108
                 {
109 109
                     $sentResult->sidebar = json_decode($this->onSidebar($client->userId));
110 110
 
Please login to merge, or discard this patch.
views/message.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once (dirname(__DIR__) . '/vendor/autoload.php');
3
+require_once (dirname(__DIR__).'/vendor/autoload.php');
4 4
 use ChatApp\Session;
5 5
 use Dotenv\Dotenv;
6 6
 $dotenv = new Dotenv(dirname(__DIR__));
7 7
 $dotenv->load();
8 8
 
9
-if(Session::get('start') != null && empty($_GET['user']))
9
+if (Session::get('start') != null && empty($_GET['user']))
10 10
 {
11 11
 
12 12
 ?>
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
 
175 175
 <?php
176 176
 }
177
-else{
178
-  header('Location:'. getenv('APP_URL')."/index.php");
177
+else {
178
+  header('Location:'.getenv('APP_URL')."/index.php");
179 179
 }
180 180
 ?>
Please login to merge, or discard this patch.