Completed
Push — master ( d53ccf...d60caa )
by Ankit
03:18
created
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\Conversation;
7 7
 use Dotenv\Dotenv;
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         $msg = json_encode($msg);
37 37
         $this->messages = json_decode($this->conversation->conversationLoad($msg, $para));
38 38
         // $id1 = json_decode($msg)->details;
39
-        for ($i=1 ; $i < count($this->messages); $i++) {
39
+        for ($i = 1; $i < count($this->messages); $i++) {
40 40
             $this->messages[$i]->start = $id1;
41 41
         }
42 42
         $id2 = bin2hex(convert_uuencode($id2));
Please login to merge, or discard this patch.
src/Session.php 1 patch
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.
src/Time.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@
 block discarded – undo
16 16
     public 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.
src/Reply.php 1 patch
Spacing   +13 added lines, -13 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();
@@ -26,43 +26,43 @@  discard block
 block discarded – undo
26 26
 
27 27
     public function replyTo($msg)
28 28
     {
29
-        if(!empty($msg))  //checks for the value send
29
+        if (!empty($msg))  //checks for the value send
30 30
         {
31 31
             $userId = $msg->userId;
32 32
             $receiverID = $msg->name; //stores id of the person whom message is to be sent
33 33
             $identifier = "";
34 34
 
35
-            if($receiverID > $userId)     // geneate specific unique code to store messages
35
+            if ($receiverID > $userId)     // geneate specific unique code to store messages
36 36
             {
37 37
                 $user1 = $userId;
38 38
                 $user2 = $receiverID;
39
-                $identifier = $userId . ":" . $receiverID;
39
+                $identifier = $userId.":".$receiverID;
40 40
             }
41 41
             else
42 42
             {
43 43
                 $user1 = $receiverID;
44 44
                 $user2 = $userId;
45
-                $identifier = $receiverID . ":" . $userId;
45
+                $identifier = $receiverID.":".$userId;
46 46
             }
47 47
 
48 48
             $reply = addslashes(trim($msg->reply)); // stores the message sent by the user.
49 49
 
50
-            $time = date("D d M Y H:i:s", time() + 16200);  // current time
50
+            $time = date("D d M Y H:i:s", time() + 16200); // current time
51 51
             $time_id = date("YmdHis", time() + 16200); //to sort the array on the basis of time
52 52
 
53 53
             //the sender id must not be equal to current session id
54
-            if($reply != "" && $receiverID != $userId)
54
+            if ($reply != "" && $receiverID != $userId)
55 55
             {
56 56
                 // check whether the receiver is authorized or registered
57 57
                 $query = "SELECT * from login where login_id = '$receiverID'";
58 58
 
59 59
                 $result = $this->connect->query($query);
60
-                if($result->num_rows > 0)     // if true
60
+                if ($result->num_rows > 0)     // if true
61 61
                 {
62 62
                     //check whether he is sending message for thr first time or he has sent messages before
63 63
                     $query = "SELECT * from total_message where identifier = '$identifier'";
64 64
                     $result = $this->connect->query($query);
65
-                    if($result->num_rows > 0)               // if he has sent messages before
65
+                    if ($result->num_rows > 0)               // if he has sent messages before
66 66
                     {
67 67
                         // Update Total_Message Table
68 68
                         $query = "UPDATE total_message SET total_messages = total_messages+1, time = '$time', unread = 1, id = '$time_id' WHERE identifier = '$identifier'";
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
                         return $this->updateMessages($query, $identifier, $reply, $userId, $time);
77 77
                     }
78 78
                 }
79
-                return "Invalid Authentication";  // if he is unauthorized echo message is failed
79
+                return "Invalid Authentication"; // if he is unauthorized echo message is failed
80 80
             }
81 81
         }
82 82
         return "Failed";
@@ -84,13 +84,13 @@  discard block
 block discarded – undo
84 84
 
85 85
     public function updateMessages($query, $identifier, $reply, $userId, $time)
86 86
     {
87
-        if($result = $this->connect->query($query))
87
+        if ($result = $this->connect->query($query))
88 88
         {
89 89
             //insert message in db
90 90
             $query = "INSERT into messages values('$identifier', '$reply', '$userId', '$time', null)";
91
-            if($this->connect->query($query))
91
+            if ($this->connect->query($query))
92 92
             {
93
-                return "Messages is sent";    // if query is executed return true
93
+                return "Messages is sent"; // if query is executed return true
94 94
             }
95 95
             return "Message is failed";
96 96
         }
Please login to merge, or discard this patch.