Completed
Push — master ( ecf2d0...135f37 )
by Ankit
03:04
created
src/Compose.php 2 patches
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -40,18 +40,15 @@
 block discarded – undo
40 40
                         }
41 41
                         $this->array = array_merge([], ["Compose" => $this->array]);
42 42
                         return json_encode($this->array);
43
-                    }
44
-                    else
43
+                    } else
45 44
                     {
46 45
                         return json_encode(["Compose" => "Not Found"]);
47 46
                     }
48
-                }
49
-                else
47
+                } else
50 48
                 {
51 49
                     return json_encode(["Compose" => "Query Failed"]);
52 50
                 }
53
-            }
54
-            else
51
+            } else
55 52
             {
56 53
                 return json_encode(["Compose" => "Not Found"]);
57 54
             }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 namespace ChatApp;
4
-require_once (dirname(__DIR__) . '/vendor/autoload.php');
4
+require_once (dirname(__DIR__).'/vendor/autoload.php');
5 5
 use ChatApp\Session;
6 6
 use Dotenv\Dotenv;
7 7
 $dotenv = new Dotenv(dirname(__DIR__));
@@ -34,18 +34,18 @@  discard block
 block discarded – undo
34 34
     public function selectUser($msg)
35 35
     {
36 36
         $msg = $msg->value;
37
-        if(Session::get('start') != null && isset($msg))
37
+        if (Session::get('start') != null && isset($msg))
38 38
         {
39 39
             $userId = Session::get('start');
40 40
             $suggestion = trim($msg);
41
-            if($suggestion != "" )
41
+            if ($suggestion != "")
42 42
             {
43 43
                 $query = "SELECT * FROM login where login_id != '$userId' and name like '$suggestion%' ORDER BY name DESC";
44
-                if($result = $this->connect->query($query))
44
+                if ($result = $this->connect->query($query))
45 45
                 {
46
-                    if($result->num_rows > 0)
46
+                    if ($result->num_rows > 0)
47 47
                     {
48
-                        while($row = $result->fetch_assoc())
48
+                        while ($row = $result->fetch_assoc())
49 49
                         {
50 50
                             $this->array = array_merge($this->array, [$row]);
51 51
                         }
Please login to merge, or discard this patch.
src/Time.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@
 block discarded – undo
16 16
     function TimeConversion($time)
17 17
     {
18 18
 
19
-        if(substr($time,4,11) == date("d M Y", time() + 16200))
20
-            $time = substr($time,16,5);
21
-        else if(substr($time,7,8) == date("M Y", time() + 16200) && substr($time, 4,2) - date("d") < 7)
22
-            $time = substr($time,0,3);
23
-        else if(substr($time,11,4) == date("Y", time() + 16200))
24
-            $time = substr($time,4,6);
19
+        if (substr($time, 4, 11) == date("d M Y", time() + 16200))
20
+            $time = substr($time, 16, 5);
21
+        else if (substr($time, 7, 8) == date("M Y", time() + 16200) && substr($time, 4, 2) - date("d") < 7)
22
+            $time = substr($time, 0, 3);
23
+        else if (substr($time, 11, 4) == date("Y", time() + 16200))
24
+            $time = substr($time, 4, 6);
25 25
         else
26
-            $time = substr($time,4,11);
26
+            $time = substr($time, 4, 11);
27 27
 
28 28
         return $time;
29 29
     }
Please login to merge, or discard this patch.
Braces   +9 added lines, -8 removed lines patch added patch discarded remove patch
@@ -16,14 +16,15 @@
 block discarded – undo
16 16
     function TimeConversion($time)
17 17
     {
18 18
 
19
-        if(substr($time,4,11) == date("d M Y", time() + 16200))
20
-            $time = substr($time,16,5);
21
-        else if(substr($time,7,8) == date("M Y", time() + 16200) && substr($time, 4,2) - date("d") < 7)
22
-            $time = substr($time,0,3);
23
-        else if(substr($time,11,4) == date("Y", time() + 16200))
24
-            $time = substr($time,4,6);
25
-        else
26
-            $time = substr($time,4,11);
19
+        if(substr($time,4,11) == date("d M Y", time() + 16200)) {
20
+                    $time = substr($time,16,5);
21
+        } else if(substr($time,7,8) == date("M Y", time() + 16200) && substr($time, 4,2) - date("d") < 7) {
22
+                    $time = substr($time,0,3);
23
+        } else if(substr($time,11,4) == date("Y", time() + 16200)) {
24
+                    $time = substr($time,4,6);
25
+        } else {
26
+                    $time = substr($time,4,11);
27
+        }
27 28
 
28 29
         return $time;
29 30
     }
Please login to merge, or discard this patch.
src/Models/message.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 class Message extends Model
10 10
 {
11
-    protected $table='message';
11
+    protected $table = 'message';
12 12
 
13 13
     protected $fillable = ['identifier_message_number', 'message', 'sent_by', 'time'];
14 14
 }
Please login to merge, or discard this patch.
src/Chat.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     public function onMessage(ConnectionInterface $from, $msg) {
39 39
         $sessionId = $from->WebSocket->request->getCookies()['PHPSESSID'];
40
-        if($msg == 'OpenChat initiated..!')
40
+        if ($msg == 'OpenChat initiated..!')
41 41
         {
42 42
             @$initial->initial = json_decode($this->onSidebar($from->userId));
43 43
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
                     $client->send(json_encode($result));
99 99
                     $this->online = 1;
100 100
                 }
101
-                elseif($client == $from)
101
+                elseif ($client == $from)
102 102
                 {
103 103
                     @$result->sidebar = json_decode($this->onSidebar($client->userId));
104 104
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -12 removed lines patch added patch discarded remove patch
@@ -52,28 +52,23 @@  discard block
 block discarded – undo
52 52
 
53 53
             $initial->conversation[0]->login_status = $this->online;
54 54
             $from->send(json_encode($initial));
55
-        }
56
-        elseif ($msg == 'Load Sidebar')
55
+        } elseif ($msg == 'Load Sidebar')
57 56
         {
58 57
             @$initial->initial = json_decode($this->onSidebar($from->userId));
59 58
             $from->send(json_encode($initial));
60
-        }
61
-        elseif (@json_decode($msg)->newConversation == 'Initiated')
59
+        } elseif (@json_decode($msg)->newConversation == 'Initiated')
62 60
         {
63 61
             @$result->conversation = json_decode($this->onConversation($msg, False, $sessionId));
64 62
             $from->send(json_encode($result));
65
-        }
66
-        elseif (@json_decode($msg)->search == 'search')
63
+        } elseif (@json_decode($msg)->search == 'search')
67 64
         {
68 65
             $searchResult = $this->onSearch($msg, $sessionId);
69 66
             $from->send($searchResult);
70
-        }
71
-        elseif (@json_decode($msg)->Compose == 'Compose')
67
+        } elseif (@json_decode($msg)->Compose == 'Compose')
72 68
         {
73 69
             $composeResult = $this->onCompose($msg, $sessionId);
74 70
             $from->send($composeResult);
75
-        }
76
-        else
71
+        } else
77 72
         {
78 73
             $this->onReply($msg, $sessionId);
79 74
 
@@ -97,8 +92,7 @@  discard block
 block discarded – undo
97 92
 
98 93
                     $client->send(json_encode($result));
99 94
                     $this->online = 1;
100
-                }
101
-                elseif($client == $from)
95
+                } elseif($client == $from)
102 96
                 {
103 97
                     @$result->sidebar = json_decode($this->onSidebar($client->userId));
104 98
 
Please login to merge, or discard this patch.
src/Search.php 2 patches
Braces   +4 added lines, -6 removed lines patch added patch discarded remove patch
@@ -61,16 +61,14 @@
 block discarded – undo
61 61
                 {
62 62
                     $this->array = array_merge([], ["Search" => $this->array]);
63 63
                     return json_encode($this->array);
64
+                } else {
65
+                                    return json_encode(["Search" => "Not Found"]);
64 66
                 }
65
-                else
66
-                    return json_encode(["Search" => "Not Found"]);
67
-            }
68
-            else
67
+            } else
69 68
             {
70 69
                 return json_encode(["Search" => "Not Found"]);
71 70
             }
