mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Linter
synced 2024-11-23 15:36:52 +00:00
ad1e665d5b
Changes to the use statements done automatically via script Change-Id: I2883f6ccb1b3019cddcc2c957d022acf2d5c0ff7
78 lines
2.2 KiB
PHP
78 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Linter\Maintenance;
|
|
|
|
use MediaWiki\Maintenance\LoggedUpdateMaintenance;
|
|
|
|
/**
|
|
* Maintenance script that migrates the linter_params field value to the new tag and template fields
|
|
* Note: The schema migration "patch-linter-add-template-tag-fields.json" is expected to have been done.
|
|
* The extension now populates these new fields by default. This script will migrate any data
|
|
* in existing records to the new fields.
|
|
*/
|
|
|
|
$IP = getenv( 'MW_INSTALL_PATH' );
|
|
if ( $IP === false ) {
|
|
$IP = __DIR__ . '/../../..';
|
|
}
|
|
require_once "$IP/maintenance/Maintenance.php";
|
|
|
|
class MigrateTagTemplate extends LoggedUpdateMaintenance {
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function __construct() {
|
|
parent::__construct();
|
|
$this->requireExtension( 'Linter' );
|
|
$this->addDescription(
|
|
'Copy the tag and template data from the params field in the linter table'
|
|
);
|
|
$this->addOption(
|
|
'sleep',
|
|
'Sleep time (in seconds) between every batch. Default: 1 seconds',
|
|
false,
|
|
true
|
|
);
|
|
$this->setBatchSize( 1000 );
|
|
}
|
|
|
|
/**
|
|
* The Linter migrate linter_params to linter_tag and linter_template script can take a day to run on --wiki enwiki
|
|
* @inheritDoc
|
|
*/
|
|
protected function doDBUpdates() {
|
|
$this->output( "Running linter migrate linter_params to tag and template function, this may take a while\n" );
|
|
|
|
$batchSize = $this->getBatchSize();
|
|
$sleep = (int)$this->getOption( 'sleep', 1 );
|
|
|
|
$dbw = $this->getDB( DB_PRIMARY );
|
|
if ( !$dbw->fieldExists( 'linter', 'linter_template', __METHOD__ ) ) {
|
|
$this->output( "Run update.php to add linter_tag and linter_template fields to the linter table.\n" );
|
|
return false;
|
|
}
|
|
|
|
$this->output( "Migrating the linter_params field to the linter_tag and linter_template fields...\n" );
|
|
|
|
$database = $this->getServiceContainer()->get( 'Linter.Database' );
|
|
$updated = $database->migrateTemplateAndTagInfo( $batchSize, $sleep );
|
|
|
|
$this->output(
|
|
"Completed migration of linter_params data in the linter table, $updated rows updated.\n"
|
|
);
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
protected function getUpdateKey() {
|
|
return 'migrate linter table linter_params data to the linter_tag and linter_template fields';
|
|
}
|
|
}
|
|
|
|
$maintClass = MigrateTagTemplate::class;
|
|
require_once RUN_MAINTENANCE_IF_MAIN;
|