Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 25
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
CleanupPageLang
0.00% covered (danger)
0.00%
0 / 22
0.00% covered (danger)
0.00%
0 / 3
42
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
2
 processRow
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 1
12
 updatePageLang
0.00% covered (danger)
0.00%
0 / 9
0.00% covered (danger)
0.00%
0 / 1
6
1<?php
2/**
3 * Clean up deprecated language codes in page_lang
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Maintenance
22 */
23
24require_once __DIR__ . '/TableCleanup.php';
25
26/**
27 * Maintenance script to clean up deprecated language codes in page_lang
28 *
29 * @ingroup Maintenance
30 */
31class CleanupPageLang extends TableCleanup {
32    public function __construct() {
33        parent::__construct();
34        $this->addDescription( 'Script to clean up deprecated language codes in page_lang' );
35        $this->setBatchSize( 1000 );
36    }
37
38    /**
39     * @param stdClass $row
40     */
41    protected function processRow( $row ) {
42        $oldPageLang = $row->page_lang;
43        if ( $oldPageLang === null ) {
44            // Page has no page language
45            $this->progress( 0 );
46            return;
47        }
48
49        $newPageLang = LanguageCode::replaceDeprecatedCodes( $oldPageLang );
50        if ( $newPageLang === $oldPageLang ) {
51            // Page language is unchanged
52            $this->progress( 0 );
53            return;
54        }
55
56        $this->updatePageLang( $row, $oldPageLang, $newPageLang );
57        $this->progress( 1 );
58    }
59
60    /**
61     * @param stdClass $row
62     * @param string $oldPageLang
63     * @param string $newPageLang
64     */
65    private function updatePageLang( $row, $oldPageLang, $newPageLang ) {
66        if ( $this->dryrun ) {
67            $this->output( "DRY RUN: would update page_lang on $row->page_id from $oldPageLang to $newPageLang.\n" );
68        } else {
69            $this->output( "Update page_lang on $row->page_id from $oldPageLang to $newPageLang.\n" );
70            $this->getPrimaryDB()
71                ->newUpdateQueryBuilder()
72                ->update( 'page' )
73                ->set( [ 'page_lang' => $newPageLang ] )
74                ->where( [ 'page_id' => $row->page_id ] )
75                ->caller( __METHOD__ )->execute();
76        }
77    }
78}
79
80$maintClass = CleanupPageLang::class;
81require_once RUN_MAINTENANCE_IF_MAIN;