@@ -28,8 +28,8 @@ discard block |
||
28 | 28 | if (!$this->container->getRequest()->isPost()) { |
29 | 29 | throw new \Core\JsonException('Call is not post'); |
30 | 30 | } |
31 | - $state = (bool)($this->request->getData("state") === 'true'); |
|
32 | - $postId = (int)$this->request->getData("postId"); |
|
31 | + $state = (bool) ($this->request->getData("state") === 'true'); |
|
32 | + $postId = (int) $this->request->getData("postId"); |
|
33 | 33 | |
34 | 34 | $result = array(); |
35 | 35 | $result["success"] = $this->postModule->setPublished(!$state, $postId); |
@@ -48,8 +48,8 @@ discard block |
||
48 | 48 | if (!$this->container->getRequest()->isPost()) { |
49 | 49 | throw new \Core\JsonException('Call is not post'); |
50 | 50 | } |
51 | - $state = (bool)($this->request->getData("state") === 'true'); //TODO test this element |
|
52 | - $postId = (int)$this->request->getData("postId"); |
|
51 | + $state = (bool) ($this->request->getData("state") === 'true'); //TODO test this element |
|
52 | + $postId = (int) $this->request->getData("postId"); |
|
53 | 53 | |
54 | 54 | $result = array(); |
55 | 55 | $result["success"] = $this->postModule->setOnFrontPage(!$state, $postId); |
@@ -92,7 +92,7 @@ |
||
92 | 92 | * return the entire session superglobal. |
93 | 93 | * @return mixed |
94 | 94 | */ |
95 | - public function getAllSessionVars(){ |
|
95 | + public function getAllSessionVars() { |
|
96 | 96 | return $_SESSION; |
97 | 97 | } |
98 | 98 |
@@ -23,7 +23,7 @@ |
||
23 | 23 | const POSTS_PER_PAGE = 4; |
24 | 24 | const LIST_PER_PAGE = 10; |
25 | 25 | |
26 | - const EXCERPT_WORD_COUNT =50; |
|
26 | + const EXCERPT_WORD_COUNT = 50; |
|
27 | 27 | |
28 | 28 | //login security |
29 | 29 | const NUMBER_OF_BAD_PASSWORD_TRIES = 3; |
@@ -44,24 +44,24 @@ discard block |
||
44 | 44 | private function getFilename(string $folder, string $file): string |
45 | 45 | { |
46 | 46 | //slugify the file name to avoid security errors or bugs with special characters. |
47 | - $fileName = pathinfo($file, PATHINFO_FILENAME ); |
|
48 | - $fileExtension = pathinfo($file, PATHINFO_EXTENSION ); |
|
47 | + $fileName = pathinfo($file, PATHINFO_FILENAME); |
|
48 | + $fileExtension = pathinfo($file, PATHINFO_EXTENSION); |
|
49 | 49 | $slugify = new Slugify(); |
50 | 50 | $fileName = $slugify->slugify($fileName); |
51 | 51 | //if the filename has only special chars, the slugify will be empty, create a unique ID |
52 | - if($fileName ==="") |
|
52 | + if ($fileName === "") |
|
53 | 53 | { |
54 | 54 | $fileName = uniqid(); |
55 | 55 | } |
56 | 56 | $file = $fileName.".".$fileExtension; |
57 | - $fileUrl = $folder . $file; |
|
57 | + $fileUrl = $folder.$file; |
|
58 | 58 | $docRoot = $this->request->getDocumentRoot(); |
59 | - $filePath = $docRoot . "/public/" . $fileUrl; |
|
59 | + $filePath = $docRoot."/public/".$fileUrl; |
|
60 | 60 | if (file_exists($filePath) !== 1) { |
61 | 61 | $fileNum = 0; |
62 | 62 | while (file_exists($filePath)) { |
63 | - $fileUrl = $folder . $fileNum . "_" . $file; |
|
64 | - $filePath = $docRoot . "/public/" . $fileUrl; |
|
63 | + $fileUrl = $folder.$fileNum."_".$file; |
|
64 | + $filePath = $docRoot."/public/".$fileUrl; |
|
65 | 65 | $fileNum += 1; |
66 | 66 | } |
67 | 67 | } |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | |
86 | 86 | // Respond to the successful upload with JSON. |
87 | 87 | echo json_encode(array('location' => $filetowrite)); |
88 | - } else { |
|
88 | + }else { |
|
89 | 89 | // Notify editor that the upload failed |
90 | 90 | echo json_encode(array('error' => 'Upload failed, file might be too big')); |
91 | 91 | |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | |
120 | 120 | // Respond to the successful upload with JSON. |
121 | 121 | echo json_encode(array('location' => $filetowrite)); |
122 | - } else { |
|
122 | + }else { |
|
123 | 123 | // Notify editor that the upload failed |
124 | 124 | header("HTTP/1.1 500 Server Error"); |
125 | 125 | } |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | namespace Core\Dependency; |
4 | 4 | |
5 | -class Cookie{ |
|
5 | +class Cookie { |
|
6 | 6 | |
7 | 7 | /** |
8 | 8 | * set a cookie |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | */ |
22 | 22 | public function deleteCookie(string $name) |
23 | 23 | { |
24 | - setcookie($name, "", time()-3600); //expire the cookie |
|
24 | + setcookie($name, "", time() - 3600); //expire the cookie |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | /** |
@@ -50,10 +50,10 @@ discard block |
||
50 | 50 | $twigOptions = []; |
51 | 51 | if (!Config::DEV_ENVIRONMENT) { |
52 | 52 | $twigOptions = [ |
53 | - 'cache' => dirname(__DIR__) . '/Cache' |
|
53 | + 'cache' => dirname(__DIR__).'/Cache' |
|
54 | 54 | ]; |
55 | 55 | } |
56 | - $loader = new \Twig_Loader_Filesystem(dirname(__DIR__) . '/App/Views'); |
|
56 | + $loader = new \Twig_Loader_Filesystem(dirname(__DIR__).'/App/Views'); |
|
57 | 57 | $twig = new \Twig_Environment($loader, $twigOptions); |
58 | 58 | |
59 | 59 | return $twig; |
@@ -68,13 +68,13 @@ discard block |
||
68 | 68 | if ($this->dbh) { |
69 | 69 | return $this->dbh; |
70 | 70 | } |
71 | - $dsn = "mysql:host=" . Config::DB_HOST . ";dbname=" . Config::DB_NAME . ";charset=utf8"; //Creating the Data Source name |
|
71 | + $dsn = "mysql:host=".Config::DB_HOST.";dbname=".Config::DB_NAME.";charset=utf8"; //Creating the Data Source name |
|
72 | 72 | $opt = [ |
73 | 73 | PDO::ATTR_PERSISTENT => true, |
74 | 74 | PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION, |
75 | 75 | PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_OBJ |
76 | 76 | ]; |
77 | - $this->dbh = new PDO($dsn, Config::DB_USER, Config::DB_PASSWORD, $opt);; |
|
77 | + $this->dbh = new PDO($dsn, Config::DB_USER, Config::DB_PASSWORD, $opt); ; |
|
78 | 78 | return $this->dbh; |
79 | 79 | } |
80 | 80 | |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | */ |
121 | 121 | public function getCookie(): Dependency\Cookie |
122 | 122 | { |
123 | - if(!$this->cookie){ |
|
123 | + if (!$this->cookie) { |
|
124 | 124 | $this->cookie = new Cookie(); |
125 | 125 | } |
126 | 126 | return $this->cookie; |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | use Core\Container; |
6 | 6 | use Core\Model; |
7 | 7 | |
8 | -class Remembered_loginsModel extends Model{ |
|
8 | +class Remembered_loginsModel extends Model { |
|
9 | 9 | |
10 | 10 | private $token; |
11 | 11 | private $rememberedLoginTbl; |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | { |
26 | 26 | if ($token_value) { |
27 | 27 | $this->token = $token_value; |
28 | - } else { |
|
28 | + }else { |
|
29 | 29 | $this->token = bin2hex(random_bytes(16)); |
30 | 30 | } |
31 | 31 | } |
@@ -86,9 +86,9 @@ discard block |
||
86 | 86 | $this->execute(); |
87 | 87 | $result = $this->fetch(); |
88 | 88 | |
89 | - if($result) |
|
89 | + if ($result) |
|
90 | 90 | { |
91 | - if(strtotime($result->expires_at) < time()) |
|
91 | + if (strtotime($result->expires_at) < time()) |
|
92 | 92 | { |
93 | 93 | //token has expired |
94 | 94 | $this->deleteToken($hashedToken); |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | */ |
149 | 149 | public function cleanUpTokens() |
150 | 150 | { |
151 | - $sql=" |
|
151 | + $sql = " |
|
152 | 152 | DELETE FROM $this->rememberedLoginTbl |
153 | 153 | WHERE expires_at < :time |
154 | 154 | "; |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | //check if email is valid for sanity |
139 | 139 | if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { |
140 | 140 | $email = htmlspecialchars($email); |
141 | - throw new BlogocException("invalid email " . $email); |
|
141 | + throw new BlogocException("invalid email ".$email); |
|
142 | 142 | } |
143 | 143 | $sql = $this->baseSqlSelect(); |
144 | 144 | $sql .= " |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | $this->bind(':roles_idroles', 1); |
187 | 187 | $this->execute(); |
188 | 188 | |
189 | - return (int)$this->dbh->lastInsertId(); |
|
189 | + return (int) $this->dbh->lastInsertId(); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | } |
218 | 218 | |
219 | 219 | if ($this->isAccountPasswordBlocked($user)) { |
220 | - $response->message = "too many bad passwords, account is blocked for " . Constant::LOCKOUT_MINUTES . " minutes"; |
|
220 | + $response->message = "too many bad passwords, account is blocked for ".Constant::LOCKOUT_MINUTES." minutes"; |
|
221 | 221 | return $response; |
222 | 222 | } |
223 | 223 |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | |
49 | 49 | // Create the Transport for mail sending |
50 | 50 | $config = $this->siteConfig->getSiteConfig(); |
51 | - $this->transport = (new Swift_SmtpTransport($config["SMTP_server"], (int)$config["SMTP_port"])) |
|
51 | + $this->transport = (new Swift_SmtpTransport($config["SMTP_server"], (int) $config["SMTP_port"])) |
|
52 | 52 | ->setUsername($config["SMTP_user"]) |
53 | 53 | ->setPassword($config["SMTP_pass"]) |
54 | 54 | ; |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | private function populateUserFromId(int $userId) |
89 | 89 | { |
90 | 90 | $result = $this->userModel->getUserDetailsById($userId); |
91 | - $this->populateUser((array)$result); |
|
91 | + $this->populateUser((array) $result); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | */ |
110 | 110 | public function index() |
111 | 111 | { |
112 | - if($this->session->isParamSet("user")) |
|
112 | + if ($this->session->isParamSet("user")) |
|
113 | 113 | { |
114 | 114 | //we are already connected, redirect |
115 | 115 | $this->response->redirect(); |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | */ |
139 | 139 | public function register() |
140 | 140 | { |
141 | - if($this->session->isParamSet("user")) |
|
141 | + if ($this->session->isParamSet("user")) |
|
142 | 142 | { |
143 | 143 | //we are already connected, redirect |
144 | 144 | $this->response->redirect(); |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | } |
199 | 199 | |
200 | 200 | $authUser = $this->userModel->authenticateUser($email, $password); |
201 | - if(!$authUser->success) |
|
201 | + if (!$authUser->success) |
|
202 | 202 | { |
203 | 203 | $error = true; |
204 | 204 | $loginErrors->global = $authUser->message; |
@@ -217,14 +217,14 @@ discard block |
||
217 | 217 | //we are authenticated here |
218 | 218 | |
219 | 219 | //populate the user object with returned data |
220 | - $this->populateUser((array)$authUser->user); |
|
220 | + $this->populateUser((array) $authUser->user); |
|
221 | 221 | |
222 | 222 | //if the user wanted to be remembered |
223 | - if($rememberMe) |
|
223 | + if ($rememberMe) |
|
224 | 224 | { |
225 | 225 | $this->rememberedLoginModel->setToken(); //generate a new token |
226 | 226 | $rememberMeToken = $this->rememberedLoginModel->rememberMe($this->user->idusers); |
227 | - if($rememberMeToken->success) |
|
227 | + if ($rememberMeToken->success) |
|
228 | 228 | { |
229 | 229 | //set cookie |
230 | 230 | $this->cookie->setCookie("rememberMe", $rememberMeToken->token, $rememberMeToken->expiry_timestamp); |