Passed
Branch master (334f84)
by
unknown
03:14
created
src/plugins/onTick/evemails.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
         $cacheClr = $baseUnix - 13500;
113 113
 
114 114
         //Set timer for next key based on number of keys
115
-        $nextKey = (1900 / (int)$this->numberOfKeys) + time();
115
+        $nextKey = (1900 / (int) $this->numberOfKeys) + time();
116 116
         $nextKeyTime = gmdate('Y-m-d H:i:s', $nextKey);
117 117
         setPermCache('mailLastChecked', $nextKey);
118 118
 
Please login to merge, or discard this patch.
src/plugins/onTick/notifications.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
                 $this->fuelChannel = $this->toDiscordChannel;
126 126
             }
127 127
             //Set timer for next key based on number of keys
128
-            $nextKey = (1900 / (int)$this->numberOfKeys) + time();
128
+            $nextKey = (1900 / (int) $this->numberOfKeys) + time();
129 129
             $nextKeyTime = gmdate('Y-m-d H:i:s', $nextKey);
130 130
             setPermCache('notificationsLastChecked', $nextKey);
131 131
             //Set cache timer for api key
Please login to merge, or discard this patch.
src/plugins/admin/setAvatar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
             $roles = $member->roles;
72 72
             foreach ($roles as $role) {
73 73
                 if (in_array(strtolower($role->name), $adminRoles, true)) {
74
-                    $avatarURL = strtolower((string)$data['messageString']);
74
+                    $avatarURL = strtolower((string) $data['messageString']);
75 75
                     $ch = curl_init($avatarURL);
76 76
                     if (substr($avatarURL, -4) === '.jpg') {
77 77
                         $fp = fopen('/tmp/avatar.jpg', 'wb');
Please login to merge, or discard this patch.
src/plugins/onMessage/motd.php 1 patch
Indentation   +69 added lines, -69 removed lines patch added patch discarded remove patch
@@ -25,80 +25,80 @@
 block discarded – undo
25 25
 /**
26 26
  * @property  message
27 27
  */
28
-	class motd {
29
-		public $config;
30
-		public $discord;
31
-		public $logger;
32
-		public $message;
33
-		private $excludeChannel;
34
-		private $triggers;
35
-		public function init($config, $discord, $logger) {
36
-			$this->config = $config;
37
-			$this->discord = $discord;
38
-			$this->logger = $logger;
39
-			$this->excludeChannel = $this->config['bot']['restrictedChannels'];
40
-			$this->triggers[] = $this->config['bot']['trigger'] . 'motd';
41
-			$this->triggers[] = $this->config['bot']['trigger'] . 'Motd';
42
-			$this->triggers[] = $this->config['bot']['trigger'] . 'MOTD';
43
-			$this->keyID = $config['plugins']['motd']['keyID'];
44
-			$this->vCode = $config['plugins']['motd']['vCode'];
45
-			$this->characterID = $config['plugins']['motd']['characterID'];
46
-			$this->channelname = $config['plugins']['motd']['channelname'];
47
-		}
48
-		public function onMessage($msgData, $message) {
49
-			$channelID = (int) $msgData['message']['channelID'];
50
-			if (in_array($channelID, $this->excludeChannel, true)) {
51
-				return null;
52
-			}
53
-			$this->message = $message;
54
-			$user = $msgData['message']['from'];
55
-			$message = $msgData['message']['message'];
56
-			$data = command($message, $this->information() ['trigger'], $this->config['bot']['trigger']);
57
-			if (isset($data['trigger'])) {
58
-				$keyID = $this->keyID;
59
-				$vCode = $this->vCode;
60
-				$characterID = $this->characterID;
61
-				$channelname = $this->channelname;
28
+    class motd {
29
+        public $config;
30
+        public $discord;
31
+        public $logger;
32
+        public $message;
33
+        private $excludeChannel;
34
+        private $triggers;
35
+        public function init($config, $discord, $logger) {
36
+            $this->config = $config;
37
+            $this->discord = $discord;
38
+            $this->logger = $logger;
39
+            $this->excludeChannel = $this->config['bot']['restrictedChannels'];
40
+            $this->triggers[] = $this->config['bot']['trigger'] . 'motd';
41
+            $this->triggers[] = $this->config['bot']['trigger'] . 'Motd';
42
+            $this->triggers[] = $this->config['bot']['trigger'] . 'MOTD';
43
+            $this->keyID = $config['plugins']['motd']['keyID'];
44
+            $this->vCode = $config['plugins']['motd']['vCode'];
45
+            $this->characterID = $config['plugins']['motd']['characterID'];
46
+            $this->channelname = $config['plugins']['motd']['channelname'];
47
+        }
48
+        public function onMessage($msgData, $message) {
49
+            $channelID = (int) $msgData['message']['channelID'];
50
+            if (in_array($channelID, $this->excludeChannel, true)) {
51
+                return null;
52
+            }
53
+            $this->message = $message;
54
+            $user = $msgData['message']['from'];
55
+            $message = $msgData['message']['message'];
56
+            $data = command($message, $this->information() ['trigger'], $this->config['bot']['trigger']);
57
+            if (isset($data['trigger'])) {
58
+                $keyID = $this->keyID;
59
+                $vCode = $this->vCode;
60
+                $characterID = $this->characterID;
61
+                $channelname = $this->channelname;
62 62
 
63 63
         $urlChar = "https://api.eveonline.com/char/ChatChannels.xml.aspx?keyID=$keyID&vCode=$vCode&characterID=$characterID";
64
-				$data = file_get_contents($urlChar);
65
-				$list = new SimpleXMLElement($data);
64
+                $data = file_get_contents($urlChar);
65
+                $list = new SimpleXMLElement($data);
66 66
 				
67 67
 				
68
-				foreach ($list->result->rowset->row as $row) {
69
-					$channeln = $row["displayName"];
68
+                foreach ($list->result->rowset->row as $row) {
69
+                    $channeln = $row["displayName"];
70 70
 					
71
-					if ($channeln == $channelname) {
72
-					//scrub the motd, then break it into 1900 chars or less. Limit is 2000 and want to leave room for the name of the person being replied too
73
-					$comment = $row["motd"];
74
-          $comment = str_replace("<BR>", "\n", $comment);
75
-          $comment = str_replace("<br>", "\n", $comment);
76
-          $comment = str_replace("<u>", "__", $comment);
77
-          $comment = str_replace("</u>", "__", $comment);	
78
-          $comment = str_replace("<b>", "**", $comment);	
79
-          $comment = str_replace("</b>", "**", $comment);	
80
-          $comment = str_replace("<i>", "*", $comment);	
81
-          $comment = str_replace("</i>", "*", $comment);
82
-					$comment = str_replace("&amp;", "&", $comment);
83
-          $comment = strip_tags($comment);
84
-					$comment2 = str_split($comment, 1900);
71
+                    if ($channeln == $channelname) {
72
+                    //scrub the motd, then break it into 1900 chars or less. Limit is 2000 and want to leave room for the name of the person being replied too
73
+                    $comment = $row["motd"];
74
+            $comment = str_replace("<BR>", "\n", $comment);
75
+            $comment = str_replace("<br>", "\n", $comment);
76
+            $comment = str_replace("<u>", "__", $comment);
77
+            $comment = str_replace("</u>", "__", $comment);	
78
+            $comment = str_replace("<b>", "**", $comment);	
79
+            $comment = str_replace("</b>", "**", $comment);	
80
+            $comment = str_replace("<i>", "*", $comment);	
81
+            $comment = str_replace("</i>", "*", $comment);
82
+                    $comment = str_replace("&amp;", "&", $comment);
83
+            $comment = strip_tags($comment);
84
+                    $comment2 = str_split($comment, 1900);
85 85
 					
86
-					$this->message->reply("\n $comment2[0]");
87
-						if (!empty($comment2[1])) {
88
-							$this->message->reply("\n $comment2[1]");
89
-						}
90
-						if (!empty($comment2[2])) {
91
-							$this->message->reply("\n $comment2[2]");
92
-						}
93
-						if (!empty($comment2[3])) {
94
-							$this->message->reply("\n $comment2[3]");
95
-						}
96
-					}
97
-				}
98
-			}
99
-		}
100
-		public function information() {
86
+                    $this->message->reply("\n $comment2[0]");
87
+                        if (!empty($comment2[1])) {
88
+                            $this->message->reply("\n $comment2[1]");
89
+                        }
90
+                        if (!empty($comment2[2])) {
91
+                            $this->message->reply("\n $comment2[2]");
92
+                        }
93
+                        if (!empty($comment2[3])) {
94
+                            $this->message->reply("\n $comment2[3]");
95
+                        }
96
+                    }
97
+                }
98
+            }
99
+        }
100
+        public function information() {
101 101
             return array('name' => 'motd', 'trigger' => $this->triggers, 'information' => 'Displays the MOTD, useful for seeing information displayed there when not in-game.');
102
-		}
103
-	}
102
+        }
103
+    }
104 104
 ?>
Please login to merge, or discard this patch.
Dramiel.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,8 @@
 block discarded – undo
57 57
 //Check we are not running on a 32bit platform
58 58
 if(PHP_INT_SIZE == 4)
59 59
 {
60
-	$logger->error('32bit PHP found, if you are running a 64bit OS please install 64bit PHP');
61
-	die();
60
+    $logger->error('32bit PHP found, if you are running a 64bit OS please install 64bit PHP');
61
+    die();
62 62
 }
63 63
 
64 64
 // Require the config
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 GLOBAL $logger;
56 56
 
57 57
 //Check we are not running on a 32bit platform
58
-if(PHP_INT_SIZE == 4)
58
+if (PHP_INT_SIZE == 4)
59 59
 {
60 60
 	$logger->error('32bit PHP found, if you are running a 64bit OS please install 64bit PHP');
61 61
 	die();
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
                         clearQueuedMessages($id);
207 207
                         continue;
208 208
                     }
209
-                    $channel = $guild->channels->get('id', (int)$queuedMessage['channel']);
209
+                    $channel = $guild->channels->get('id', (int) $queuedMessage['channel']);
210 210
                     //Check if channel is bad
211 211
                     if (null === $channel) {
212 212
                         $logger->addInfo("QueueProcessing Error- Item #{$id} : Channel provided is incorrect, removing it from the queue");
Please login to merge, or discard this patch.
src/plugins/onTick/getKillmails.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@
 block discarded – undo
197 197
                 if ($i < 10) {
198 198
                     $killID = $kill['killID'];
199 199
                     //check if mail is old
200
-                    if ((int)$killID <= (int)$oldID) {
200
+                    if ((int) $killID <= (int) $oldID) {
201 201
                         continue;
202 202
                     }
203 203
                     //save highest killID for cache
Please login to merge, or discard this patch.
src/plugins/onTick/authCheck.php 3 patches
Indentation   +73 added lines, -73 removed lines patch added patch discarded remove patch
@@ -174,68 +174,68 @@  discard block
 block discarded – undo
174 174
 
175 175
         if ($result->num_rows >= 1) {
176 176
             while ($rows = $result->fetch_assoc()) {
177
-				$charID = $rows['characterID'];
178
-				$discordID = $rows['discordID'];
179
-				$role = $rows['role'];
180
-				$member = $guild->members->get('id', $discordID);
181
-				$eveName = $rows['eveName'];
182
-				//Check if member has roles
183
-				if (null === @$member->roles) {
184
-					continue;
185
-				}
186
-
187
-				//Auth things
188
-				$character = characterDetails($charID);
189
-				//if issue with esi, skip
190
-				$timeout = 0;
191
-				while (null === $character) { //try 10 times to pull characterDetails
192
-					if ($timeout > 9) {
193
-						continue;
194
-					}
195
-					else{
196
-						$character = characterDetails($charID);
197
-						$timeout++;
198
-					}
199
-				}
200
-				$corporationID = $character['corporation_id'];
201
-				$corporationDetails = corpDetails($corporationID);
202
-				$timeout = 0;
203
-				while (null === $corporationDetails) { //try 10 times to pull corporationDetails
204
-					if ($timeout > 9) {
205
-						continue;
206
-					}
207
-					else{
208
-						$corporationDetails = corpDetails($corporationID);
209
-						$timeout++;
210
-					}
211
-				}
212
-				$allianceID = @$corporationDetails['alliance_id'];
213
-				//check if user authed based on standings
214
-				$standings = null;
215
-				if ($role === 'blue' || 'neut' || 'red') {
216
-					$allianceContacts = getContacts($allianceID);
217
-					$corpContacts = getContacts($corporationID);
218
-					if ($role === 'blue' && ((int) $allianceContacts['standing'] === 5 || 10 || (int) $corpContacts['standing'] === 5 || 10)) {
219
-						$standings = 1;
220
-					}
221
-					if ($role === 'red' && ((int) $allianceContacts['standing'] === -5 || -10 || (int) $corpContacts['standing'] === -5 || -10)) {
222
-						$standings = 1;
223
-					}
224
-					if ($role === 'neut' && ((int) $allianceContacts['standing'] === 0 || (int) $corpContacts['standing'] === 0 || (@(int) $allianceContacts['standings'] === null || '' && @(int) $corpContacts['standings'] === null || ''))) {
225
-						$standings = 1;
226
-					}
227
-				}
228
-				if (!in_array((int) $allianceID, $allianceArray) && !in_array((int) $corporationID, $corpArray) && null === $standings) {
229
-					// Deactivate user in database
230
-					$sql = "UPDATE authUsers SET active='no' WHERE discordID='$discordID'";
231
-					$this->logger->addInfo("AuthCheck: {$eveName} account has been deactivated as they are no longer in a correct corp/alliance.");
232
-					$conn->query($sql);
233
-					continue;
234
-				}
235
-
236
-				$nextCheck = time() + 10800;
237
-				setPermCache('permsLastChecked', $nextCheck);
238
-			}
177
+                $charID = $rows['characterID'];
178
+                $discordID = $rows['discordID'];
179
+                $role = $rows['role'];
180
+                $member = $guild->members->get('id', $discordID);
181
+                $eveName = $rows['eveName'];
182
+                //Check if member has roles
183
+                if (null === @$member->roles) {
184
+                    continue;
185
+                }
186
+
187
+                //Auth things
188
+                $character = characterDetails($charID);
189
+                //if issue with esi, skip
190
+                $timeout = 0;
191
+                while (null === $character) { //try 10 times to pull characterDetails
192
+                    if ($timeout > 9) {
193
+                        continue;
194
+                    }
195
+                    else{
196
+                        $character = characterDetails($charID);
197
+                        $timeout++;
198
+                    }
199
+                }
200
+                $corporationID = $character['corporation_id'];
201
+                $corporationDetails = corpDetails($corporationID);
202
+                $timeout = 0;
203
+                while (null === $corporationDetails) { //try 10 times to pull corporationDetails
204
+                    if ($timeout > 9) {
205
+                        continue;
206
+                    }
207
+                    else{
208
+                        $corporationDetails = corpDetails($corporationID);
209
+                        $timeout++;
210
+                    }
211
+                }
212
+                $allianceID = @$corporationDetails['alliance_id'];
213
+                //check if user authed based on standings
214
+                $standings = null;
215
+                if ($role === 'blue' || 'neut' || 'red') {
216
+                    $allianceContacts = getContacts($allianceID);
217
+                    $corpContacts = getContacts($corporationID);
218
+                    if ($role === 'blue' && ((int) $allianceContacts['standing'] === 5 || 10 || (int) $corpContacts['standing'] === 5 || 10)) {
219
+                        $standings = 1;
220
+                    }
221
+                    if ($role === 'red' && ((int) $allianceContacts['standing'] === -5 || -10 || (int) $corpContacts['standing'] === -5 || -10)) {
222
+                        $standings = 1;
223
+                    }
224
+                    if ($role === 'neut' && ((int) $allianceContacts['standing'] === 0 || (int) $corpContacts['standing'] === 0 || (@(int) $allianceContacts['standings'] === null || '' && @(int) $corpContacts['standings'] === null || ''))) {
225
+                        $standings = 1;
226
+                    }
227
+                }
228
+                if (!in_array((int) $allianceID, $allianceArray) && !in_array((int) $corporationID, $corpArray) && null === $standings) {
229
+                    // Deactivate user in database
230
+                    $sql = "UPDATE authUsers SET active='no' WHERE discordID='$discordID'";
231
+                    $this->logger->addInfo("AuthCheck: {$eveName} account has been deactivated as they are no longer in a correct corp/alliance.");
232
+                    $conn->query($sql);
233
+                    continue;
234
+                }
235
+
236
+                $nextCheck = time() + 10800;
237
+                setPermCache('permsLastChecked', $nextCheck);
238
+            }
239 239
         }
240 240
         $nextCheck = time() + 10800;
241 241
         setPermCache('permsLastChecked', $nextCheck);
@@ -386,17 +386,17 @@  discard block
 block discarded – undo
386 386
 
387 387
                 //corp ticker
388 388
                 if ($this->corpTickers === 'true') {
389
-					$timeout = 0;
390
-					$character = characterDetails($charID);
391
-					while (null === $character) { //try 10 times to pull characterDetails
392
-						if ($timeout > 9) {
393
-							continue;
394
-						}
395
-						else{
396
-							$character = characterDetails($charID);
397
-							$timeout++;
398
-						}
399
-					}
389
+                    $timeout = 0;
390
+                    $character = characterDetails($charID);
391
+                    while (null === $character) { //try 10 times to pull characterDetails
392
+                        if ($timeout > 9) {
393
+                            continue;
394
+                        }
395
+                        else{
396
+                            $character = characterDetails($charID);
397
+                            $timeout++;
398
+                        }
399
+                    }
400 400
                     if (!array_key_exists('corporation_id', $character)) {
401 401
                         continue;
402 402
                     }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
 					if ($timeout > 9) {
193 193
 						continue;
194 194
 					}
195
-					else{
195
+					else {
196 196
 						$character = characterDetails($charID);
197 197
 						$timeout++;
198 198
 					}
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
 					if ($timeout > 9) {
205 205
 						continue;
206 206
 					}
207
-					else{
207
+					else {
208 208
 						$corporationDetails = corpDetails($corporationID);
209 209
 						$timeout++;
210 210
 					}
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
 						if ($timeout > 9) {
393 393
 							continue;
394 394
 						}
395
-						else{
395
+						else {
396 396
 							$character = characterDetails($charID);
397 397
 							$timeout++;
398 398
 						}
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -191,8 +191,7 @@  discard block
 block discarded – undo
191 191
 				while (null === $character) { //try 10 times to pull characterDetails
192 192
 					if ($timeout > 9) {
193 193
 						continue;
194
-					}
195
-					else{
194
+					} else{
196 195
 						$character = characterDetails($charID);
197 196
 						$timeout++;
198 197
 					}
@@ -203,8 +202,7 @@  discard block
 block discarded – undo
203 202
 				while (null === $corporationDetails) { //try 10 times to pull corporationDetails
204 203
 					if ($timeout > 9) {
205 204
 						continue;
206
-					}
207
-					else{
205
+					} else{
208 206
 						$corporationDetails = corpDetails($corporationID);
209 207
 						$timeout++;
210 208
 					}
@@ -391,8 +389,7 @@  discard block
 block discarded – undo
391 389
 					while (null === $character) { //try 10 times to pull characterDetails
392 390
 						if ($timeout > 9) {
393 391
 							continue;
394
-						}
395
-						else{
392
+						} else{
396 393
 							$character = characterDetails($charID);
397 394
 							$timeout++;
398 395
 						}
Please login to merge, or discard this patch.