X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FuserDupes.inc;h=9893342dcf3dbb712da19f6d10a4180c5d1eb944;hb=ba40a63c0ee23daec4886a3e7da62b061639f19c;hp=f20b64e2b19749215487272c5d9b76c241824793;hpb=4b0be13e7531ee5ad890e9e1eeffa211d515294a;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/userDupes.inc b/maintenance/userDupes.inc index f20b64e2b1..9893342dcf 100644 --- a/maintenance/userDupes.inc +++ b/maintenance/userDupes.inc @@ -46,7 +46,7 @@ class UserDupes { /** * Output some text via the output callback provided - * @param $str String Text to print + * @param string $str Text to print */ private function out( $str ) { call_user_func( $this->outputCallback, $str ); @@ -61,6 +61,7 @@ class UserDupes { $info = $this->db->indexInfo( 'user', 'user_name', __METHOD__ ); if ( !$info ) { $this->out( "WARNING: doesn't seem to have user_name index at all!\n" ); + return false; } @@ -95,13 +96,14 @@ class UserDupes { * not requested. (If doing resolution, edits may be reassigned.) * Status information will be echo'd to stdout. * - * @param $doDelete bool: pass true to actually remove things - * from the database; false to just check. + * @param bool $doDelete Pass true to actually remove things + * from the database; false to just check. * @return bool */ function checkDupes( $doDelete = false ) { if ( $this->hasUniqueIndex() ) { echo wfWikiID() . " already has a unique index on its user table.\n"; + return true; } @@ -125,7 +127,8 @@ class UserDupes { if ( $this->reassigned > 0 ) { if ( $doDelete ) { - $this->out( "$this->reassigned duplicate accounts had edits reassigned to a canonical record id.\n" ); + $this->out( "$this->reassigned duplicate accounts had edits " + . "reassigned to a canonical record id.\n" ); } else { $this->out( "$this->reassigned duplicate accounts need to have edits reassigned.\n" ); } @@ -133,22 +136,27 @@ class UserDupes { if ( $this->trimmed > 0 ) { if ( $doDelete ) { - $this->out( "$this->trimmed duplicate user records were deleted from " . wfWikiID() . ".\n" ); + $this->out( "$this->trimmed duplicate user records were deleted from " + . wfWikiID() . ".\n" ); } else { - $this->out( "$this->trimmed duplicate user accounts were found on " . wfWikiID() . " which can be removed safely.\n" ); + $this->out( "$this->trimmed duplicate user accounts were found on " + . wfWikiID() . " which can be removed safely.\n" ); } } if ( $this->failed > 0 ) { $this->out( "Something terribly awry; $this->failed duplicate accounts were not removed.\n" ); + return false; } if ( $this->trimmed == 0 || $doDelete ) { $this->out( "It is now safe to apply the unique index on user_name.\n" ); + return true; } else { $this->out( "Run this script again with the --fix option to automatically delete them.\n" ); + return false; } } @@ -158,8 +166,8 @@ class UserDupes { * @access private */ function lock() { - $set = array( 'user', 'revision' ); - $names = array_map( array( $this, 'lockTable' ), $set ); + $set = [ 'user', 'revision' ]; + $names = array_map( [ $this, 'lockTable' ], $set ); $tables = implode( ',', $names ); $this->db->query( "LOCK TABLES $tables", __METHOD__ ); @@ -189,10 +197,11 @@ class UserDupes { GROUP BY user_name HAVING n > 1", __METHOD__ ); - $list = array(); + $list = []; foreach ( $result as $row ) { $list[] = $row->user_name; } + return $list; } @@ -200,14 +209,14 @@ class UserDupes { * Examine user records for the given name. Try to see which record * will be the one that actually gets used, then check remaining records * for edits. If the dupes have no edits, we can safely remove them. - * @param $name string - * @param $doDelete bool + * @param string $name + * @param bool $doDelete * @access private */ function examine( $name, $doDelete ) { $result = $this->db->select( 'user', - array( 'user_id' ), - array( 'user_name' => $name ), + [ 'user_id' ], + [ 'user_name' => $name ], __METHOD__ ); $firstRow = $this->db->fetchObject( $result ); @@ -249,7 +258,7 @@ class UserDupes { * Count the number of edits attributed to this user. * Does not currently check log table or other things * where it might show up... - * @param $userid int + * @param int $userid * @return int * @access private */ @@ -257,33 +266,32 @@ class UserDupes { return intval( $this->db->selectField( 'revision', 'COUNT(*)', - array( 'rev_user' => $userid ), + [ 'rev_user' => $userid ], __METHOD__ ) ); } /** - * @param $from int - * @param $to int + * @param int $from + * @param int $to * @access private */ function reassignEdits( $from, $to ) { $this->out( 'reassigning... ' ); $this->db->update( 'revision', - array( 'rev_user' => $to ), - array( 'rev_user' => $from ), + [ 'rev_user' => $to ], + [ 'rev_user' => $from ], __METHOD__ ); $this->out( "ok. " ); } /** * Remove a user account line. - * @param $userid int + * @param int $userid * @access private */ function trimAccount( $userid ) { $this->out( "deleting..." ); - $this->db->delete( 'user', array( 'user_id' => $userid ), __METHOD__ ); + $this->db->delete( 'user', [ 'user_id' => $userid ], __METHOD__ ); $this->out( " ok" ); } - }