Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
19 / 19
100.00% covered (success)
100.00%
2 / 2
CRAP
100.00% covered (success)
100.00%
1 / 1
RenameRestrictions
100.00% covered (success)
100.00%
19 / 19
100.00% covered (success)
100.00%
2 / 2
2
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
1 / 1
1
 execute
100.00% covered (success)
100.00%
15 / 15
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2/**
3 * Rename restriction level
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
24use MediaWiki\Maintenance\Maintenance;
25
26// @codeCoverageIgnoreStart
27require_once __DIR__ . '/Maintenance.php';
28// @codeCoverageIgnoreEnd
29
30/**
31 * Maintenance script that updates page_restrictions and
32 * protected_titles tables to use a new name for a given
33 * restriction level.
34 *
35 * @ingroup Maintenance
36 */
37class RenameRestrictions extends Maintenance {
38    public function __construct() {
39        parent::__construct();
40        $this->addDescription( 'Rename a restriction level' );
41        $this->addArg( 'oldlevel', 'Old name of restriction level', true );
42        $this->addArg( 'newlevel', 'New name of restriction level', true );
43    }
44
45    public function execute() {
46        $oldLevel = $this->getArg( 0 );
47        $newLevel = $this->getArg( 1 );
48
49        $dbw = $this->getPrimaryDB();
50        $dbw->newUpdateQueryBuilder()
51            ->update( 'page_restrictions' )
52            ->set( [ 'pr_level' => $newLevel ] )
53            ->where( [ 'pr_level' => $oldLevel ] )
54            ->caller( __METHOD__ )
55            ->execute();
56        $dbw->newUpdateQueryBuilder()
57            ->update( 'protected_titles' )
58            ->set( [ 'pt_create_perm' => $newLevel ] )
59            ->where( [ 'pt_create_perm' => $oldLevel ] )
60            ->caller( __METHOD__ )
61            ->execute();
62    }
63
64}
65
66// @codeCoverageIgnoreStart
67$maintClass = RenameRestrictions::class;
68require_once RUN_MAINTENANCE_IF_MAIN;
69// @codeCoverageIgnoreEnd