*/ use MediaWiki\Maintenance\Maintenance; // @codeCoverageIgnoreStart require_once __DIR__ . '/Maintenance.php'; // @codeCoverageIgnoreEnd class PopulateInterwiki extends Maintenance { /** * @var string */ private $source; public function __construct() { parent::__construct(); $this->addDescription( <<addOption( 'source', 'Source wiki for interwiki table, such as ' . 'https://en.wikipedia.org/w/api.php (the default)', false, true ); $this->addOption( 'force', 'Run regardless of whether the database says it has ' . 'been run already.' ); } public function execute() { $force = $this->hasOption( 'force' ); $this->source = $this->getOption( 'source', 'https://en.wikipedia.org/w/api.php' ); $data = $this->fetchLinks(); if ( $data === false ) { $this->error( "Error during fetching data." ); } else { $this->doPopulate( $data, $force ); } } /** * @return array[]|false The 'interwikimap' sub-array or false on failure. */ protected function fetchLinks() { $url = wfArrayToCgi( [ 'action' => 'query', 'meta' => 'siteinfo', 'siprop' => 'interwikimap', 'sifilteriw' => 'local', 'format' => 'json' ] ); if ( $this->source ) { $url = rtrim( $this->source, '?' ) . '?' . $url; } $json = $this->getServiceContainer()->getHttpRequestFactory()->get( $url, [], __METHOD__ ); $data = json_decode( $json, true ); if ( is_array( $data ) ) { return $data['query']['interwikimap']; } else { return false; } } /** * @param array[] $data * @param bool $force * * @return bool */ protected function doPopulate( array $data, $force ) { $dbw = $this->getPrimaryDB(); if ( !$force ) { $row = $dbw->newSelectQueryBuilder() ->select( '1' ) ->from( 'updatelog' ) ->where( [ 'ul_key' => 'populate interwiki' ] ) ->caller( __METHOD__ )->fetchRow(); if ( $row ) { $this->output( "Interwiki table already populated. Use php " . "maintenance/populateInterwiki.php\n--force from the command line " . "to override.\n" ); return true; } } $lookup = $this->getServiceContainer()->getInterwikiLookup(); foreach ( $data as $d ) { $prefix = $d['prefix']; $row = $dbw->newSelectQueryBuilder() ->select( '1' ) ->from( 'interwiki' ) ->where( [ 'iw_prefix' => $prefix ] ) ->caller( __METHOD__ )->fetchRow(); if ( !$row ) { $dbw->newInsertQueryBuilder() ->insertInto( 'interwiki' ) ->ignore() ->row( [ 'iw_prefix' => $prefix, 'iw_url' => $d['url'], 'iw_local' => 1, 'iw_api' => '', 'iw_wikiid' => '', ] ) ->caller( __METHOD__ )->execute(); } $lookup->invalidateCache( $prefix ); } $this->output( "Interwiki links are populated.\n" ); return true; } } // @codeCoverageIgnoreStart $maintClass = PopulateInterwiki::class; require_once RUN_MAINTENANCE_IF_MAIN; // @codeCoverageIgnoreEnd