mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Interwiki
synced 2024-11-24 06:24:16 +00:00
a687ec46e0
Additional changes: * Added .eslintcache to .gitignore. Change-Id: Ic8740b08acfe205cbdebfc9fdb733989c5ca72db
89 lines
2.9 KiB
PHP
89 lines
2.9 KiB
PHP
<?php
|
|
|
|
use MediaWiki\MediaWikiServices;
|
|
|
|
class InterwikiHooks {
|
|
public static function onExtensionFunctions() {
|
|
global $wgInterwikiViewOnly;
|
|
|
|
if ( !$wgInterwikiViewOnly ) {
|
|
global $wgLogTypes;
|
|
|
|
// Set up the new log type - interwiki actions are logged to this new log
|
|
// TODO: Move this out of an extension function once T200385 is implemented.
|
|
$wgLogTypes[] = 'interwiki';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param array &$rights
|
|
*/
|
|
public static function onUserGetAllRights( array &$rights ) {
|
|
global $wgInterwikiViewOnly;
|
|
if ( !$wgInterwikiViewOnly ) {
|
|
// New user right, required to modify the interwiki table through Special:Interwiki
|
|
$rights[] = 'interwiki';
|
|
}
|
|
}
|
|
|
|
public static function onInterwikiLoadPrefix( $prefix, &$iwData ) {
|
|
global $wgInterwikiCentralDB, $wgInterwikiCentralInterlanguageDB;
|
|
|
|
// docs/hooks.txt says: Return true without providing an interwiki to continue interwiki search.
|
|
$shouldSkipIWCheck = ( $wgInterwikiCentralDB === null || $wgInterwikiCentralDB === wfWikiID() );
|
|
$shouldSkipILCheck = (
|
|
$wgInterwikiCentralInterlanguageDB === null ||
|
|
$wgInterwikiCentralInterlanguageDB === wfWikiID()
|
|
);
|
|
// Bail out early if _neither_ $wgInterwiki*CentralDB global is set; if one
|
|
// or both are set, we gotta do some more complex checking first
|
|
if ( $shouldSkipIWCheck && $shouldSkipILCheck ) {
|
|
// No global set or this is global, nothing to add
|
|
return true;
|
|
}
|
|
|
|
$isInterlanguageLink = Language::fetchLanguageName( $prefix );
|
|
if ( !$isInterlanguageLink && !$shouldSkipIWCheck ) {
|
|
// Check if prefix exists locally and skip
|
|
$lookup = MediaWikiServices::getInstance()->getInterwikiLookup();
|
|
foreach ( $lookup->getAllPrefixes( null ) as $id => $localPrefixInfo ) {
|
|
if ( $prefix === $localPrefixInfo['iw_prefix'] ) {
|
|
return true;
|
|
}
|
|
}
|
|
// @phan-suppress-next-line PhanTypeMismatchArgument global wrongly detected as null
|
|
$dbr = wfGetDB( DB_REPLICA, [], $wgInterwikiCentralDB );
|
|
$res = $dbr->selectRow(
|
|
'interwiki',
|
|
'*',
|
|
[ 'iw_prefix' => $prefix ],
|
|
__METHOD__
|
|
);
|
|
if ( !$res ) {
|
|
return true;
|
|
}
|
|
// Excplicitly make this an array since it's expected to be one
|
|
$iwData = (array)$res;
|
|
// At this point, we can safely return false because we know that we have something
|
|
return false;
|
|
} elseif ( $isInterlanguageLink && !$shouldSkipILCheck ) {
|
|
// Global interlanguage link? Whoo!
|
|
// @phan-suppress-next-line PhanTypeMismatchArgument global wrongly detected as null
|
|
$dbr = wfGetDB( DB_REPLICA, [], $wgInterwikiCentralInterlanguageDB );
|
|
$res = $dbr->selectRow(
|
|
'interwiki',
|
|
'*',
|
|
[ 'iw_prefix' => $prefix ],
|
|
__METHOD__
|
|
);
|
|
if ( !$res ) {
|
|
return false;
|
|
}
|
|
// Excplicitly make this an array since it's expected to be one
|
|
$iwData = (array)$res;
|
|
// At this point, we can safely return false because we know that we have something
|
|
return false;
|
|
}
|
|
}
|
|
}
|