Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
19 / 19
100.00% covered (success)
100.00%
3 / 3
CRAP
100.00% covered (success)
100.00%
1 / 1
PurgePage
100.00% covered (success)
100.00%
19 / 19
100.00% covered (success)
100.00%
3 / 3
9
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
1
 execute
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
3
 purge
100.00% covered (success)
100.00%
11 / 11
100.00% covered (success)
100.00%
1 / 1
5
1<?php
2/**
3 * Purges a specific page.
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;
25use MediaWiki\Title\Title;
26
27// @codeCoverageIgnoreStart
28require_once __DIR__ . '/Maintenance.php';
29// @codeCoverageIgnoreEnd
30
31/**
32 * Maintenance script that purges a list of pages passed through stdin
33 *
34 * @ingroup Maintenance
35 */
36class PurgePage extends Maintenance {
37    public function __construct() {
38        parent::__construct();
39        $this->addDescription( 'Purge page.' );
40        $this->addOption( 'skip-exists-check', 'Skip page existence check', false, false );
41    }
42
43    public function execute() {
44        $stdin = $this->getStdin();
45
46        while ( !feof( $stdin ) ) {
47            $title = trim( fgets( $stdin ) );
48            if ( $title != '' ) {
49                $this->purge( $title );
50            }
51        }
52    }
53
54    private function purge( $titleText ) {
55        $title = Title::newFromText( $titleText );
56
57        if ( $title === null ) {
58            $this->error( 'Invalid page title' );
59            return;
60        }
61
62        $page = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title );
63
64        if ( !$this->getOption( 'skip-exists-check' ) && !$page->exists() ) {
65            $this->error( "Page doesn't exist" );
66            return;
67        }
68
69        if ( $page->doPurge() ) {
70            $this->output( "Purged {$titleText}\n" );
71        } else {
72            $this->error( "Purge failed for {$titleText}" );
73        }
74    }
75}
76
77// @codeCoverageIgnoreStart
78$maintClass = PurgePage::class;
79require_once RUN_MAINTENANCE_IF_MAIN;
80// @codeCoverageIgnoreEnd