72
-        }
73
-        else
71
+        } else
74 72
         {
75 73
             return json_encode(["Search" => "Not Found"]);
76 74
         }
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 namespace ChatApp;
4
-require_once (dirname(__DIR__) . '/vendor/autoload.php');
4
+require_once (dirname(__DIR__).'/vendor/autoload.php');
5 5
 use ChatApp\Time;
6 6
 use ChatApp\Session;
7 7
 use Dotenv\Dotenv;
@@ -38,23 +38,23 @@  discard block
 block discarded – undo
38 38
         $suggestion = $suggestion->value;
39 39
         $flag = 0;
40 40
         $userId = Session::get('start');
41
-        if($userId != null && isset($suggestion))
41
+        if ($userId != null && isset($suggestion))
42 42
         {
43 43
             $suggestion = trim($suggestion);
44
-            if($suggestion != "")
44
+            if ($suggestion != "")
45 45
             {
46 46
                 $query = "SELECT * FROM login where login_id != '$userId' and name like '$suggestion%' ORDER BY name ASC";
47
-                if($result = $this->connect->query($query))
47
+                if ($result = $this->connect->query($query))
48 48
                 {
49
-                    if($result->num_rows > 0)
49
+                    if ($result->num_rows > 0)
50 50
                     {
51
-                        while($row = $result->fetch_assoc())
51
+                        while ($row = $result->fetch_assoc())
52 52
                         {
53 53
                             $check_id = $row["login_id"];
54 54
                             $query = "SELECT * from total_message where (user1 = '$check_id' and user2 = '$userId') or (user2 = '$check_id' and user1 = '$userId')";
55
-                            if($result1 = $this->connect->query($query))
55
+                            if ($result1 = $this->connect->query($query))
56 56
                             {
57
-                                if($result1->num_rows > 0)
57
+                                if ($result1->num_rows > 0)
58 58
                                 {
59 59
                                     $fetch = $result1->fetch_assoc();
60 60
                                     $fetch['time'] = $this->obTime->timeConversion($fetch['time']);
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
                         }
67 67
                     }
68 68
                 }
69
-                if($flag != 0)
69
+                if ($flag != 0)
70 70
                 {
71 71
                     $this->array = array_merge([], ["Search" => $this->array]);
72 72
                     return json_encode($this->array);
Please login to merge, or discard this patch.
src/SideBar.php 2 patches
Braces   +4 added lines, -9 removed lines patch added patch discarded remove patch
@@ -38,27 +38,22 @@
 block discarded – undo
38 38
                         if($substring != $userId)
39 39
                         {
40 40
                             $this->Data($substring, $row);
41
-                        }
42
-
43
-                        else
41
+                        } else
44 42
                         {
45 43
                             $substring = substr($identifier, $length+1);
46 44
                             $this->Data($substring, $row);
47 45
                         }
48 46
                     }
49 47
                     return json_encode($this->array);
50
-                }
51
-                else
48
+                } else
52 49
                 {
53 50
                     return json_encode(null);
54 51
                 }
55
-            }
56
-            else
52
+            } else
57 53
             {
58 54
                 echo "Query Failed";
59 55
             }
