@@ -14,12 +14,13 @@ |
||
| 14 | 14 | $connect = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME); |
| 15 | 15 | $query = "SELECT * from profile where login_id = '$userId'"; |
| 16 | 16 | $result = $connect->query($query); |
| 17 | - if($result->num_rows > 0) // if true |
|
| 17 | + if($result->num_rows > 0) { |
|
| 18 | + // if true |
|
| 18 | 19 | { |
| 19 | 20 | $details = $result->fetch_assoc(); |
| 20 | - return $details; |
|
| 21 | 21 | } |
| 22 | - else |
|
| 22 | + return $details; |
|
| 23 | + } else |
|
| 23 | 24 | { |
| 24 | 25 | return NULL; |
| 25 | 26 | } |
@@ -1,7 +1,7 @@ discard block |
||
| 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(); |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | ); |
| 24 | 24 | $query = "SELECT * from profile where login_id = '$userId'"; |
| 25 | 25 | $result = $connect->query($query); |
| 26 | - if($result->num_rows > 0) // if true |
|
| 26 | + if ($result->num_rows > 0) // if true |
|
| 27 | 27 | { |
| 28 | 28 | $details = $result->fetch_assoc(); |
| 29 | 29 | return $details; |
@@ -36,11 +36,9 @@ discard block |
||
| 36 | 36 | |
| 37 | 37 | if(empty($email)) { |
| 38 | 38 | $this->onError(["email" => " *Enter the email address"]); |
| 39 | - } |
|
| 40 | - elseif(filter_var($email, FILTER_VALIDATE_EMAIL) == false) { |
|
| 39 | + } elseif(filter_var($email, FILTER_VALIDATE_EMAIL) == false) { |
|
| 41 | 40 | $this->onError(["email" => " *Enter correct Email address"]); |
| 42 | - } |
|
| 43 | - else |
|
| 41 | + } else |
|
| 44 | 42 | { |
| 45 | 43 | if($this->obValidate->validateEmailInDb($email) === 1) |
| 46 | 44 | { |
@@ -51,8 +49,7 @@ discard block |
||
| 51 | 49 | |
| 52 | 50 | if(empty($username)) { |
| 53 | 51 | $this->onError(["username" => " *Enter the username"]); |
| 54 | - } |
|
| 55 | - else |
|
| 52 | + } else |
|
| 56 | 53 | { |
| 57 | 54 | if($this->obValidate->validateUsernameInDb($username) === 1) |
| 58 | 55 | { |
@@ -67,16 +64,14 @@ discard block |
||
| 67 | 64 | |
| 68 | 65 | if(empty($mob)) { |
| 69 | 66 | $this->onError(["mob" => " *Enter the Mobile Number"]); |
| 70 | - } |
|
| 71 | - elseif (!preg_match("/^[0-9]{10}$/", $mob)) { |
|
| 67 | + } elseif (!preg_match("/^[0-9]{10}$/", $mob)) { |
|
| 72 | 68 | $this->onError(["mob" => " *Enter correct Mobile Number"]); |
| 73 | 69 | } |
| 74 | 70 | |
| 75 | 71 | if($this->key == 1) |
| 76 | 72 | { |
| 77 | 73 | return json_encode($this->error); |
| 78 | - } |
|
| 79 | - else |
|
| 74 | + } else |
|
| 80 | 75 | { |
| 81 | 76 | $this->key = 0; |
| 82 | 77 | $pass = md5($password); |
@@ -84,8 +79,7 @@ discard block |
||
| 84 | 79 | if(!$this->connect->query($query)) { |
| 85 | 80 | $this->key = 1; |
| 86 | 81 | echo "You are not registered || Error in registration1"; |
| 87 | - } |
|
| 88 | - else |
|
| 82 | + } else |
|
| 89 | 83 | { |
| 90 | 84 | $query = "SELECT id FROM register WHERE email = '$email'"; |
| 91 | 85 | if($result = $this->connect->query($query)) { |
@@ -96,8 +90,7 @@ discard block |
||
| 96 | 90 | if(!$this->connect->query($query)) { |
| 97 | 91 | $this->key = 1; |
| 98 | 92 | echo "You are not registered || Error in registration2"; |
| 99 | - } |
|
| 100 | - else |
|
| 93 | + } else |
|
| 101 | 94 | { |
| 102 | 95 | $query = "INSERT INTO profile VALUES('$userId', 'Joined OpenChat', 'Joined OpenChat', '')"; |
| 103 | 96 | if(!$this->connect->query($query)) { |
@@ -113,8 +106,7 @@ discard block |
||
| 113 | 106 | return json_encode([ |
| 114 | 107 | "location" => URL."/account.php" |
| 115 | 108 | ]); |
| 116 | - } |
|
| 117 | - else |
|
| 109 | + } else |
|
| 118 | 110 | { |
| 119 | 111 | return json_encode($this->error); |
| 120 | 112 | } |
@@ -2,7 +2,7 @@ discard block |
||
| 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; |
@@ -44,45 +44,45 @@ discard block |
||
| 44 | 44 | $this->onError(["name" => " *Enter the name"]); |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | - if(empty($email)) { |
|
| 47 | + if (empty($email)) { |
|
| 48 | 48 | $this->onError(["email" => " *Enter the email address"]); |
| 49 | 49 | } |
| 50 | - elseif(filter_var($email, FILTER_VALIDATE_EMAIL) == false) { |
|
| 50 | + elseif (filter_var($email, FILTER_VALIDATE_EMAIL) == false) { |
|
| 51 | 51 | $this->onError(["email" => " *Enter correct Email address"]); |
| 52 | 52 | } |
| 53 | 53 | else |
| 54 | 54 | { |
| 55 | - if($this->obValidate->validateEmailInDb($email) === 1) |
|
| 55 | + if ($this->obValidate->validateEmailInDb($email) === 1) |
|
| 56 | 56 | { |
| 57 | 57 | |
| 58 | 58 | $this->onError(["email" => " *Email is already registered"]); |
| 59 | 59 | } |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - if(empty($username)) { |
|
| 62 | + if (empty($username)) { |
|
| 63 | 63 | $this->onError(["username" => " *Enter the username"]); |
| 64 | 64 | } |
| 65 | 65 | else |
| 66 | 66 | { |
| 67 | - if($this->obValidate->validateUsernameInDb($username) === 1) |
|
| 67 | + if ($this->obValidate->validateUsernameInDb($username) === 1) |
|
| 68 | 68 | { |
| 69 | 69 | |
| 70 | 70 | $this->onError(["username" => " *Username is already registered"]); |
| 71 | 71 | } |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - if(empty($password)) { |
|
| 74 | + if (empty($password)) { |
|
| 75 | 75 | $this->onError(["password" => " *Enter the password"]); |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - if(empty($mob)) { |
|
| 78 | + if (empty($mob)) { |
|
| 79 | 79 | $this->onError(["mob" => " *Enter the Mobile Number"]); |
| 80 | 80 | } |
| 81 | 81 | elseif (!preg_match("/^[0-9]{10}$/", $mob)) { |
| 82 | 82 | $this->onError(["mob" => " *Enter correct Mobile Number"]); |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | - if($this->key == 1) |
|
| 85 | + if ($this->key == 1) |
|
| 86 | 86 | { |
| 87 | 87 | return json_encode($this->error); |
| 88 | 88 | } |
@@ -91,26 +91,26 @@ discard block |
||
| 91 | 91 | $this->key = 0; |
| 92 | 92 | $pass = md5($password); |
| 93 | 93 | $query = "INSERT INTO register VALUES(null, '$email', '$username', '$pass')"; |
| 94 | - if(!$this->connect->query($query)) { |
|
| 94 | + if (!$this->connect->query($query)) { |
|
| 95 | 95 | $this->key = 1; |
| 96 | 96 | echo "You are not registered || Error in registration1"; |
| 97 | 97 | } |
| 98 | 98 | else |
| 99 | 99 | { |
| 100 | 100 | $query = "SELECT id FROM register WHERE email = '$email'"; |
| 101 | - if($result = $this->connect->query($query)) { |
|
| 101 | + if ($result = $this->connect->query($query)) { |
|
| 102 | 102 | $row = $result->fetch_assoc(); |
| 103 | 103 | $userId = $row['id']; |
| 104 | 104 | |
| 105 | 105 | $query = "INSERT INTO login VALUES('$userId', '$name', '$email', '$username', '$mob', 0)"; |
| 106 | - if(!$this->connect->query($query)) { |
|
| 106 | + if (!$this->connect->query($query)) { |
|
| 107 | 107 | $this->key = 1; |
| 108 | 108 | echo "You are not registered || Error in registration2"; |
| 109 | 109 | } |
| 110 | 110 | else |
| 111 | 111 | { |
| 112 | 112 | $query = "INSERT INTO profile VALUES('$userId', 'Joined OpenChat', 'Joined OpenChat', '')"; |
| 113 | - if(!$this->connect->query($query)) { |
|
| 113 | + if (!$this->connect->query($query)) { |
|
| 114 | 114 | $this->key = 1; |
| 115 | 115 | echo "You are not registered || Error in registration3"; |
| 116 | 116 | } |
@@ -12,127 +12,127 @@ |
||
| 12 | 12 | |
| 13 | 13 | class Register |
| 14 | 14 | { |
| 15 | - protected $error; |
|
| 16 | - protected $key; |
|
| 17 | - protected $obValidate; |
|
| 18 | - protected $connect; |
|
| 19 | - |
|
| 20 | - public function __construct() |
|
| 21 | - { |
|
| 22 | - $this->error = array(); |
|
| 23 | - $this->key = 0; |
|
| 24 | - $this->connect = mysqli_connect( |
|
| 15 | + protected $error; |
|
| 16 | + protected $key; |
|
| 17 | + protected $obValidate; |
|
| 18 | + protected $connect; |
|
| 19 | + |
|
| 20 | + public function __construct() |
|
| 21 | + { |
|
| 22 | + $this->error = array(); |
|
| 23 | + $this->key = 0; |
|
| 24 | + $this->connect = mysqli_connect( |
|
| 25 | 25 | getenv('DB_HOST'), |
| 26 | 26 | getenv('DB_USER'), |
| 27 | 27 | getenv('DB_PASSWORD'), |
| 28 | 28 | getenv('DB_NAME') |
| 29 | 29 | ); |
| 30 | - $this->obValidate = new Validate(); |
|
| 31 | - |
|
| 32 | - } |
|
| 33 | - |
|
| 34 | - public function authRegister($name, $email, $username, $password, $mob) |
|
| 35 | - { |
|
| 36 | - $name = trim($name); |
|
| 37 | - $email = trim($email); |
|
| 38 | - $username = trim($username); |
|
| 39 | - $password = trim($password); |
|
| 40 | - $mob = trim($mob); |
|
| 41 | - $userId = ''; |
|
| 42 | - |
|
| 43 | - if (empty($name)) { |
|
| 44 | - $this->onError(["name" => " *Enter the name"]); |
|
| 45 | - } |
|
| 46 | - |
|
| 47 | - if(empty($email)) { |
|
| 48 | - $this->onError(["email" => " *Enter the email address"]); |
|
| 49 | - } |
|
| 50 | - elseif(filter_var($email, FILTER_VALIDATE_EMAIL) == false) { |
|
| 51 | - $this->onError(["email" => " *Enter correct Email address"]); |
|
| 52 | - } |
|
| 53 | - else |
|
| 54 | - { |
|
| 55 | - if($this->obValidate->validateEmailInDb($email) === 1) |
|
| 56 | - { |
|
| 57 | - |
|
| 58 | - $this->onError(["email" => " *Email is already registered"]); |
|
| 59 | - } |
|
| 60 | - } |
|
| 61 | - |
|
| 62 | - if(empty($username)) { |
|
| 63 | - $this->onError(["username" => " *Enter the username"]); |
|
| 64 | - } |
|
| 65 | - else |
|
| 66 | - { |
|
| 67 | - if($this->obValidate->validateUsernameInDb($username) === 1) |
|
| 68 | - { |
|
| 69 | - |
|
| 70 | - $this->onError(["username" => " *Username is already registered"]); |
|
| 71 | - } |
|
| 72 | - } |
|
| 73 | - |
|
| 74 | - if(empty($password)) { |
|
| 75 | - $this->onError(["password" => " *Enter the password"]); |
|
| 76 | - } |
|
| 77 | - |
|
| 78 | - if(empty($mob)) { |
|
| 79 | - $this->onError(["mob" => " *Enter the Mobile Number"]); |
|
| 80 | - } |
|
| 81 | - elseif (!preg_match("/^[0-9]{10}$/", $mob)) { |
|
| 82 | - $this->onError(["mob" => " *Enter correct Mobile Number"]); |
|
| 83 | - } |
|
| 84 | - |
|
| 85 | - if($this->key == 1) |
|
| 86 | - { |
|
| 87 | - return json_encode($this->error); |
|
| 88 | - } |
|
| 89 | - else |
|
| 90 | - { |
|
| 91 | - $this->key = 0; |
|
| 92 | - $pass = md5($password); |
|
| 93 | - $query = "INSERT INTO register VALUES(null, '$email', '$username', '$pass')"; |
|
| 94 | - if(!$this->connect->query($query)) { |
|
| 95 | - $this->key = 1; |
|
| 96 | - echo "You are not registered || Error in registration1"; |
|
| 97 | - } |
|
| 98 | - else |
|
| 99 | - { |
|
| 100 | - $query = "SELECT id FROM register WHERE email = '$email'"; |
|
| 101 | - if($result = $this->connect->query($query)) { |
|
| 102 | - $row = $result->fetch_assoc(); |
|
| 103 | - $userId = $row['id']; |
|
| 104 | - |
|
| 105 | - $query = "INSERT INTO login VALUES('$userId', '$name', '$email', '$username', '$mob', 0)"; |
|
| 106 | - if(!$this->connect->query($query)) { |
|
| 107 | - $this->key = 1; |
|
| 108 | - echo "You are not registered || Error in registration2"; |
|
| 109 | - } |
|
| 110 | - else |
|
| 111 | - { |
|
| 112 | - $query = "INSERT INTO profile VALUES('$userId', 'Joined OpenChat', 'Joined OpenChat', '')"; |
|
| 113 | - if(!$this->connect->query($query)) { |
|
| 114 | - $this->key = 1; |
|
| 115 | - echo "You are not registered || Error in registration3"; |
|
| 116 | - } |
|
| 117 | - } |
|
| 118 | - } |
|
| 119 | - } |
|
| 120 | - } |
|
| 121 | - if ($this->key == 0) { |
|
| 122 | - Session::put('start', $userId); |
|
| 123 | - return json_encode([ |
|
| 124 | - "location" => getenv('APP_URL')."/views/account.php" |
|
| 125 | - ]); |
|
| 126 | - } |
|
| 127 | - else |
|
| 128 | - { |
|
| 129 | - return json_encode($this->error); |
|
| 130 | - } |
|
| 131 | - } |
|
| 132 | - |
|
| 133 | - public function onError($value) |
|
| 134 | - { |
|
| 135 | - $this->key = 1; |
|
| 136 | - $this->error = array_merge($this->error, $value); |
|
| 137 | - } |
|
| 30 | + $this->obValidate = new Validate(); |
|
| 31 | + |
|
| 32 | + } |
|
| 33 | + |
|
| 34 | + public function authRegister($name, $email, $username, $password, $mob) |
|
| 35 | + { |
|
| 36 | + $name = trim($name); |
|
| 37 | + $email = trim($email); |
|
| 38 | + $username = trim($username); |
|
| 39 | + $password = trim($password); |
|
| 40 | + $mob = trim($mob); |
|
| 41 | + $userId = ''; |
|
| 42 | + |
|
| 43 | + if (empty($name)) { |
|
| 44 | + $this->onError(["name" => " *Enter the name"]); |
|
| 45 | + } |
|
| 46 | + |
|
| 47 | + if(empty($email)) { |
|
| 48 | + $this->onError(["email" => " *Enter the email address"]); |
|
| 49 | + } |
|
| 50 | + elseif(filter_var($email, FILTER_VALIDATE_EMAIL) == false) { |
|
| 51 | + $this->onError(["email" => " *Enter correct Email address"]); |
|
| 52 | + } |
|
| 53 | + else |
|
| 54 | + { |
|
| 55 | + if($this->obValidate->validateEmailInDb($email) === 1) |
|
| 56 | + { |
|
| 57 | + |
|
| 58 | + $this->onError(["email" => " *Email is already registered"]); |
|
| 59 | + } |
|
| 60 | + } |
|
| 61 | + |
|
| 62 | + if(empty($username)) { |
|
| 63 | + $this->onError(["username" => " *Enter the username"]); |
|
| 64 | + } |
|
| 65 | + else |
|
| 66 | + { |
|
| 67 | + if($this->obValidate->validateUsernameInDb($username) === 1) |
|
| 68 | + { |
|
| 69 | + |
|
| 70 | + $this->onError(["username" => " *Username is already registered"]); |
|
| 71 | + } |
|
| 72 | + } |
|
| 73 | + |
|
| 74 | + if(empty($password)) { |
|
| 75 | + $this->onError(["password" => " *Enter the password"]); |
|
| 76 | + } |
|
| 77 | + |
|
| 78 | + if(empty($mob)) { |
|
| 79 | + $this->onError(["mob" => " *Enter the Mobile Number"]); |
|
| 80 | + } |
|
| 81 | + elseif (!preg_match("/^[0-9]{10}$/", $mob)) { |
|
| 82 | + $this->onError(["mob" => " *Enter correct Mobile Number"]); |
|
| 83 | + } |
|
| 84 | + |
|
| 85 | + if($this->key == 1) |
|
| 86 | + { |
|
| 87 | + return json_encode($this->error); |
|
| 88 | + } |
|
| 89 | + else |
|
| 90 | + { |
|
| 91 | + $this->key = 0; |
|
| 92 | + $pass = md5($password); |
|
| 93 | + $query = "INSERT INTO register VALUES(null, '$email', '$username', '$pass')"; |
|
| 94 | + if(!$this->connect->query($query)) { |
|
| 95 | + $this->key = 1; |
|
| 96 | + echo "You are not registered || Error in registration1"; |
|
| 97 | + } |
|
| 98 | + else |
|
| 99 | + { |
|
| 100 | + $query = "SELECT id FROM register WHERE email = '$email'"; |
|
| 101 | + if($result = $this->connect->query($query)) { |
|
| 102 | + $row = $result->fetch_assoc(); |
|
| 103 | + $userId = $row['id']; |
|
| 104 | + |
|
| 105 | + $query = "INSERT INTO login VALUES('$userId', '$name', '$email', '$username', '$mob', 0)"; |
|
| 106 | + if(!$this->connect->query($query)) { |
|
| 107 | + $this->key = 1; |
|
| 108 | + echo "You are not registered || Error in registration2"; |
|
| 109 | + } |
|
| 110 | + else |
|
| 111 | + { |
|
| 112 | + $query = "INSERT INTO profile VALUES('$userId', 'Joined OpenChat', 'Joined OpenChat', '')"; |
|
| 113 | + if(!$this->connect->query($query)) { |
|
| 114 | + $this->key = 1; |
|
| 115 | + echo "You are not registered || Error in registration3"; |
|
| 116 | + } |
|
| 117 | + } |
|
| 118 | + } |
|
| 119 | + } |
|
| 120 | + } |
|
| 121 | + if ($this->key == 0) { |
|
| 122 | + Session::put('start', $userId); |
|
| 123 | + return json_encode([ |
|
| 124 | + "location" => getenv('APP_URL')."/views/account.php" |
|
| 125 | + ]); |
|
| 126 | + } |
|
| 127 | + else |
|
| 128 | + { |
|
| 129 | + return json_encode($this->error); |
|
| 130 | + } |
|
| 131 | + } |
|
| 132 | + |
|
| 133 | + public function onError($value) |
|
| 134 | + { |
|
| 135 | + $this->key = 1; |
|
| 136 | + $this->error = array_merge($this->error, $value); |
|
| 137 | + } |
|
| 138 | 138 | } |
@@ -76,8 +76,8 @@ |
||
| 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)); |
@@ -6,10 +6,16 @@ |
||
| 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 | } |
@@ -6,15 +6,15 @@ |
||
| 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 | } |
| 21 | 21 | \ No newline at end of file |
@@ -1,13 +1,13 @@ |
||
| 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 | } |
@@ -1,7 +1,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | |
@@ -55,10 +55,11 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -1,7 +1,7 @@ discard block |
||
| 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 |
||
| 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; |
@@ -2,7 +2,7 @@ discard block |
||
| 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 |
||
| 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; |
@@ -30,17 +30,19 @@ |
||
| 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 | } |
@@ -1,7 +1,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | } |