Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 42
0.00% covered (danger)
0.00%
0 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
AddRFCandPMIDInterwiki
0.00% covered (danger)
0.00%
0 / 39
0.00% covered (danger)
0.00%
0 / 4
56
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getUpdateKey
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 updateSkippedMessage
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 doDBUpdates
0.00% covered (danger)
0.00%
0 / 35
0.00% covered (danger)
0.00%
0 / 1
20
1<?php
2/**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 */
20
21use MediaWiki\MainConfigNames;
22
23require_once __DIR__ . '/Maintenance.php';
24
25/**
26 * Run automatically with update.php
27 *
28 * - Changes "rfc" URL to use tools.ietf.org domain
29 * - Adds "pmid" interwiki
30 *
31 * @since 1.28
32 */
33class AddRFCandPMIDInterwiki extends LoggedUpdateMaintenance {
34    public function __construct() {
35        parent::__construct();
36        $this->addDescription( 'Add RFC and PMID to the interwiki database table' );
37    }
38
39    protected function getUpdateKey() {
40        return __CLASS__;
41    }
42
43    protected function updateSkippedMessage() {
44        return 'RFC and PMID already added to interwiki database table.';
45    }
46
47    protected function doDBUpdates() {
48        $interwikiCache = $this->getConfig()->get( MainConfigNames::InterwikiCache );
49        // Using something other than the database,
50        if ( $interwikiCache !== false ) {
51            return true;
52        }
53        $dbw = $this->getPrimaryDB();
54
55        $rfc = $dbw->newSelectQueryBuilder()
56            ->select( 'iw_url' )
57            ->from( 'interwiki' )
58            ->where( [ 'iw_prefix' => 'rfc' ] )
59            ->caller( __METHOD__ )
60            ->fetchField();
61
62        // Old pre-1.28 default value, or not set at all
63        if ( $rfc === false || $rfc === 'http://www.rfc-editor.org/rfc/rfc$1.txt' ) {
64            $dbw->newReplaceQueryBuilder()
65                ->replaceInto( 'interwiki' )
66                ->uniqueIndexFields( [ 'iw_prefix' ] )
67                ->rows( [
68                    'iw_prefix' => 'rfc',
69                    'iw_url' => 'https://tools.ietf.org/html/rfc$1',
70                    'iw_api' => '',
71                    'iw_wikiid' => '',
72                    'iw_local' => 0,
73                ] )
74                ->caller( __METHOD__ )->execute();
75        }
76
77        $dbw->newInsertQueryBuilder()
78            ->insertInto( 'interwiki' )
79            // If there's already a pmid interwiki link, don't overwrite it
80            ->ignore()
81            ->row( [
82                'iw_prefix' => 'pmid',
83                'iw_url' => 'https://www.ncbi.nlm.nih.gov/pubmed/$1?dopt=Abstract',
84                'iw_api' => '',
85                'iw_wikiid' => '',
86                'iw_local' => 0,
87            ] )
88            ->caller( __METHOD__ )->execute();
89
90        return true;
91    }
92}
93
94$maintClass = AddRFCandPMIDInterwiki::class;
95require_once RUN_MAINTENANCE_IF_MAIN;