60
-        }
61
-        else
56
+        } else
62 57
         {
63 58
             header('Location:../login.php');
64 59
         }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 namespace ChatApp;
4
-require_once (dirname(__DIR__) . '/vendor/autoload.php');
4
+require_once (dirname(__DIR__).'/vendor/autoload.php');
5 5
 use ChatApp\Time;
6 6
 use Dotenv\Dotenv;
7 7
 $dotenv = new Dotenv(dirname(__DIR__));
@@ -32,26 +32,26 @@  discard block
 block discarded – undo
32 32
 
33 33
     public function loadSideBar($userId)
34 34
     {
35
-        if(isset($userId))
35
+        if (isset($userId))
36 36
         {
37 37
             $query = "SELECT * FROM total_message WHERE user1='$userId' or user2='$userId'  ORDER BY id DESC";
38
-            if($result = $this->connect->query($query))
38
+            if ($result = $this->connect->query($query))
39 39
             {
40 40
                 if ($result->num_rows > 0)
41 41
                 {
42 42
                     $length = strlen($userId);
43
-                    while($row = $result->fetch_assoc())
43
+                    while ($row = $result->fetch_assoc())
44 44
                     {
45 45
                         $identifier = $row['identifier'];
46 46
                         $substring = substr($identifier, 0, $length);
47
-                        if($substring != $userId)
47
+                        if ($substring != $userId)
48 48
                         {
49 49
                             $this->data($substring, $row);
50 50
                         }
51 51
 
52 52
                         else
53 53
                         {
54
-                            $substring = substr($identifier, $length+1);
54
+                            $substring = substr($identifier, $length + 1);
55 55
                             $this->Data($substring, $row);
56 56
                         }
57 57
                     }
@@ -77,9 +77,9 @@  discard block
 block discarded – undo
77 77
     public function data($userId, $row)
78 78
     {
79 79
         $query = "SELECT username, name, login_status, login_id from login where login_id = '$userId'";
80
-        if($result = $this->connect->query($query))
80
+        if ($result = $this->connect->query($query))
81 81
         {
82
-            if($result->num_rows > 0)
82
+            if ($result->num_rows > 0)
83 83
             {
84 84
                 $fetch = $result->fetch_assoc();
85 85
                 $row['time'] = $this->obTime->timeConversion($row['time']);
Please login to merge, or discard this patch.
cmd.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 use Ratchet\WebSocket\WsServer;
8 8
 use ChatApp\Chat;
9 9
 
10
-$server =IoServer::factory(
10
+$server = IoServer::factory(
11 11
 	new HttpServer(
12 12
 		new WsServer(
13 13
 			new Chat()
Please login to merge, or discard this patch.
src/Login.php 2 patches
Braces   +5 added lines, -10 removed lines patch added patch discarded remove patch
@@ -30,8 +30,7 @@  discard block
 block discarded – undo
30 30
 		{
31 31
 			$this->key = 1;
32 32
 			$this->error = array_merge($this->error, ["login" => " *Enter the login field"]);
33
-		}
34
-		elseif (preg_match("/^[@]{1}$/", $login))
33
+		} elseif (preg_match("/^[@]{1}$/", $login))
35 34
 		{
36 35
 			if(filter_var($login, FILTER_VALIDATE_EMAIL) == false)
37 36
 			{
@@ -42,8 +41,7 @@  discard block
 block discarded – undo
42 41
 		if(empty($password)) {
43 42
 			$this->key = 1;
44 43
 			$this->error = array_merge($this->error, ["password" => " *Enter the password"]);
45
-		}
46
-		else
44
+		} else
47 45
 		{
48 46
 			$password = md5($password);
49 47
 		}
@@ -66,23 +64,20 @@  discard block
 block discarded – undo
66 64
 							return json_encode([
67 65
 								"location" => URL."/account.php"
68 66
 							]);
69
-						}
70
-						else
67
+						} else
71 68
 						{
72 69
 							$this->error = array_merge($this->error, ["password" => " *Invalid password"]);
73 70
 							return json_encode($this->error);
74 71
 						}
75 72
 					}
76
-				}
77
-				else
73
+				} else
78 74
 				{
79 75
 					$this->error = array_merge($this->error, ["login" => " *Invalid username or email"]);
80 76
 					return json_encode($this->error);
81 77
 				}
82 78
 			}
83 79
 
84
-		}
85
-		else
80
+		} else
86 81
 		{
87 82
 			return json_encode($this->error);
88 83
 		}
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 namespace ChatApp;
4
-require_once (dirname(__DIR__) . '/vendor/autoload.php');
4
+require_once (dirname(__DIR__).'/vendor/autoload.php');
5 5
 use ChatApp\Session;
6 6
 use Dotenv\Dotenv;
7 7
 $dotenv = new Dotenv(dirname(__DIR__));
@@ -33,20 +33,20 @@  discard block
 block discarded – undo
33 33
 		$login = trim($login);
34 34
 		$password = trim($password);
35 35
 
36
-		if(empty($login))
36
+		if (empty($login))
37 37
 		{
38 38
 			$this->key = 1;
39 39
 			$this->error = array_merge($this->error, ["login" => " *Enter the login field"]);
40 40
 		}
41 41
 		elseif (preg_match("/^[@]{1}$/", $login))
42 42
 		{
43
-			if(filter_var($login, FILTER_VALIDATE_EMAIL) == false)
43
+			if (filter_var($login, FILTER_VALIDATE_EMAIL) == false)
44 44
 			{
45 45
 			$this->key = 1;
46 46
 			$this->error = array_merge($this->error, ["login" => " *Enter correct Email address"]);
47 47
 			}
48 48
 		}
49
-		if(empty($password)) {
49
+		if (empty($password)) {
50 50
 			$this->key = 1;
51 51
 			$this->error = array_merge($this->error, ["password" => " *Enter the password"]);
52 52
 		}
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 			$password = md5($password);
56 56
 		}
57 57
 
58
-		if($this->key == 0)
58
+		if ($this->key == 0)
59 59
 		{
60 60
 			$query = "SELECT * FROM login WHERE email = '$login' or username = '$login'";
61 61
 			if ($result = $this->connect->query($query))
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 					$row = $result->fetch_assoc();
66 66
 					$loginID = $row['login_id'];
67 67
 					$query = "SELECT id FROM register WHERE id = '$loginID' and password = '$password'";
68
-					if($result = $this->connect->query($query))
68
+					if ($result = $this->connect->query($query))
69 69
 					{
70 70
 						if ($result->num_rows > 0)
71 71
 						{
Please login to merge, or discard this patch.
src/Validate.php 2 patches
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,9 +40,9 @@  discard block
 block discarded – undo
40 40
 		{
41 41
 			if ($result->num_rows>0) {
42 42
 				return 1;
43
+			} else {
44
+							return 0;
43 45
 			}
44
-			else
45
-				return 0;
46 46
 		}
47 47
 	}
48 48
 
@@ -52,9 +52,9 @@  discard block
 block discarded – undo
52 52
 		if ($result=$this->connect->query($query)) {
53 53
 			if ($result->num_rows>0) {
54 54
 				return 1;
55
+			} else {
56
+							return 0;
55 57
 			}
56
-			else
57
-				return 0;
58 58
 			
59 59
 		}
60 60
 	}
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace ChatApp;
3
-require_once (dirname(__DIR__) . '/vendor/autoload.php');
3
+require_once (dirname(__DIR__).'/vendor/autoload.php');
4 4
 use Dotenv\Dotenv;
5 5
 $dotenv = new Dotenv(dirname(__DIR__));
6 6
 $dotenv->load();
Please login to merge, or discard this patch.