Passed
Push — 2.x ( 915907...d168c3 )
by Terry
02:15
created
src/Firewall/Firewall/Messenger/ItemRocketChat.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,10 +29,10 @@
 block discarded – undo
29 29
      */
30 30
     public static function get(array $setting): MessengerInterface
31 31
     {
32
-        $serverUrl   = $setting['config']['server_url']   ?? '';
33
-        $userId      = $setting['config']['user_id']      ?? '';
32
+        $serverUrl   = $setting['config']['server_url'] ?? '';
33
+        $userId      = $setting['config']['user_id'] ?? '';
34 34
         $accessToken = $setting['config']['access_token'] ?? '';
35
-        $channel     = $setting['config']['channel']      ?? '';
35
+        $channel     = $setting['config']['channel'] ?? '';
36 36
 
37 37
         return new RocketChat($accessToken, $userId, $serverUrl, $channel);
38 38
     }
Please login to merge, or discard this patch.
src/Firewall/Firewall/Driver/ItemMysqlDriver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
             // Create a PDO instance.
38 38
             $pdoInstance = new PDO(
39 39
                 'mysql:host=' 
40
-                    . $setting['host']   . ';dbname=' 
40
+                    . $setting['host'] . ';dbname=' 
41 41
                     . $setting['dbname'] . ';charset=' 
42 42
                     . $setting['charset']
43 43
                 , (string) $setting['user']
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
         // @codeCoverageIgnoreStart
51 51
 
52
-        } catch(PDOException $e) {
52
+        } catch (PDOException $e) {
53 53
             echo $e->getMessage();
54 54
         }
55 55
 
Please login to merge, or discard this patch.
templates/frontend/login.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 				<div class="card-body">
120 120
                     <form action="<?php echo $form ?>" method="post" autocomplete="off">
121 121
                         <div class="main-content">
122
-                            <?php if (! empty($error)) : ?>
122
+                            <?php if (!empty($error)) : ?>
123 123
                             <div class="error-notice">
124 124
                                 <?php echo $error; ?>
125 125
                             </div>
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
                             <div class="input-box">
131 131
                                 <input type="password" name="s_pass" placeholder="Password" class="form-input" />
132 132
                             </div>
133
-                            <?php if (! empty($captchas)) : ?>
133
+                            <?php if (!empty($captchas)) : ?>
134 134
                             <div class="input-box">
135 135
                                 <?php foreach ($captchas as $captcha) : ?>
136 136
                                     <?php echo $captcha->form(); ?>
Please login to merge, or discard this patch.
src/Firewall/Kernel.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
      * 
209 209
      * @return void
210 210
      */
211
-    public function __construct(?ServerRequestInterface $request  = null, ?ResponseInterface $response = null)
211
+    public function __construct(?ServerRequestInterface $request = null, ?ResponseInterface $response = null)
212 212
     {
213 213
         // Load helper functions. This is the must.
214 214
         new Helpers();
@@ -658,9 +658,9 @@  discard block
 block discarded – undo
658 658
         $this->initComponents();
659 659
 
660 660
         $processMethods = [
661
-            'isRuleExist',   // Stage 1 - Looking for rule table.
662
-            'isTrustedBot',  // Stage 2 - Detect popular search engine.
663
-            'isFakeRobot',   // Stage 3 - Reject fake search engine crawlers.
661
+            'isRuleExist', // Stage 1 - Looking for rule table.
662
+            'isTrustedBot', // Stage 2 - Detect popular search engine.
663
+            'isFakeRobot', // Stage 3 - Reject fake search engine crawlers.
664 664
             'isIpComponent', // Stage 4 - IP manager.
665 665
             'isComponents'   // Stage 5 - Check other components.
666 666
         ];
Please login to merge, or discard this patch.
src/Firewall/Captcha/ImageCaptcha.php 1 patch
Spacing   +5 added lines, -7 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             'colors'       => [
101 101
                 'background' => [255, 255, 255],
102 102
                 'border'     => [153, 200, 255],
103
-                'text'       => [51,  153, 255],
103
+                'text'       => [51, 153, 255],
104 104
                 'grid'       => [153, 200, 255]
105 105
             ]
106 106
         ];
@@ -319,14 +319,12 @@  discard block
 block discarded – undo
