Completed
Push — master ( 2e7ca6...665d5a )
by Ankit
03:17
created
src/Session.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,15 +6,15 @@
 block discarded – undo
6 6
 class Session
7 7
 {
8 8
 
9
-    public static function put($key, $value){
9
+    public static function put($key, $value) {
10 10
         $_SESSION[$key] = $value;
11 11
     }
12 12
 
13
-    public static function get($key){
13
+    public static function get($key) {
14 14
         return (isset($_SESSION[$key]) ? $_SESSION[$key] : null);
15 15
     }
16 16
 
17
-    public static function forget($key){
17
+    public static function forget($key) {
18 18
         unset($_SESSION[$key]);
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -6,10 +6,16 @@
 block discarded – undo
6 6
 class Session
7 7
 {
8 8
 
9
+    /**
10
+     * @param string $key
11
+     */
9 12
     public static function put($key, $value){
10 13
         $_SESSION[$key] = $value;
11 14
     }
12 15
 
16
+    /**
17
+     * @param string $key
18
+     */
13 19
     public static function get($key){
14 20
         return (isset($_SESSION[$key]) ? $_SESSION[$key] : null);
15 21
     }
Please login to merge, or discard this patch.
tests/ExistsTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,8 +76,8 @@
 block discarded – undo
76 76
     }
77 77
 
78 78
     /**
79
-    * @dataProvider ClassNameProvider
80
-    */
79
+     * @dataProvider ClassNameProvider
80
+     */
81 81
     public function testClassExists($className)
82 82
     {
83 83
         $this->assertTrue(class_exists($className));
Please login to merge, or discard this patch.
index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once (__DIR__ . '/vendor/autoload.php');
3
+require_once (__DIR__.'/vendor/autoload.php');
4 4
 use ChatApp\Session;
5 5
 use Dotenv\Dotenv;
6 6
 $dotenv = new Dotenv(__DIR__);
7 7
 $dotenv->load();
8 8
 
9 9
 
10
-if(Session::get('start') != null)
10
+if (Session::get('start') != null)
11 11
 {
12 12
     header("Location:".getenv('APP_URL')."/account.php");
13 13
 }
Please login to merge, or discard this patch.
src/Conversation.php 2 patches
Spacing   +12 added lines, -12 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 ChatApp\Time;
7 7
 use ChatApp\User;
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     {
41 41
 
42 42
         $flag = 1;
43
-        if(Session::get('start') != null && isset($msg))
43
+        if (Session::get('start') != null && isset($msg))
44 44
         {
45 45
             $add_load = 0;
46 46
             $userId = Session::get('start');
@@ -50,25 +50,25 @@  discard block
 block discarded – undo
50 50
 
51 51
             $fetch = $this->obUser->userDetails($username, $para);
52 52
 
53
-            if($fetch != NULL)
53
+            if ($fetch != NULL)
54 54
             {
55 55
                 $login_id = (int)$fetch['login_id'];
56 56
 
57 57
                 // Unique Identifier
58
-                if($login_id > $userId)
58
+                if ($login_id > $userId)
59 59
                     $identifier = $userId.':'.$login_id;
60 60
                 else
61 61
                     $identifier = $login_id.':'.$userId;
62 62
 
63 63
                 $query = "SELECT total_messages from total_message where identifier = '$identifier'";
64
-                if($result = $this->connect->query($query))
64
+                if ($result = $this->connect->query($query))
65 65
                 {
66
-                    if($result->num_rows > 0)
66
+                    if ($result->num_rows > 0)
67 67
                     {
68 68
                         $total = $result->fetch_assoc();
69 69
                         $total = $total['total_messages'];
70
-                        if($total - $load > 0)
71
-                            if($total - $load > 10)
70
+                        if ($total - $load > 0)
71
+                            if ($total - $load > 10)
72 72
                                 $add_load = $load + 10;
73 73
                             else
74 74
                                 $add_load = $total;
@@ -76,14 +76,14 @@  discard block
 block discarded – undo
76 76
                 }
77 77
 
78 78
                 $query = "SELECT message, time, sent_by FROM messages WHERE identifier_message_number = '$identifier' ORDER BY id DESC limit ".$load;
79
-                if($result = $this->connect->query($query))
79
+                if ($result = $this->connect->query($query))
80 80
                 {
81
-                    if($result->num_rows > 0)
81
+                    if ($result->num_rows > 0)
82 82
                     {
83
-                        while($row = $result->fetch_assoc())
83
+                        while ($row = $result->fetch_assoc())
84 84
                         {
85 85
                             $row['time'] = $this->obTime->timeConversion($row['time']);
86
-                            $row = array_merge($row,['start' => $userId]);
86
+                            $row = array_merge($row, ['start' => $userId]);
87 87
                             $this->array = array_merge($this->array, [$row]);
88 88
                         }
89 89
 
Please login to merge, or discard this patch.
Braces   +14 added lines, -16 removed lines patch added patch discarded remove patch
@@ -55,10 +55,11 @@  discard block
 block discarded – undo
55 55
                 $login_id = (int)$fetch['login_id'];
56 56
 
57 57
                 // Unique Identifier
58
-                if($login_id > $userId)
59
-                    $identifier = $userId.':'.$login_id;
60
-                else
61
-                    $identifier = $login_id.':'.$userId;
58
+                if($login_id > $userId) {
59
+                                    $identifier = $userId.':'.$login_id;
60
+                } else {
61
+                                    $identifier = $login_id.':'.$userId;
62
+                }
62 63
 
63 64
                 $query = "SELECT total_messages from total_message where identifier = '$identifier'";
64 65
                 if($result = $this->connect->query($query))
@@ -67,11 +68,12 @@  discard block
 block discarded – undo
67 68
                     {
68 69
                         $total = $result->fetch_assoc();
69 70
                         $total = $total['total_messages'];
70
-                        if($total - $load > 0)
71
-                            if($total - $load > 10)
71
+                        if($total - $load > 0) {
72
+                                                    if($total - $load > 10)
72 73
                                 $add_load = $load + 10;
73
-                            else
74
-                                $add_load = $total;
74
+                        } else {
75
+                                                            $add_load = $total;
76
+                            }
75 77
                     }
76 78
                 }
77 79
 
@@ -89,23 +91,19 @@  discard block
 block discarded – undo
89 91
 
90 92
                         $this->array = array_merge([['name' => $fetch['name'], 'username' => $fetch['username'], 'id' => $fetch['login_id'], 'load' => $add_load, 'login_status' => $fetch['login_status'], 'type' => 1]], $this->array);
91 93
                         return json_encode($this->array);
92
-                    }
93
-                    else
94
+                    } else
94 95
                     {
95 96
                         return json_encode([['name' => $fetch['name'], 'username' => $fetch['username'], 'id' => $fetch['login_id'], 'login_status' => $fetch['login_status'], 'type' => 0]]);
96 97
                     }
97
-                }
98
-                else
98
+                } else
99 99
                 {
100 100
                     echo "Query Failed";
101 101
                 }
102
-            }
103
-            else
102
+            } else
104 103
             {
105 104
                 echo "Query Failed";
106 105
             }
107
-        }
108
-        else
106
+        } else
109 107
         {
110 108
             header('Location:../login.php');
111 109
         }
Please login to merge, or discard this patch.
src/Receiver.php 1 patch
Spacing   +2 added lines, -2 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\User;
6 6
 use ChatApp\Session;
7 7
 use ChatApp\Conversation;
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         $name = $this->messages['name'];
37 37
         $this->messages = json_decode($this->conversation->conversationLoad($msg, True));
38 38
         $id = json_decode($msg)->username;
39
-        for ($i=1 ; $i < count($this->messages); $i++) {
39
+        for ($i = 1; $i < count($this->messages); $i++) {
40 40
             $this->messages[$i]->start = $id;
41 41
         }
42 42
         $this->messages[0]->username = $username;
Please login to merge, or discard this patch.
src/User.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 
4 4
 namespace ChatApp;
5
-require_once (dirname(__DIR__) . '/vendor/autoload.php');
5
+require_once (dirname(__DIR__).'/vendor/autoload.php');
6 6
 use Dotenv\Dotenv;
7 7
 $dotenv = new Dotenv(dirname(__DIR__));
8 8
 $dotenv->load();
@@ -30,12 +30,12 @@  discard block
 block discarded – undo
30 30
 
31 31
     public function userDetails($userId, $para)
32 32
     {
33
-        if($para == True)
33
+        if ($para == True)
34 34
             $this->query = "SELECT * from login where login_id = '$userId'";
35 35
         else
36 36
             $this->query = "SELECT * from login where username = '$userId'";
37 37
         $this->result = $this->connect->query($this->query);
38
-        if($this->result->num_rows > 0)                   // if true
38
+        if ($this->result->num_rows > 0)                   // if true
39 39
         {
40 40
             $this->details = $this->result->fetch_assoc();
41 41
             return $this->details;
Please login to merge, or discard this patch.
Braces   +9 added lines, -7 removed lines patch added patch discarded remove patch
@@ -30,17 +30,19 @@
 block discarded – undo
30 30
 
31 31
     public function userDetails($userId, $para)
32 32
     {
33
-        if($para == True)
34
-            $this->query = "SELECT * from login where login_id = '$userId'";
35
-        else
36
-            $this->query = "SELECT * from login where username = '$userId'";
33
+        if($para == True) {
34
+                    $this->query = "SELECT * from login where login_id = '$userId'";
35
+        } else {
36
+                    $this->query = "SELECT * from login where username = '$userId'";
37
+        }
37 38
         $this->result = $this->connect->query($this->query);
38
-        if($this->result->num_rows > 0)                   // if true
39
+        if($this->result->num_rows > 0) {
40
+            // if true
39 41
         {
40 42
             $this->details = $this->result->fetch_assoc();
41
-            return $this->details;
42 43
         }
43
-        else
44
+            return $this->details;
45
+        } else
44 46
         {
45 47
             return NULL;
46 48
         }
Please login to merge, or discard this patch.
src/Online.php 1 patch
Spacing   +3 added lines, -3 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 Dotenv\Dotenv;
6 6
 $dotenv = new Dotenv(dirname(__DIR__));
7 7
 $dotenv->load();
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
             getenv('DB_NAME')
23 23
         );
24 24
         $query = "Update login set login_status = 1 where login_id = '$userId'";
25
-        if(!$connect->query($query));
25
+        if (!$connect->query($query));
26 26
             echo $connect->error;
27 27
         $connect->close();
28 28
     }
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
             getenv('DB_NAME')
37 37
         );
38 38
         $query = "Update login set login_status = 0 where login_id = '$userId'";
39
-        if(!$connect->query($query));
39
+        if (!$connect->query($query));
40 40
             echo $connect->error;
41 41
         $connect->close();
42 42
     }
Please login to merge, or discard this patch.
views/logout.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 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\Session;
5 5
 use Dotenv\Dotenv;
6 6
 $dotenv = new Dotenv(dirname(__DIR__));
7 7
 $dotenv->load();
8 8
 
9 9
 
10
-if(Session::get('start') != null)
10
+if (Session::get('start') != null)
11 11
 {
12 12
     Session::forget('start');
13 13
     header('Location:'.getenv('APP_URL')."/index.php");
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,7 @@
 block discarded – undo
12 12
         header('Location: ../../index.php');
13 13
     }
14 14
 
15
-}
16
-else
15
+} else
17 16
 {
18 17
 	echo "Please Login";
19 18
 }
Please login to merge, or discard this patch.
views/message.php 3 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,8 +129,7 @@
 block discarded – undo
129 129
 </html>
130 130
 
131 131
 <?php
132
-}
133
-else{
132
+} else{
134 133
 	header('Location:http://www.localhost/openchat/login.php');
135 134
 }
136 135
 ?>
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,6 +175,6 @@
 block discarded – undo
175 175
 <?php
176 176
 }
177 177
 else{
178
-  header('Location:'. getenv('APP_URL')."/index.php");
178
+    header('Location:'. getenv('APP_URL')."/index.php");
179 179
 }
180 180
 ?>
Please login to merge, or discard this 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.