X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2FWikiMap.php;h=9cc308d228a89ed0f122d65b1c00ddcf7291c021;hp=8bb37b5c882a7a599d63ab658cdaa4a5bfc80a88;hb=a7e147b7ee64830788a67779e2d8137017c0e919;hpb=b47ae9f94bccb493a73d2731ef33c6a9b79ab92e diff --git a/includes/WikiMap.php b/includes/WikiMap.php index 8bb37b5c88..9cc308d228 100644 --- a/includes/WikiMap.php +++ b/includes/WikiMap.php @@ -258,4 +258,37 @@ class WikiMap { ? "{$domain->getDatabase()}-{$domain->getTablePrefix()}" : $domain->getDatabase(); } + + /** + * @param DatabaseDomain|string $domain + * @return bool Whether $domain has the same DB/prefix as the current wiki + * @since 1.33 + */ + public static function isCurrentWikiDbDomain( $domain ) { + $domain = DatabaseDomain::newFromId( $domain ); + $curDomain = self::getCurrentWikiDbDomain(); + + if ( !in_array( $curDomain->getSchema(), [ null, 'mediawiki' ], true ) ) { + // Include the schema if it is set and is not the default placeholder. + // This means a site admin may have specifically taylored the schemas. + // Domain IDs might use the form --, meaning that + // the schema portion must be accounted for to disambiguate wikis. + return $curDomain->equals( $domain ); + } + + return ( + $curDomain->getDatabase() === $domain->getDatabase() && + $curDomain->getTablePrefix() === $domain->getTablePrefix() + ); + } + + /** + * @return DatabaseDomain Database domain of the current wiki + * @since 1.33 + */ + public static function getCurrentWikiDbDomain() { + global $wgDBname, $wgDBmwschema, $wgDBprefix; + // Avoid invoking LBFactory to avoid any chance of recursion + return new DatabaseDomain( $wgDBname, $wgDBmwschema, (string)$wgDBprefix ); + } }