@@ -236,11 +236,11 @@ |
||
| 236 | 236 | private function overviewTemplateVarsOfComponents(array $data = []): array |
| 237 | 237 | { |
| 238 | 238 | $data['components'] = [ |
| 239 | - 'Ip' => (!empty($this->kernel->component['Ip'])) ? true : false, |
|
| 239 | + 'Ip' => (!empty($this->kernel->component['Ip'])) ? true : false, |
|
| 240 | 240 | 'TrustedBot' => (!empty($this->kernel->component['TrustedBot'])) ? true : false, |
| 241 | - 'Header' => (!empty($this->kernel->component['Header'])) ? true : false, |
|
| 242 | - 'Rdns' => (!empty($this->kernel->component['Rdns'])) ? true : false, |
|
| 243 | - 'UserAgent' => (!empty($this->kernel->component['UserAgent'])) ? true : false, |
|
| 241 | + 'Header' => (!empty($this->kernel->component['Header'])) ? true : false, |
|
| 242 | + 'Rdns' => (!empty($this->kernel->component['Rdns'])) ? true : false, |
|
| 243 | + 'UserAgent' => (!empty($this->kernel->component['UserAgent'])) ? true : false, |
|
| 244 | 244 | ]; |
| 245 | 245 | |
| 246 | 246 | return $data; |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | $data['period_data'] = $ipDetailsCachedData['period_data']; |
| 128 | 128 | $lastCachedTime = date('Y-m-d H:i:s', $ipDetailsCachedData['time']); |
| 129 | 129 | |
| 130 | - if ('today' === $type ) { |
|
| 130 | + if ('today' === $type) { |
|
| 131 | 131 | $ipDetailsCachedData = $logCacheHandler->get('past_seven_hours'); |
| 132 | 132 | $data['past_seven_hours'] = $ipDetailsCachedData['period_data']; |
| 133 | 133 | } |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | |
| 142 | 142 | $logCacheHandler->save($type, $data); |
| 143 | 143 | |
| 144 | - if ('today' === $type ) { |
|
| 144 | + if ('today' === $type) { |
|
| 145 | 145 | $this->parser->prepare('past_seven_hours'); |
| 146 | 146 | $data['past_seven_hours'] = $this->parser->getParsedPeriodData(); |
| 147 | 147 | |
@@ -172,11 +172,11 @@ discard block |
||
| 172 | 172 | private function operationTemplateVarsOfComponents(array $data = []): array |
| 173 | 173 | { |
| 174 | 174 | $data['components'] = [ |
| 175 | - 'Ip' => (!empty($this->kernel->component['Ip'])) ? true : false, |
|
| 175 | + 'Ip' => (!empty($this->kernel->component['Ip'])) ? true : false, |
|
| 176 | 176 | 'TrustedBot' => (!empty($this->kernel->component['TrustedBot'])) ? true : false, |
| 177 | - 'Header' => (!empty($this->kernel->component['Header'])) ? true : false, |
|
| 178 | - 'Rdns' => (!empty($this->kernel->component['Rdns'])) ? true : false, |
|
| 179 | - 'UserAgent' => (!empty($this->kernel->component['UserAgent'])) ? true : false, |
|
| 177 | + 'Header' => (!empty($this->kernel->component['Header'])) ? true : false, |
|
| 178 | + 'Rdns' => (!empty($this->kernel->component['Rdns'])) ? true : false, |
|
| 179 | + 'UserAgent' => (!empty($this->kernel->component['UserAgent'])) ? true : false, |
|
| 180 | 180 | ]; |
| 181 | 181 | |
| 182 | 182 | return $data; |
@@ -304,9 +304,12 @@ |
||
| 304 | 304 | <div> |
| 305 | 305 | <?php if ($this->mode === 'demo') : ?> |
| 306 | 306 | <code id="code1" style="display: none">* * * * * root bash your_project_folder/vendor/shieldon/bin/iptables_bridge.sh --watch=your_watching_folder >> /var/log/shieldon.log 2>&1</code> |
| 307 | - <?php else: ?> |
|
| 307 | + <?php else { |
|
| 308 | + : ?> |
|
| 308 | 309 | <code id="code1" style="display: none">* * * * * root bash <?php echo realpath(__DIR__ . '/../../../bin/iptables_bridge.sh') ?> --watch=<span id="iptables-watch-folder"></span> >> /var/log/shieldon.log 2>&1</code> |
| 309 | - <?php endif; ?> |
|
| 310 | + <?php endif; |
|
| 311 | +} |
|
| 312 | +?> |
|
| 310 | 313 | |
| 311 | 314 | <textarea id="code2" class="form-control" rows="4" style="font-size: 12px; font-family: monospace;"></textarea> |
| 312 | 315 | </div><br /> |
@@ -100,10 +100,10 @@ |
||
| 100 | 100 | $record['session_id'] = substr($record['session_id'], 0, 4); |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | - $data[0] = $record['ip'] ?? 'null'; |
|
| 104 | - $data[1] = $record['session_id'] ?? 'null'; |
|
| 103 | + $data[0] = $record['ip'] ?? 'null'; |
|
| 104 | + $data[1] = $record['session_id'] ?? 'null'; |
|
| 105 | 105 | $data[2] = $record['action_code'] ?? 'null'; |
| 106 | - $data[3] = $record['timesamp'] ?? 'null'; |
|
| 106 | + $data[3] = $record['timesamp'] ?? 'null'; |
|
| 107 | 107 | |
| 108 | 108 | file_put_contents($this->filePath, implode(',', $data) . "\n", FILE_APPEND | LOCK_EX); |
| 109 | 109 | } |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | </div> |
| 40 | 40 | <div class="board-field right"> |
| 41 | 41 | <div class="heading"><?php _e('panel', 'table_heading_period', 'Period'); ?></div> |
| 42 | - <div class="nums"><?php echo number_format($session_limit_period ); ?></div> |
|
| 42 | + <div class="nums"><?php echo number_format($session_limit_period); ?></div> |
|
| 43 | 43 | <div class="note"><?php _e('panel', 'table_note_period', 'Keep-alive period. (minutes)'); ?></div> |
| 44 | 44 | </div> |
| 45 | 45 | </div> |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | </div> |
| 50 | 50 | <div class="board-field right"> |
| 51 | 51 | <div class="heading"><?php _e('panel', 'table_heading_online', 'Online'); ?></div> |
| 52 | - <div class="nums"><?php echo number_format($online_count ); ?></div> |
|
| 52 | + <div class="nums"><?php echo number_format($online_count); ?></div> |
|
| 53 | 53 | <div class="note"><?php _e('panel', 'table_note_online', 'Online session amount.'); ?></div> |
| 54 | 54 | </div> |
| 55 | 55 | </div> |
@@ -89,14 +89,14 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | $remainsTime = $expires - (time() - $sessionInfo['time']); |
| 91 | 91 | |
| 92 | - if ($remainsTime < 1 ) { |
|
| 92 | + if ($remainsTime < 1) { |
|
| 93 | 93 | $remainsTime = 0; |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - if ($i < $session_limit_count ) { |
|
| 96 | + if ($i < $session_limit_count) { |
|
| 97 | 97 | $satusName = __('panel', 'table_text_allowable', 'Allowable'); |
| 98 | 98 | |
| 99 | - if ($remainsTime < 1 ) { |
|
| 99 | + if ($remainsTime < 1) { |
|
| 100 | 100 | $satusName = __('panel', 'table_text_expired', 'Expired'); |
| 101 | 101 | } |
| 102 | 102 | } else { |
@@ -58,20 +58,20 @@ |
||
| 58 | 58 | </thead> |
| 59 | 59 | <tbody> |
| 60 | 60 | <?php foreach ($ip_log_list as $ipInfo) : ?> |
| 61 | - <?php $logData = is_array($ipInfo['log_data']) ? $ipInfo['log_data'] : json_decode($ipInfo['log_data'], true ); ?> |
|
| 61 | + <?php $logData = is_array($ipInfo['log_data']) ? $ipInfo['log_data'] : json_decode($ipInfo['log_data'], true); ?> |
|
| 62 | 62 | <?php |
| 63 | 63 | |
| 64 | 64 | $text_warning = ''; |
| 65 | 65 | |
| 66 | - if ($logData['pageviews_m'] > 6 || $logData['pageviews_h'] > 50 || $logData['pageviews_d'] > 100 ) { |
|
| 66 | + if ($logData['pageviews_m'] > 6 || $logData['pageviews_h'] > 50 || $logData['pageviews_d'] > 100) { |
|
| 67 | 67 | $text_warning = '<span class="so-text-warning"><i class="fas fa-exclamation-triangle"></i></span>'; |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - if ($logData['flag_js_cookie'] > 2 || $logData['flag_multi_session'] > 2 || $logData['flag_empty_referer'] > 2 ) { |
|
| 70 | + if ($logData['flag_js_cookie'] > 2 || $logData['flag_multi_session'] > 2 || $logData['flag_empty_referer'] > 2) { |
|
| 71 | 71 | $text_warning = '<span class="so-text-warning"><i class="fas fa-exclamation-triangle"></i></span>'; |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - if ($logData['flag_js_cookie'] > 3 || $logData['flag_multi_session'] > 3 || $logData['flag_empty_referer'] > 3 ) { |
|
| 74 | + if ($logData['flag_js_cookie'] > 3 || $logData['flag_multi_session'] > 3 || $logData['flag_empty_referer'] > 3) { |
|
| 75 | 75 | $text_warning = '<span class="so-text-danger"><i class="fas fa-exclamation-triangle"></i></span>'; |
| 76 | 76 | } |
| 77 | 77 | ?> |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | public static function get(array $setting): MessengerInterface |
| 31 | 31 | { |
| 32 | 32 | $botToken = $setting['config']['bot_token'] ?? ''; |
| 33 | - $channel = $setting['config']['channel'] ?? ''; |
|
| 33 | + $channel = $setting['config']['channel'] ?? ''; |
|
| 34 | 34 | |
| 35 | 35 | return new Slack($botToken, $channel); |
| 36 | 36 | } |
@@ -30,10 +30,10 @@ |
||
| 30 | 30 | */ |
| 31 | 31 | public static function get(array $setting): MessengerInterface |
| 32 | 32 | { |
| 33 | - $apiKey = $setting['config']['api_key'] ?? ''; |
|
| 33 | + $apiKey = $setting['config']['api_key'] ?? ''; |
|
| 34 | 34 | $domain = $setting['config']['domain_name'] ?? ''; |
| 35 | - $sender = $setting['config']['sender'] ?? ''; |
|
| 36 | - $recipients = $setting['config']['recipients'] ?? []; |
|
| 35 | + $sender = $setting['config']['sender'] ?? ''; |
|
| 36 | + $recipients = $setting['config']['recipients'] ?? []; |
|
| 37 | 37 | |
| 38 | 38 | $instance = new Mailgun($apiKey, $domain); |
| 39 | 39 | $instance->setSubject(__('core', 'messenger_text_mail_subject')); |
@@ -29,10 +29,10 @@ |
||
| 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 | } |