stwalkerster /
waca
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | <?php |
||
| 2 | /****************************************************************************** |
||
| 3 | * Wikipedia Account Creation Assistance tool * |
||
| 4 | * * |
||
| 5 | * All code in this file is released into the public domain by the ACC * |
||
| 6 | * Development Team. Please see team.json for a list of contributors. * |
||
| 7 | ******************************************************************************/ |
||
| 8 | |||
| 9 | namespace Waca\ConsoleTasks; |
||
| 10 | |||
| 11 | use Waca\Tasks\ConsoleTaskBase; |
||
| 12 | |||
| 13 | class ClearOAuthDataTask extends ConsoleTaskBase |
||
| 14 | { |
||
| 15 | public function execute() |
||
| 16 | { |
||
| 17 | // @fixme this is unsafe. |
||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
|
|||
| 18 | // What we should be doing is iterating over all OAuth users, fetching their username, and updating the onwiki |
||
| 19 | // name for the user at the same time as blatting out the OAuth credentials, otherwise we risk losing all links |
||
| 20 | // to the user's onwiki account. |
||
| 21 | |||
| 22 | $this->getDatabase()->exec(<<<SQL |
||
| 23 | UPDATE user |
||
| 24 | SET |
||
| 25 | oauthrequesttoken = null, |
||
| 26 | oauthrequestsecret = null, |
||
| 27 | oauthaccesstoken = null, |
||
| 28 | oauthaccesssecret = null, |
||
| 29 | oauthidentitycache = null; |
||
| 30 | SQL |
||
| 31 | ); |
||
| 32 | } |
||
| 33 | } |