shibdib /
Dramiel
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | <?php |
||
| 2 | /** |
||
| 3 | * The MIT License (MIT) |
||
| 4 | * |
||
| 5 | * Copyright (c) 2016 Robert Sardinia |
||
| 6 | * |
||
| 7 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
||
| 8 | * of this software and associated documentation files (the "Software"), to deal |
||
| 9 | * in the Software without restriction, including without limitation the rights |
||
| 10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||
| 11 | * copies of the Software, and to permit persons to whom the Software is |
||
| 12 | * furnished to do so, subject to the following conditions: |
||
| 13 | * |
||
| 14 | * The above copyright notice and this permission notice shall be included in all |
||
| 15 | * copies or substantial portions of the Software. |
||
| 16 | * |
||
| 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||
| 18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||
| 19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||
| 20 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||
| 21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||
| 22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
||
| 23 | * SOFTWARE. |
||
| 24 | */ |
||
| 25 | use discord\discord; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Class auth |
||
| 29 | */ |
||
| 30 | class auth |
||
| 31 | { |
||
| 32 | public $config; |
||
| 33 | public $discord; |
||
| 34 | public $logger; |
||
| 35 | private $excludeChannel; |
||
| 36 | private $nameEnforce; |
||
| 37 | private $db; |
||
| 38 | private $dbUser; |
||
| 39 | private $dbPass; |
||
| 40 | private $dbName; |
||
| 41 | private $ssoUrl; |
||
| 42 | private $corpTickers; |
||
| 43 | private $authGroups; |
||
| 44 | private $standingsBased; |
||
| 45 | private $guild; |
||
| 46 | private $triggers; |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @param $config |
||
| 50 | * @param $discord |
||
| 51 | * @param $logger |
||
| 52 | */ |
||
| 53 | public function init($config, $discord, $logger) |
||
| 54 | { |
||
| 55 | $this->config = $config; |
||
| 56 | $this->discord = $discord; |
||
| 57 | $this->logger = $logger; |
||
| 58 | $this->db = $config['database']['host']; |
||
| 59 | $this->dbUser = $config['database']['user']; |
||
| 60 | $this->dbPass = $config['database']['pass']; |
||
| 61 | $this->dbName = $config['database']['database']; |
||
| 62 | $this->corpTickers = $config['plugins']['auth']['corpTickers']; |
||
| 63 | $this->nameEnforce = $config['plugins']['auth']['nameEnforce']; |
||
| 64 | $this->ssoUrl = $config['plugins']['auth']['url']; |
||
| 65 | $this->excludeChannel = $this->config['bot']['restrictedChannels']; |
||
| 66 | $this->authGroups = $config['plugins']['auth']['authGroups']; |
||
| 67 | $this->standingsBased = $config['plugins']['auth']['standings']['enabled']; |
||
| 68 | $this->guild = $config['bot']['guild']; |
||
| 69 | $this->triggers[] = $this->config['bot']['trigger'] . 'auth'; |
||
| 70 | $this->triggers[] = $this->config['bot']['trigger'] . 'Auth'; |
||
| 71 | } |
||
| 72 | |||
| 73 | /** |
||
| 74 | * @param $msgData |
||
| 75 | * @param $message |
||
| 76 | * @return null |
||
| 77 | */ |
||
| 78 | public function onMessage($msgData, $message) |
||
| 79 | { |
||
| 80 | $channelID = (int) $msgData['message']['channelID']; |
||
| 81 | |||
| 82 | if (in_array($channelID, $this->excludeChannel, true)) { |
||
| 83 | return null; |
||
| 84 | } |
||
| 85 | |||
| 86 | $this->message = $message; |
||
| 87 | $userID = $msgData['message']['fromID']; |
||
| 88 | $userName = $msgData['message']['from']; |
||
| 89 | $message = $msgData['message']['message']; |
||
| 90 | $guildID = $this->guild; |
||
| 91 | $guild = $this->discord->guilds->get('id', $guildID); |
||
| 92 | $data = command($message, $this->information()['trigger'], $this->config['bot']['trigger']); |
||
| 93 | if (isset($data['trigger'])) { |
||
| 94 | |||
| 95 | // If config is outdated |
||
| 96 | if (null === $this->authGroups) { |
||
| 97 | $this->message->reply('**Failure:** Please update the bots config to the latest version.'); |
||
| 98 | return null; |
||
| 99 | } |
||
| 100 | |||
| 101 | $code = $data['messageString']; |
||
| 102 | $result = selectPending($this->db, $this->dbUser, $this->dbPass, $this->dbName, $code); |
||
| 103 | |||
| 104 | if (strlen($code) < 12) { |
||
| 105 | $this->message->reply('Invalid Code, check ' . $this->config['bot']['trigger'] . 'help auth for more info.'); |
||
| 106 | return null; |
||
| 107 | } |
||
| 108 | |||
| 109 | while ($rows = $result->fetch_assoc()) { |
||
| 110 | $charID = (int) $rows['characterID']; |
||
| 111 | $corpID = (int) $rows['corporationID']; |
||
| 112 | $allianceID = (int) $rows['allianceID']; |
||
| 113 | |||
| 114 | //If corp is new store in DB |
||
| 115 | $corpInfo = getCorpInfo($corpID); |
||
| 116 | if (null === $corpInfo) { |
||
| 117 | $corpDetails = corpDetails($corpID); |
||
| 118 | if (null === $corpDetails) { // Make sure it's always set. |
||
| 119 | $this->message->reply('**Failure:** Unable to auth at this time, ESI is down. Please try again later.'); |
||
| 120 | return null; |
||
| 121 | } |
||
| 122 | $corpTicker = $corpDetails['ticker']; |
||
| 123 | $corpName = (string) $corpDetails['corporation_name']; |
||
| 124 | if (null !== $corpTicker) { |
||
| 125 | addCorpInfo($corpID, $corpTicker, $corpName); |
||
| 126 | } |
||
| 127 | } else { |
||
| 128 | $corpTicker = $corpInfo['corpTicker']; |
||
| 129 | } |
||
| 130 | |||
| 131 | //Add corp ticker to name |
||
| 132 | if ($this->corpTickers === 'true') { |
||
| 133 | $setTicker = 1; |
||
| 134 | } |
||
| 135 | |||
| 136 | //Set eve name if nameCheck is true |
||
| 137 | if ($this->nameEnforce === 'true') { |
||
| 138 | $nameEnforce = 1; |
||
| 139 | } |
||
| 140 | $role = null; |
||
| 141 | |||
| 142 | $roles = @$guild->roles; |
||
| 143 | $member = @$guild->members->get('id', $userID); |
||
| 144 | if (null === $member) { |
||
| 145 | $this->message->reply("**Failure:** You're not a member of the correct guild."); |
||
| 146 | return null; |
||
| 147 | } |
||
| 148 | $eveName = characterName($charID); |
||
| 149 | if (null === $eveName) { |
||
| 150 | $this->message->reply('**Failure:** Unable to auth at this time, ESI is down. Please try again later.'); |
||
| 151 | return null; |
||
| 152 | } |
||
| 153 | foreach ($this->authGroups as $authGroup) { |
||
| 154 | //Check if it's set to match corp and alliance |
||
| 155 | if ($authGroup['corpID'] !== 0 && $authGroup['allianceID'] !== 0) { |
||
| 156 | //Check if corpID matches |
||
| 157 | if ($corpID === $authGroup['corpID'] && $allianceID === $authGroup['allianceID']) { |
||
| 158 | foreach ($roles as $role) { |
||
| 159 | if ((string) $role->name === (string) $authGroup['corpMemberRole']) { |
||
| 160 | $member->addRole($role); |
||
| 161 | } |
||
| 162 | if ((string) $role->name === (string) $authGroup['allyMemberRole']) { |
||
| 163 | $member->addRole($role); |
||
| 164 | $role = 'corp/ally'; |
||
| 165 | } |
||
| 166 | } |
||
| 167 | break; |
||
| 168 | } |
||
| 169 | } elseif ($authGroup['corpID'] !== 0 || $authGroup['allianceID'] !== 0) { |
||
| 170 | //Check if corpID matches |
||
| 171 | if ($corpID === $authGroup['corpID']) { |
||
| 172 | View Code Duplication | foreach ($roles as $role) { |
|
| 173 | if ((string) $role->name === (string) $authGroup['corpMemberRole']) { |
||
| 174 | $member->addRole($role); |
||
| 175 | $role = 'corp'; |
||
| 176 | } |
||
| 177 | } |
||
| 178 | break; |
||
| 179 | } |
||
| 180 | //Check if allianceID matches |
||
| 181 | if ($allianceID === $authGroup['allianceID'] && $authGroup['allianceID'] !== 0) { |
||
| 182 | View Code Duplication | foreach ($roles as $role) { |
|
| 183 | if ((string) $role->name === (string) $authGroup['allyMemberRole']) { |
||
| 184 | $member->addRole($role); |
||
| 185 | $role = 'ally'; |
||
| 186 | } |
||
| 187 | } |
||
| 188 | break; |
||
| 189 | } |
||
| 190 | } |
||
| 191 | } |
||
| 192 | //check for standings based roles |
||
| 193 | if ($this->standingsBased === 'true' && $role === null) { |
||
| 194 | $allianceContacts = getContacts($allianceID); |
||
| 195 | $corpContacts = getContacts($corpID); |
||
| 196 | foreach ($roles as $role) { |
||
| 197 | View Code Duplication | if ((@(int) $allianceContacts['standing'] === 5 || @(int) $corpContacts['standing'] === 5) && (string) $role->name === (string) $this->config['plugins']['auth']['standings']['plus5Role']) { |
|
|
0 ignored issues
–
show
|
|||
| 198 | $member->addRole($role); |
||
| 199 | $role = 'blue'; |
||
| 200 | break; |
||
| 201 | } |
||
| 202 | View Code Duplication | if ((@(int) $allianceContacts['standing'] === 10 || @(int) $corpContacts['standing'] === 10) && (string) $role->name === (string) $this->config['plugins']['auth']['standings']['plus10Role']) { |
|
|
0 ignored issues
–
show
This code seems to be duplicated across your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation. You can also find more detailed suggestions in the “Code” section of your repository. Loading history...
|
|||
| 203 | $member->addRole($role); |
||
| 204 | $role = 'blue'; |
||
| 205 | break; |
||
| 206 | } |
||
| 207 | View Code Duplication | if ((@(int) $allianceContacts['standing'] === -5 || @(int) $corpContacts['standing'] === -5) && (string) $role->name === (string) $this->config['plugins']['auth']['standings']['minus5Role']) { |
|
|
0 ignored issues
–
show
This code seems to be duplicated across your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation. You can also find more detailed suggestions in the “Code” section of your repository. Loading history...
|
|||
| 208 | $member->addRole($role); |
||
| 209 | $role = 'red'; |
||
| 210 | break; |
||
| 211 | } |
||
| 212 | View Code Duplication | if ((@(int) $allianceContacts['standing'] === -10 || @(int) $corpContacts['standing'] === -10) && (string) $role->name === (string) $this->config['plugins']['auth']['standings']['minus10Role']) { |
|
|
0 ignored issues
–
show
This code seems to be duplicated across your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation. You can also find more detailed suggestions in the “Code” section of your repository. Loading history...
|
|||
| 213 | $member->addRole($role); |
||
| 214 | $role = 'red'; |
||
| 215 | break; |
||
| 216 | } |
||
| 217 | } |
||
| 218 | if ($role === null) { |
||
| 219 | foreach ($roles as $role) { |
||
| 220 | if ((string) $role->name === (string) $this->config['plugins']['auth']['standings']['neutralRole']) { |
||
| 221 | $member->addRole($role); |
||
| 222 | $role = 'neut'; |
||
| 223 | break; |
||
| 224 | } |
||
| 225 | } |
||
| 226 | } |
||
| 227 | } |
||
| 228 | if (null !== $role) { |
||
| 229 | $guild->members->save($member); |
||
| 230 | insertUser($this->db, $this->dbUser, $this->dbPass, $this->dbName, $userID, $charID, $eveName, $role); |
||
| 231 | disableReg($this->db, $this->dbUser, $this->dbPass, $this->dbName, $code); |
||
| 232 | $msg = ":white_check_mark: **Success:** {$eveName} has been successfully authed."; |
||
| 233 | $this->logger->addInfo("auth: {$eveName} authed"); |
||
| 234 | $this->message->reply($msg); |
||
| 235 | //Add ticker if set and change name if nameEnforce is on |
||
| 236 | if (isset($setTicker) || isset($nameEnforce)) { |
||
| 237 | if (isset($setTicker) && isset($nameEnforce)) { |
||
| 238 | $nick = "[{$corpTicker}] {$eveName}"; |
||
| 239 | } elseif (null === $setTicker && isset($nameEnforce)) { |
||
| 240 | $nick = "{$eveName}"; |
||
| 241 | } elseif (isset($setTicker) && !isset($nameEnforce)) { |
||
| 242 | $nick = "[{$corpTicker}] {$userName}"; |
||
| 243 | } |
||
| 244 | } |
||
| 245 | if (null !== $nick) { |
||
| 246 | queueRename($userID, $nick, $this->guild); |
||
| 247 | } |
||
| 248 | return null; |
||
| 249 | } |
||
| 250 | $this->message->reply('**Failure:** There are no roles available for your corp/alliance.'); |
||
| 251 | $this->logger->addInfo('Auth: User was denied due to not being in the correct corp or alliance ' . $eveName); |
||
| 252 | return null; |
||
| 253 | } |
||
| 254 | $this->message->reply('**Failure:** There was an issue with your code.'); |
||
| 255 | $this->logger->addInfo('Auth: User was denied due to the code being invalid ' . $userName); |
||
| 256 | return null; |
||
| 257 | } |
||
| 258 | return null; |
||
| 259 | } |
||
| 260 | |||
| 261 | /** |
||
| 262 | * @return array |
||
| 263 | */ |
||
| 264 | public function information() |
||
| 265 | { |
||
| 266 | return array( |
||
| 267 | 'name' => 'auth', |
||
| 268 | 'trigger' => $this->triggers, |
||
| 269 | 'information' => 'SSO based auth system. ' . $this->ssoUrl . ' Visit the link and login with your main EVE account, select the correct character, and put the !auth <string> you receive in chat.' |
||
| 270 | ); |
||
| 271 | } |
||
| 272 | } |
||
| 273 |
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.