@@ -112,10 +112,10 @@ |
||
112 | 112 | |
113 | 113 | $data = []; |
114 | 114 | |
115 | - $data[0] = $record['ip'] ?? 'null'; |
|
116 | - $data[1] = $record['session_id'] ?? 'null'; |
|
115 | + $data[0] = $record['ip'] ?? 'null'; |
|
116 | + $data[1] = $record['session_id'] ?? 'null'; |
|
117 | 117 | $data[2] = $record['action_code'] ?? 'null'; |
118 | - $data[3] = $record['timesamp'] ?? 'null'; |
|
118 | + $data[3] = $record['timesamp'] ?? 'null'; |
|
119 | 119 | |
120 | 120 | file_put_contents($this->filePath, implode(',', $data) . "\n", FILE_APPEND | LOCK_EX); |
121 | 121 | } |
@@ -39,7 +39,7 @@ |
||
39 | 39 | */ |
40 | 40 | public static function get(array $setting): CaptchaInterface |
41 | 41 | { |
42 | - $type = $setting['config']['type'] ?? 'alnum'; |
|
42 | + $type = $setting['config']['type'] ?? 'alnum'; |
|
43 | 43 | $length = $setting['config']['length'] ?? 8; |
44 | 44 | |
45 | 45 | $imageCaptchaConfig = []; |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | define('SHIELDON_VIEW', true); |
165 | 165 | } |
166 | 166 | |
167 | - $viewFilePath = __DIR__ . '/../../../templates/' . $page . '.php'; |
|
167 | + $viewFilePath = __DIR__ . '/../../../templates/' . $page . '.php'; |
|
168 | 168 | |
169 | 169 | if (!empty($data)) { |
170 | 170 | extract($data); |
@@ -433,12 +433,10 @@ discard block |
||
433 | 433 | $echo = []; |
434 | 434 | |
435 | 435 | $echo['css'] = $this->getConfig('messengers.' . $moduleName . '.confirm_test') ? |
436 | - 'success' : |
|
437 | - ''; |
|
436 | + 'success' : ''; |
|
438 | 437 | |
439 | 438 | $echo['icon'] = $this->getConfig('messengers.' . $moduleName . '.confirm_test') ? |
440 | - '<i class="fas fa-check"></i>' : |
|
441 | - '<i class="fas fa-exclamation"></i>'; |
|
439 | + '<i class="fas fa-check"></i>' : '<i class="fas fa-exclamation"></i>'; |
|
442 | 440 | |
443 | 441 | echo $echo[$echoType]; |
444 | 442 | } |
@@ -263,13 +263,16 @@ |
||
263 | 263 | <?php endif; ?> |
264 | 264 | </span> |
265 | 265 | </div> |
266 | - <?php else: ?> |
|
266 | + <?php else { |
|
267 | + : ?> |
|
267 | 268 | <div class="icon-box"> |
268 | 269 | <span class="message-icon"> |
269 | 270 | <i class="fas fa-exclamation-circle"></i> |
270 | 271 | </span> |
271 | 272 | </div> |
272 | - <?php endif; ?> |
|
273 | + <?php endif; |
|
274 | +} |
|
275 | +?> |
|
273 | 276 | </div> |
274 | 277 | <button type="button" class="close" data-dismiss="modal" aria-label="Close"> |
275 | 278 | <span aria-hidden="true">×</span> |
@@ -67,7 +67,8 @@ discard block |
||
67 | 67 | </tbdoy> |
68 | 68 | </table> |
69 | 69 | </div> |
70 | - <?php else: ?> |
|
70 | + <?php else { |
|
71 | + : ?> |
|
71 | 72 | <div id="so-table-loading" class="so-datatables"> |
72 | 73 | <div class="lds-css ng-scope"> |
73 | 74 | <div class="lds-ripple"> |
@@ -76,7 +77,9 @@ discard block |
||
76 | 77 | </div> |
77 | 78 | </div> |
78 | 79 | </div> |
79 | - <?php endif; ?> |
|
80 | + <?php endif; |
|
81 | +} |
|
82 | +?> |
|
80 | 83 | <?php if (!empty($rule_list)) : ?> |
81 | 84 | <div id="so-table-container" class="so-datatables" style="display: none;"> |
82 | 85 | <table id="so-datalog" class="cell-border compact stripe responsive" cellspacing="0" width="100%"> |
@@ -42,8 +42,11 @@ discard block |
||
42 | 42 | <div class="nums"> |
43 | 43 | <?php if (!empty($filter_cookie)) : ?> |
44 | 44 | <a href="#" onclick="displayLogs('frequency');"><?php echo $filter_cookie; ?></a> |
45 | - <?php else : ?> |
|
46 | - <?php echo $filter_cookie; ?> |
|
45 | + <?php else { |
|
46 | + : ?> |
|
47 | + <?php echo $filter_cookie; |
|
48 | +} |
|
49 | +?> |
|
47 | 50 | <?php endif; ?> |
48 | 51 | </div> |
49 | 52 | <div class="note"><?php _e('panel', 'overview_note_cookie', 'Check whether visitors can create cookie by JavaScript.'); ?></div> |
@@ -58,8 +61,11 @@ discard block |
||
58 | 61 | <div class="nums"> |
59 | 62 | <?php if (!empty($filter_session)) : ?> |
60 | 63 | <a href="#" onclick="displayLogs('session');"><?php echo $filter_session; ?></a> |
61 | - <?php else : ?> |
|
62 | - <?php echo $filter_session; ?> |
|
64 | + <?php else { |
|
65 | + : ?> |
|
66 | + <?php echo $filter_session; |
|
67 | +} |
|
68 | +?> |
|
63 | 69 | <?php endif; ?> |
64 | 70 | </div> |
65 | 71 | <div class="note"><?php _e('panel', 'overview_note_session', 'Detect whether multiple sessions created by the same visitor.'); ?></div> |
@@ -74,8 +80,11 @@ discard block |
||
74 | 80 | <div class="nums"> |
75 | 81 | <?php if (!empty($filter_frequency)) : ?> |
76 | 82 | <a href="#" onclick="displayLogs('frequency');"><?php echo $filter_frequency; ?></a> |
77 | - <?php else : ?> |
|
78 | - <?php echo $filter_frequency; ?> |
|
83 | + <?php else { |
|
84 | + : ?> |
|
85 | + <?php echo $filter_frequency; |
|
86 | +} |
|
87 | +?> |
|
79 | 88 | <?php endif; ?> |
80 | 89 | </div> |
81 | 90 | <div class="note"><?php _e('panel', 'overview_note_frequency', 'Check how often does a visitor view the pages.'); ?></div> |
@@ -90,8 +99,11 @@ discard block |
||
90 | 99 | <div class="nums"> |
91 | 100 | <?php if (!empty($filter_referer)) : ?> |
92 | 101 | <a href="#" onclick="displayLogs('referer');"><?php echo $filter_referer; ?></a> |
93 | - <?php else : ?> |
|
94 | - <?php echo $filter_referer; ?> |
|
102 | + <?php else { |
|
103 | + : ?> |
|
104 | + <?php echo $filter_referer; |
|
105 | +} |
|
106 | +?> |
|
95 | 107 | <?php endif; ?> |
96 | 108 | </div> |
97 | 109 | <div class="note"><?php _e('panel', 'overview_note_referer', 'Check HTTP referrer information.'); ?></div> |
@@ -116,8 +128,11 @@ discard block |
||
116 | 128 | <div class="nums"> |
117 | 129 | <?php if (!empty($component_ip)) : ?> |
118 | 130 | <a href="#" onclick="displayLogs('ip');"><?php echo $component_ip; ?></a> |
119 | - <?php else : ?> |
|
120 | - <?php echo $component_ip; ?> |
|
131 | + <?php else { |
|
132 | + : ?> |
|
133 | + <?php echo $component_ip; |
|
134 | +} |
|
135 | +?> |
|
121 | 136 | <?php endif; ?> |
122 | 137 | </div> |
123 | 138 | <div class="note"><?php _e('panel', 'operation_note_ip', 'Advanced IP address mangement.'); ?></div> |
@@ -132,8 +147,11 @@ discard block |
||
132 | 147 | <div class="nums"> |
133 | 148 | <?php if (!empty($component_trustedbot)) : ?> |
134 | 149 | <a href="#" onclick="displayLogs('trustedbot');"><?php echo $component_trustedbot; ?></a> |
135 | - <?php else : ?> |
|
136 | - <?php echo $component_trustedbot; ?> |
|
150 | + <?php else { |
|
151 | + : ?> |
|
152 | + <?php echo $component_trustedbot; |
|
153 | +} |
|
154 | +?> |
|
137 | 155 | <?php endif; ?> |
138 | 156 | </div> |
139 | 157 | <div class="note"><?php _e('panel', 'operation_note_trustedbot', 'Allow popular search engines crawl your website.'); ?></div> |
@@ -148,8 +166,11 @@ discard block |
||
148 | 166 | <div class="nums"> |
149 | 167 | <?php if (!empty($component_header)) : ?> |
150 | 168 | <a href="#" onclick="displayLogs('header');"><?php echo $component_header; ?></a> |
151 | - <?php else : ?> |
|
152 | - <?php echo $component_header; ?> |
|
169 | + <?php else { |
|
170 | + : ?> |
|
171 | + <?php echo $component_header; |
|
172 | +} |
|
173 | +?> |
|
153 | 174 | <?php endif; ?> |
154 | 175 | </div> |
155 | 176 | <div class="note"><?php _e('panel', 'operation_note_header', 'Analyze header information from visitors.'); ?></div> |
@@ -164,8 +185,11 @@ discard block |
||
164 | 185 | <div class="nums"> |
165 | 186 | <?php if (!empty($component_rdns)) : ?> |
166 | 187 | <a href="#" onclick="displayLogs('rdns');"><?php echo $component_rdns; ?></a> |
167 | - <?php else : ?> |
|
168 | - <?php echo $component_rdns; ?> |
|
188 | + <?php else { |
|
189 | + : ?> |
|
190 | + <?php echo $component_rdns; |
|
191 | +} |
|
192 | +?> |
|
169 | 193 | <?php endif; ?> |
170 | 194 | </div> |
171 | 195 | <div class="note"><?php _e('panel', 'operation_note_rdns', 'Identify IP resolved hostname (RDNS) from visitors.'); ?></div> |
@@ -180,8 +204,11 @@ discard block |
||
180 | 204 | <div class="nums"> |
181 | 205 | <?php if (!empty($component_useragent)) : ?> |
182 | 206 | <a href="#" onclick="displayLogs('useragent');"><?php echo $component_useragent; ?></a> |
183 | - <?php else : ?> |
|
184 | - <?php echo $component_useragent; ?> |
|
207 | + <?php else { |
|
208 | + : ?> |
|
209 | + <?php echo $component_useragent; |
|
210 | +} |
|
211 | +?> |
|
185 | 212 | <?php endif; ?> |
186 | 213 | </div> |
187 | 214 | <div class="note"><?php _e('panel', 'operation_note_useragent', 'Analysis user-agent information from visitors.'); ?></div> |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | |
315 | 315 | foreach ($ipList as $ip) { |
316 | 316 | |
317 | - if (0 === strpos($this->kernel->getCurrentUrl(), $ip['url']) ) { |
|
317 | + if (0 === strpos($this->kernel->getCurrentUrl(), $ip['url'])) { |
|
318 | 318 | |
319 | 319 | if ('allow' === $ip['rule']) { |
320 | 320 | $allowedList[] = $ip['ip']; |
@@ -376,7 +376,7 @@ discard block |
||
376 | 376 | $this->kernel->setProperty( |
377 | 377 | 'deny_attempt_enable', |
378 | 378 | [ |
379 | - 'data_circle' => $setting['data_circle']['enable'], // false |
|
379 | + 'data_circle' => $setting['data_circle']['enable'], // false |
|
380 | 380 | 'system_firewall' => $setting['system_firewall']['enable'], // false |
381 | 381 | ] |
382 | 382 | ); |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | $this->kernel->setProperty( |
385 | 385 | 'deny_attempt_buffer', |
386 | 386 | [ |
387 | - 'data_circle' => $setting['data_circle']['buffer'], // 10 |
|
387 | + 'data_circle' => $setting['data_circle']['buffer'], // 10 |
|
388 | 388 | 'system_firewall' => $setting['system_firewall']['buffer'], // 10 |
389 | 389 | ] |
390 | 390 | ); |
@@ -429,8 +429,8 @@ discard block |
||
429 | 429 | |
430 | 430 | if ($sessionLimitSetting['enable']) { |
431 | 431 | |
432 | - $onlineUsers = $sessionLimitSetting['config']['count']; // default: 100 |
|
433 | - $alivePeriod = $sessionLimitSetting['config']['period']; // default: 300 |
|
432 | + $onlineUsers = $sessionLimitSetting['config']['count']; // default: 100 |
|
433 | + $alivePeriod = $sessionLimitSetting['config']['period']; // default: 300 |
|
434 | 434 | $isUniqueIp = $sessionLimitSetting['config']['unique_only']; // false |
435 | 435 | |
436 | 436 | $this->kernel->limitSession($onlineUsers, $alivePeriod, $isUniqueIp); |
@@ -453,7 +453,7 @@ discard block |
||
453 | 453 | |
454 | 454 | $lastResetTime = $cronjobSetting['config']['last_update']; |
455 | 455 | |
456 | - if (!empty($lastResetTime) ) { |
|
456 | + if (!empty($lastResetTime)) { |
|
457 | 457 | $lastResetTime = strtotime($lastResetTime); |
458 | 458 | } else { |
459 | 459 | // @codeCoverageIgnoreStart |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | ]; |
208 | 208 | |
209 | 209 | if (empty($dataRange[$this->type])) { |
210 | - if (preg_match('/past_([0-9]+)_days/', $this->type, $matches) ) { |
|
210 | + if (preg_match('/past_([0-9]+)_days/', $this->type, $matches)) { |
|
211 | 211 | $dayCount = $matches[1]; |
212 | 212 | $startDate = date('Ymd', strtotime('-' . $dayCount . ' days')); |
213 | 213 | $endDate = date('Ymd'); |
@@ -350,18 +350,18 @@ discard block |
||
350 | 350 | |
351 | 351 | $results['captcha_chart_string'] = ''; // string |
352 | 352 | $results['pageview_chart_string'] = ''; // string |
353 | - $results['captcha_success_count'] = 0; // integer |
|
354 | - $results['captcha_failure_count'] = 0; // integer |
|
355 | - $results['captcha_count'] = 0; // integer |
|
356 | - $results['pageview_count'] = 0; // integer |
|
357 | - $results['captcha_percentageage'] = 0; // integer |
|
358 | - $results['captcha_failure_percentage'] = 0; // integer |
|
359 | - $results['captcha_success_percentage'] = 0; // integer |
|
360 | - $results['action_ban_count'] = 0; // integer |
|
361 | - $results['action_temp_ban_count'] = 0; // integer |
|
362 | - $results['action_unban_count'] = 0; // integer |
|
363 | - $results['blacklist_count'] = 0; // integer |
|
364 | - $results['session_limit_count'] = 0; // integer |
|
353 | + $results['captcha_success_count'] = 0; // integer |
|
354 | + $results['captcha_failure_count'] = 0; // integer |
|
355 | + $results['captcha_count'] = 0; // integer |
|
356 | + $results['pageview_count'] = 0; // integer |
|
357 | + $results['captcha_percentageage'] = 0; // integer |
|
358 | + $results['captcha_failure_percentage'] = 0; // integer |
|
359 | + $results['captcha_success_percentage'] = 0; // integer |
|
360 | + $results['action_ban_count'] = 0; // integer |
|
361 | + $results['action_temp_ban_count'] = 0; // integer |
|
362 | + $results['action_unban_count'] = 0; // integer |
|
363 | + $results['blacklist_count'] = 0; // integer |
|
364 | + $results['session_limit_count'] = 0; // integer |
|
365 | 365 | |
366 | 366 | $ipdData = $this->getIpData(); |
367 | 367 | |
@@ -406,18 +406,18 @@ discard block |
||
406 | 406 | $results['label_chart_string'] = ''; // string |
407 | 407 | $results['captcha_chart_string'] = ''; // string |
408 | 408 | $results['pageview_chart_string'] = ''; // string |
409 | - $results['captcha_success_count'] = 0; // integer |
|
410 | - $results['captcha_failure_count'] = 0; // integer |
|
411 | - $results['captcha_count'] = 0; // integer |
|
412 | - $results['pageview_count'] = 0; // integer |
|
413 | - $results['captcha_percentageage'] = 0; // integer |
|
414 | - $results['captcha_failure_percentage'] = 0; // integer |
|
415 | - $results['captcha_success_percentage'] = 0; // integer |
|
416 | - $results['action_ban_count'] = 0; // integer |
|
417 | - $results['action_temp_ban_count'] = 0; // integer |
|
418 | - $results['action_unban_count'] = 0; // integer |
|
419 | - $results['blacklist_count'] = 0; // integer |
|
420 | - $results['session_limit_count'] = 0; // integer |
|
409 | + $results['captcha_success_count'] = 0; // integer |
|
410 | + $results['captcha_failure_count'] = 0; // integer |
|
411 | + $results['captcha_count'] = 0; // integer |
|
412 | + $results['pageview_count'] = 0; // integer |
|
413 | + $results['captcha_percentageage'] = 0; // integer |
|
414 | + $results['captcha_failure_percentage'] = 0; // integer |
|
415 | + $results['captcha_success_percentage'] = 0; // integer |
|
416 | + $results['action_ban_count'] = 0; // integer |
|
417 | + $results['action_temp_ban_count'] = 0; // integer |
|
418 | + $results['action_unban_count'] = 0; // integer |
|
419 | + $results['blacklist_count'] = 0; // integer |
|
420 | + $results['session_limit_count'] = 0; // integer |
|
421 | 421 | |
422 | 422 | if (!empty($periodData)) { |
423 | 423 | |
@@ -477,7 +477,7 @@ discard block |
||
477 | 477 | $ip = $log['ip']; |
478 | 478 | $sessionId = $log['session_id']; |
479 | 479 | |
480 | - $this->ipDetail[$t][$ip]['session_id'][$sessionId ] = 1; |
|
480 | + $this->ipDetail[$t][$ip]['session_id'][$sessionId] = 1; |
|
481 | 481 | |
482 | 482 | if ($logActionCode === self::LOG_TEMPORARILY_BAN) { |
483 | 483 | $this->periodDetail[$t][$k]['action_temp_ban_count']++; |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | $data = array_merge($data, $result); |
138 | 138 | } |
139 | 139 | |
140 | - $data['page_availability'] = $this->pageAvailability['logs'];; |
|
140 | + $data['page_availability'] = $this->pageAvailability['logs']; ; |
|
141 | 141 | |
142 | 142 | $data['page_url'] = $this->url('report/actionLog'); |
143 | 143 | |
@@ -209,11 +209,11 @@ discard block |
||
209 | 209 | private function operationTemplateVarsOfComponents(array $data = []): array |
210 | 210 | { |
211 | 211 | $data['components'] = [ |
212 | - 'Ip' => (!empty($this->kernel->component['Ip'])) ? true : false, |
|
212 | + 'Ip' => (!empty($this->kernel->component['Ip'])) ? true : false, |
|
213 | 213 | 'TrustedBot' => (!empty($this->kernel->component['TrustedBot'])) ? true : false, |
214 | - 'Header' => (!empty($this->kernel->component['Header'])) ? true : false, |
|
215 | - 'Rdns' => (!empty($this->kernel->component['Rdns'])) ? true : false, |
|
216 | - 'UserAgent' => (!empty($this->kernel->component['UserAgent'])) ? true : false, |
|
214 | + 'Header' => (!empty($this->kernel->component['Header'])) ? true : false, |
|
215 | + 'Rdns' => (!empty($this->kernel->component['Rdns'])) ? true : false, |
|
216 | + 'UserAgent' => (!empty($this->kernel->component['UserAgent'])) ? true : false, |
|
217 | 217 | ]; |
218 | 218 | |
219 | 219 | return $data; |