mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-12 09:58:17 +00:00
515af82061
Also, make the handling of TranslateNumerals and digitsRegexp the same between PHP and JS. Change-Id: I1d81343d0b59ab3ecd59ba1c2ad99a729d983ac4
150 lines
4.7 KiB
PHP
150 lines
4.7 KiB
PHP
<?php
|
|
/**
|
|
* DiscussionTools data generators
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace MediaWiki\Extension\DiscussionTools;
|
|
|
|
use Config;
|
|
use DateTimeZone;
|
|
use ExtensionRegistry;
|
|
use Language;
|
|
use MediaWiki\MediaWikiServices;
|
|
use ResourceLoaderContext;
|
|
use ResourceLoaderFileModule;
|
|
use ResourceLoaderModule;
|
|
|
|
class Data {
|
|
/**
|
|
* Part of the 'ext.discussionTools.init' module.
|
|
*
|
|
* We need all of this data *in content language*. Some of it is already available in JS, but only
|
|
* in client language, so it's useless for us (e.g. digit transform table, month name messages).
|
|
*
|
|
* @param ResourceLoaderContext|null $context
|
|
* @param Config $config
|
|
* @param string|Language|null $lang
|
|
* @return array
|
|
*/
|
|
public static function getLocalData(
|
|
?ResourceLoaderContext $context, Config $config, $lang = null
|
|
) : array {
|
|
if ( !$lang ) {
|
|
$lang = MediaWikiServices::getInstance()->getContentLanguage();
|
|
} elseif ( !( $lang instanceof Language ) ) {
|
|
$lang = MediaWikiServices::getInstance()->getLanguageFactory()->getLanguage( $lang );
|
|
}
|
|
|
|
$data = [];
|
|
|
|
$data['dateFormat'] = $lang->getDateFormatString( 'both', $lang->dateFormat( false ) );
|
|
|
|
// TODO: We probably shouldn't assume that each digit can be represented by a single BMP
|
|
// codepoint in every language (although it seems to be true right now).
|
|
$data['digits'] = $config->get( 'TranslateNumerals' ) ?
|
|
$lang->formatNum( '0123456789', true ) :
|
|
null;
|
|
|
|
// ApiQuerySiteinfo
|
|
$data['localTimezone'] = $config->get( 'Localtimezone' );
|
|
|
|
$data['specialContributionsName'] = MediaWikiServices::getInstance()
|
|
->getSpecialPageFactory()->getLocalNameFor( 'Contributions' );
|
|
|
|
$localTimezone = $config->get( 'Localtimezone' );
|
|
// Return only timezone abbreviations for the local timezone (there will often be two, for
|
|
// non-DST and DST timestamps, and sometimes more due to historical data, but that's okay).
|
|
$timezoneAbbrs = array_keys( array_filter(
|
|
DateTimeZone::listAbbreviations(),
|
|
function ( array $timezones ) use ( $localTimezone ) {
|
|
foreach ( $timezones as $tz ) {
|
|
if ( $tz['timezone_id'] === $localTimezone ) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
) );
|
|
$data['timezones'] = array_combine(
|
|
array_map( function ( string $tzMsg ) use ( $lang ) {
|
|
// MWTimestamp::getTimezoneMessage()
|
|
// Parser::pstPass2()
|
|
// Messages used here: 'timezone-utc' and so on
|
|
$key = 'timezone-' . strtolower( trim( $tzMsg ) );
|
|
$msg = wfMessage( $key )->inLanguage( $lang );
|
|
// TODO: This probably causes a similar issue to https://phabricator.wikimedia.org/T221294,
|
|
// but we *must* check the message existence in the database, because the messages are not
|
|
// actually defined by MediaWiki core for any timezone other than UTC...
|
|
if ( $msg->exists() ) {
|
|
return $msg->text();
|
|
}
|
|
return strtoupper( $tzMsg );
|
|
}, $timezoneAbbrs ),
|
|
array_map( 'strtoupper', $timezoneAbbrs )
|
|
);
|
|
|
|
// Messages in content language
|
|
$messagesKeys = array_merge(
|
|
Language::WEEKDAY_MESSAGES,
|
|
Language::WEEKDAY_ABBREVIATED_MESSAGES,
|
|
Language::MONTH_MESSAGES,
|
|
Language::MONTH_GENITIVE_MESSAGES,
|
|
Language::MONTH_ABBREVIATED_MESSAGES
|
|
);
|
|
$data['contLangMessages'] = array_combine(
|
|
$messagesKeys,
|
|
array_map( function ( $key ) use ( $lang ) {
|
|
return wfMessage( $key )->inLanguage( $lang )->text();
|
|
}, $messagesKeys )
|
|
);
|
|
|
|
// How far backwards we look for a signature associated with a timestamp before giving up.
|
|
// Note that this is not a hard limit on the length of signatures we detect.
|
|
$data['signatureScanLimit'] = 100;
|
|
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* Return messages in content language, for use in a ResourceLoader module.
|
|
*
|
|
* @param ResourceLoaderContext $context
|
|
* @param Config $config
|
|
* @param array $messagesKeys
|
|
* @return array
|
|
*/
|
|
public static function getContentLanguageMessages(
|
|
ResourceLoaderContext $context, Config $config, array $messagesKeys = []
|
|
) : array {
|
|
return array_combine(
|
|
$messagesKeys,
|
|
array_map( function ( $key ) {
|
|
return wfMessage( $key )->inContentLanguage()->text();
|
|
}, $messagesKeys )
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Add optional dependencies to a ResourceLoader module definition depending on loaded extensions.
|
|
*
|
|
* @param array $info
|
|
* @return ResourceLoaderModule
|
|
*/
|
|
public static function addOptionalDependencies( array $info ) : ResourceLoaderModule {
|
|
$extensionRegistry = ExtensionRegistry::getInstance();
|
|
|
|
foreach ( $info['optionalDependencies'] as $ext => $deps ) {
|
|
if ( $extensionRegistry->isLoaded( $ext ) ) {
|
|
$info['dependencies'] = array_merge( $info['dependencies'], (array)$deps );
|
|
}
|
|
}
|
|
|
|
$class = $info['class'] ?? ResourceLoaderFileModule::class;
|
|
return new $class( $info );
|
|
}
|
|
}
|