319 319
     {
320 320
         // Determine angle and position.
321 321
         $angle = ($this->length >= 6) ?
322
-            mt_rand(-($this->length - 6), ($this->length - 6)) :
323
-            0;
322
+            mt_rand(-($this->length - 6), ($this->length - 6)) : 0;
324 323
 
325 324
         $xAxis = mt_rand(6, (360 / $this->length) - 16);
326 325
 
327 326
         $yAxis = ($angle >= 0) ?
328
-            mt_rand($imgHeight, $imgWidth) :
329
-            mt_rand(6, $imgHeight);
327
+            mt_rand($imgHeight, $imgWidth) : mt_rand(6, $imgHeight);
330 328
 
331 329
         // Create the spiral pattern.
332 330
         $theta = 1;
@@ -369,7 +367,7 @@  discard block
 block discarded – undo
369 367
         $y = 0;
370 368
 
371 369
         for ($i = 0; $i < $this->length; $i++) {
372
-            $y = mt_rand(0 , $imgHeight / 2);
370
+            $y = mt_rand(0, $imgHeight / 2);
373 371
             imagestring($this->im, 5, $x, $y, $this->word[$i], $textColor);
374 372
             $x += ($this->properties['font_spacing'] * 2);
375 373
         }
@@ -398,7 +396,7 @@  discard block
 block discarded – undo
398 396
     private function getImageBase64Content(): string
399 397
     {
400 398
         // Generate image in base64 string.
401
-        ob_start ();
399
+        ob_start();
402 400
 
403 401
         if (function_exists('imagejpeg')) {
404 402
             $this->imageType = 'jpeg';
Please login to merge, or discard this patch.
src/Firewall/Log/ActionLogParser.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
         ];
198 198
 
199 199
         if (empty($dataRange[$this->type])) {
200
-            if (preg_match('/past_([0-9]+)_days/', $this->type, $matches) ) {
200
+            if (preg_match('/past_([0-9]+)_days/', $this->type, $matches)) {
201 201
                 $dayCount = $matches[1];
202 202
                 $startDate = date('Ymd', strtotime('-' . $dayCount . ' days'));
203 203
                 $endDate = date('Ymd');
@@ -336,21 +336,21 @@  discard block
 block discarded – undo
336 336
             return [];
337 337
         }
338 338
 
339
-        $results['captcha_chart_string']  = '';     // string
340
-        $results['pageview_chart_string'] = '';     // string
341
-        $results['captcha_success_count'] = 0;      // integer
342
-        $results['captcha_failure_count'] = 0;      // integer
343
-        $results['captcha_count'] = 0;              // integer
344
-        $results['pageview_count'] = 0;             // integer
345
-        $results['captcha_percentageage'] = 0;      // integer
339
+        $results['captcha_chart_string']  = ''; // string
340
+        $results['pageview_chart_string'] = ''; // string
341
+        $results['captcha_success_count'] = 0; // integer
342
+        $results['captcha_failure_count'] = 0; // integer
343
+        $results['captcha_count'] = 0; // integer
344
+        $results['pageview_count'] = 0; // integer
345
+        $results['captcha_percentageage'] = 0; // integer
346 346
         $results['captcha_failure_percentage'] = 0; // integer
347 347
         $results['captcha_success_percentage'] = 0; // integer
348 348
 
349
-        $results['action_ban_count'] = 0;           // integer
350
-        $results['action_temp_ban_count'] = 0;      // integer
351
-        $results['action_unban_count'] = 0;         // integer
352
-        $results['blacklist_count'] = 0;            // integer
353
-        $results['session_limit_count'] = 0;        // integer
349
+        $results['action_ban_count'] = 0; // integer
350
+        $results['action_temp_ban_count'] = 0; // integer
351
+        $results['action_unban_count'] = 0; // integer
352
+        $results['blacklist_count'] = 0; // integer
353
+        $results['session_limit_count'] = 0; // integer
354 354
 
355 355
         $ipdData = $this->getIpData();
356 356
 
@@ -391,22 +391,22 @@  discard block
 block discarded – undo
391 391
     {
392 392
         $periodData = $this->getPeriodData();
393 393
 
394
-        $results['captcha_chart_string']  = '';     // string
395
-        $results['pageview_chart_string'] = '';     // string
396
-        $results['label_chart_string'] = '';        // string
397
-        $results['captcha_success_count'] = 0;      // integer
398
-        $results['captcha_failure_count'] = 0;      // integer
399
-        $results['captcha_count'] = 0;              // integer
400
-        $results['pageview_count'] = 0;             // integer
401
-        $results['captcha_percentageage'] = 0;      // integer
394
+        $results['captcha_chart_string']  = ''; // string
395
+        $results['pageview_chart_string'] = ''; // string
396
+        $results['label_chart_string'] = ''; // string
397
+        $results['captcha_success_count'] = 0; // integer
398
+        $results['captcha_failure_count'] = 0; // integer
399
+        $results['captcha_count'] = 0; // integer
400
+        $results['pageview_count'] = 0; // integer
401
+        $results['captcha_percentageage'] = 0; // integer
402 402
         $results['captcha_failure_percentage'] = 0; // integer
403 403
         $results['captcha_success_percentage'] = 0; // integer
404 404
 
405
-        $results['action_ban_count'] = 0;           // integer
406
-        $results['action_temp_ban_count'] = 0;      // integer
407
-        $results['action_unban_count'] = 0;         // integer
408
-        $results['blacklist_count'] = 0;            // integer
409
-        $results['session_limit_count'] = 0;        // integer
405
+        $results['action_ban_count'] = 0; // integer
406
+        $results['action_temp_ban_count'] = 0; // integer
407
+        $results['action_unban_count'] = 0; // integer
408
+        $results['blacklist_count'] = 0; // integer
409
+        $results['session_limit_count'] = 0; // integer
410 410
 
411 411
         if (!empty($periodData)) {
412 412
 
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
             }
437 437
 
438 438
             $results['captcha_chart_string'] = implode(',', $chartCaptcha);
439
-            $results['pageview_chart_string']= implode(',', $chartPageview);
439
+            $results['pageview_chart_string'] = implode(',', $chartPageview);
440 440
             $results['captcha_success_chart_string'] = implode(',', $chartCaptchaSuccess);
441 441
             $results['captcha_failure_chart_string'] = implode(',', $chartCaptchaFailure);
442 442
             $results['label_chart_string'] = "'" . implode("','", $labels) . "'";
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
         $ip = $log['ip'];
467 467
         $sessionId = $log['session_id'];
468 468
 
469
-        $this->ipDetail[$t][$ip]['session_id'][$sessionId ] = 1;
469
+        $this->ipDetail[$t][$ip]['session_id'][$sessionId] = 1;
470 470
 
471 471
         if ($logActionCode === self::LOG_TEMPORARILY_BAN) {
472 472
             $this->periodDetail[$t][$k]['action_temp_ban_count']++;
Please login to merge, or discard this patch.
src/Firewall/Firewall/MainTrait.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -102,9 +102,9 @@  discard block
 block discarded – undo
102 102
 
103 103
         $this->kernel->setProperty('time_unit_quota', $frequencyQuota);
104 104
 
105
-        $this->kernel->setProperty('cookie_name', $settings['cookie']['config']['cookie_name']);      // ssjd
106
-        $this->kernel->setProperty('cookie_domain', $settings['cookie']['config']['cookie_domain']);  // ''
107
-        $this->kernel->setProperty('cookie_value', $settings['cookie']['config']['cookie_value']);    // 1
105
+        $this->kernel->setProperty('cookie_name', $settings['cookie']['config']['cookie_name']); // ssjd
106
+        $this->kernel->setProperty('cookie_domain', $settings['cookie']['config']['cookie_domain']); // ''
107
+        $this->kernel->setProperty('cookie_value', $settings['cookie']['config']['cookie_value']); // 1
108 108
 
109 109
         $this->kernel->setProperty('interval_check_referer', $settings['referer']['config']['time_buffer']);
110 110
         $this->kernel->setProperty('interval_check_session', $settings['referer']['config']['time_buffer']);
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 
212 212
         foreach ($ipList as $ip) {
213 213
 
214
-            if (0 === strpos($this->kernel->getCurrentUrl(), $ip['url']) ) {
214
+            if (0 === strpos($this->kernel->getCurrentUrl(), $ip['url'])) {
215 215
 
216 216
                 if ('allow' === $ip['rule']) {
217 217
                     $allowedList[] = $ip['ip'];
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
     {
280 280
         $setting = $this->getOption('failed_attempts_in_a_row', 'events');
281 281
 
282
-        $enableDataCircle     = $setting['data_circle']['enable']     ?: false;
282
+        $enableDataCircle     = $setting['data_circle']['enable'] ?: false;
283 283
         $enableSystemFirewall = $setting['system_firewall']['enable'] ?: false;
284 284
 
285 285
         $this->kernel->setProperty('deny_attempt_enable', [
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
         $recordAttempt = $this->getOption('record_attempt');
297 297
 
298 298
         $detectionPeriod = $recordAttempt['detection_period'] ?? 5;
299
-        $timeToReset     = $recordAttempt['time_to_reset']    ?? 1800;
299
+        $timeToReset     = $recordAttempt['time_to_reset'] ?? 1800;
300 300
 
301 301
         $this->kernel->setProperty('record_attempt_detection_period', $detectionPeriod);
302 302
         $this->kernel->setProperty('reset_attempt_counter', $timeToReset);
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
     protected function setIptablesBridgeDirectory(): void
311 311
     {
312 312
         $iptablesSetting = $this->getOption('config', 'iptables');
313
-        $this->kernel->setProperty('iptables_watching_folder',  $iptablesSetting['watching_folder']);
313
+        $this->kernel->setProperty('iptables_watching_folder', $iptablesSetting['watching_folder']);
314 314
     }
315 315
 
316 316
     /**
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
 
325 325
         if ($sessionLimitSetting['enable']) {
326 326
 
327
-            $onlineUsers = $sessionLimitSetting['config']['count']  ?? 100;
327
+            $onlineUsers = $sessionLimitSetting['config']['count'] ?? 100;
328 328
             $alivePeriod = $sessionLimitSetting['config']['period'] ?? 300;
329 329
 
330 330
             $this->kernel->limitSession($onlineUsers, $alivePeriod);
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
 
348 348
             $lastResetTime = $cronjobSetting['config']['last_update'];
349 349
 
350
-            if (!empty($lastResetTime) ) {
350
+            if (!empty($lastResetTime)) {
351 351
                 $lastResetTime = strtotime($lastResetTime);
352 352
             } else {
353 353
                 // @codeCoverageIgnoreStart
Please login to merge, or discard this patch.