15 parent::__construct();
17 'Migrate externallinks data'
21 'Sleep time (in seconds) between every batch. Default: 0',
34 $table =
'externallinks';
35 if ( !$dbw->fieldExists( $table,
'el_to', __METHOD__ ) ) {
36 $this->
output(
"Old fields don't exist. There is no need to run this script\n" );
39 if ( !$dbw->fieldExists( $table,
'el_to_path', __METHOD__ ) ) {
40 $this->
output(
"Run update.php to create the el_to_path column.\n" );
44 $this->
output(
"Populating el_to_domain_index and el_to_path columns\n" );
47 $highestId = $dbw->newSelectQueryBuilder()
51 ->caller( __METHOD__ )
52 ->orderBy(
'el_id',
'DESC' )
53 ->fetchResultSet()->fetchRow();
55 $this->
output(
"Page table is empty.\n" );
58 $highestId = $highestId[0];
60 while ( $id <= $highestId ) {
61 $updated += $this->handleBatch( $id );
65 $this->
output(
"Completed normalization of $table, $updated rows updated.\n" );
70 private function handleBatch( $lowId ) {
73 $highId = $lowId + $batchSize - 1;
76 $res = $dbw->newSelectQueryBuilder()
77 ->select( [
'el_id',
'el_to' ] )
78 ->from(
'externallinks' )
80 'el_to_domain_index' =>
'',
81 "el_id BETWEEN $lowId AND $highId"
84 ->caller( __METHOD__ )
86 if ( !
$res->numRows() ) {
89 foreach (
$res as $row ) {
91 $paths = LinkFilter::makeIndexes( $url );
97 'el_to_domain_index' => substr( $paths[0][0], 0, 255 ),
98 'el_to_path' => $paths[0][1]
100 $dbw->update(
'externallinks', $update, [
'el_id' => $row->el_id ], __METHOD__ );
101 $updated += $dbw->affectedRows();
103 $this->
output(
"Updated $updated rows\n" );
106 $sleep = (int)$this->
getOption(
'sleep', 0 );
Class for scripts that perform database maintenance and want to log the update in updatelog so we can...
output( $out, $channel=null)
Throw some output to the user.
waitForReplication()
Wait for replica DBs to catch up.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.