mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-24 14:34:09 +00:00
feat(core): ✨ convert tagline to langauage variant when appliable
This commit is contained in:
parent
af41f98935
commit
0c23e50d62
|
@ -1,134 +1,144 @@
|
|||
<?php
|
||||
/**
|
||||
* Citizen - A responsive skin developed for the Star Citizen Wiki
|
||||
*
|
||||
* This file is part of Citizen.
|
||||
*
|
||||
* Citizen is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Citizen is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Citizen. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @file
|
||||
* @ingroup Skins
|
||||
*/
|
||||
|
||||
declare( strict_types=1 );
|
||||
|
||||
namespace MediaWiki\Skins\Citizen\Partials;
|
||||
|
||||
use Title;
|
||||
use User;
|
||||
use Wikimedia\IPUtils;
|
||||
|
||||
/**
|
||||
* Tagline partial of Skin Citizen
|
||||
*/
|
||||
final class Tagline extends Partial {
|
||||
|
||||
/**
|
||||
* Get tagline message
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getTagline() {
|
||||
$skin = $this->skin;
|
||||
$out = $this->out;
|
||||
$title = $this->title;
|
||||
|
||||
$shortdesc = $out->getProperty( 'shortdesc' );
|
||||
$tagline = '';
|
||||
|
||||
if ( $title ) {
|
||||
// Use short description if there is any
|
||||
// from Extension:ShortDescription
|
||||
if ( $shortdesc ) {
|
||||
$tagline = $shortdesc;
|
||||
} else {
|
||||
$namespaceText = $title->getNsText();
|
||||
// Check if namespaceText exists
|
||||
// Return null if main namespace or not defined
|
||||
if ( $namespaceText ) {
|
||||
$msg = $skin->msg( 'citizen-tagline-ns-' . strtolower( $namespaceText ) );
|
||||
// Use custom message if exists
|
||||
if ( !$msg->isDisabled() ) {
|
||||
$tagline = $msg->text();
|
||||
} else {
|
||||
if ( $title->isSpecialPage() ) {
|
||||
// No tagline if special page
|
||||
$tagline = '';
|
||||
} elseif ( $title->isTalkPage() ) {
|
||||
// Use generic talk page message if talk page
|
||||
$tagline = $skin->msg( 'citizen-tagline-ns-talk' )->text();
|
||||
|
||||
} elseif ( $title->inNamespace( NS_USER ) && !$title->isSubpage() ) {
|
||||
// Build user tagline if it is a top-level user page
|
||||
$tagline = $this->buildUserTagline( $title );
|
||||
} else {
|
||||
// Fallback to site tagline
|
||||
$tagline = $skin->msg( 'tagline' )->text();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$tagline = $skin->msg( 'tagline' )->text();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $tagline;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return user tagline message
|
||||
*
|
||||
* @param Title $title
|
||||
* @return string
|
||||
*/
|
||||
private function buildUserTagline( $title ) {
|
||||
$user = $this->buildPageUserObject( $title );
|
||||
if ( $user ) {
|
||||
$editCount = $user->getEditCount();
|
||||
if ( $editCount ) {
|
||||
$skin = $this->skin;
|
||||
// TODO: Figure out a waw to get registration duration,
|
||||
// like Langauge::getHumanTimestamp()
|
||||
//$registration = $user->getRegistration();
|
||||
$msgEditCount = $skin->msg( 'usereditcount' )
|
||||
->numParams( sprintf( '%s', number_format( $editCount, 0 ) ) );
|
||||
return $msgEditCount;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return new User object based on username or IP address.
|
||||
* Based on MinervaNeue
|
||||
*
|
||||
* @param Title $title
|
||||
* @return User|null
|
||||
*/
|
||||
private function buildPageUserObject( $title ) {
|
||||
$titleText = $title->getText();
|
||||
$user = $this->user;
|
||||
|
||||
if ( IPUtils::isIPAddress( $titleText ) ) {
|
||||
return $user->newFromAnyId( null, $titleText, null );
|
||||
}
|
||||
|
||||
$pageUserId = $user->idFromName( $titleText );
|
||||
if ( $pageUserId ) {
|
||||
return $user->newFromId( $pageUserId );
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
<?php
|
||||
/**
|
||||
* Citizen - A responsive skin developed for the Star Citizen Wiki
|
||||
*
|
||||
* This file is part of Citizen.
|
||||
*
|
||||
* Citizen is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Citizen is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Citizen. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @file
|
||||
* @ingroup Skins
|
||||
*/
|
||||
|
||||
declare( strict_types=1 );
|
||||
|
||||
namespace MediaWiki\Skins\Citizen\Partials;
|
||||
|
||||
use MediaWiki\MediaWikiServices;
|
||||
use Title;
|
||||
use User;
|
||||
use Wikimedia\IPUtils;
|
||||
|
||||
/**
|
||||
* Tagline partial of Skin Citizen
|
||||
*/
|
||||
final class Tagline extends Partial {
|
||||
|
||||
/**
|
||||
* Get tagline message
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getTagline() {
|
||||
$skin = $this->skin;
|
||||
$out = $this->out;
|
||||
$title = $this->title;
|
||||
|
||||
$shortdesc = $out->getProperty( 'shortdesc' );
|
||||
$tagline = '';
|
||||
|
||||
if ( $title ) {
|
||||
// Use short description if there is any
|
||||
// from Extension:ShortDescription
|
||||
if ( $shortdesc ) {
|
||||
$tagline = $shortdesc;
|
||||
} else {
|
||||
$namespaceText = $title->getNsText();
|
||||
// Check if namespaceText exists
|
||||
// Return null if main namespace or not defined
|
||||
if ( $namespaceText ) {
|
||||
$msg = $skin->msg( 'citizen-tagline-ns-' . strtolower( $namespaceText ) );
|
||||
// Use custom message if exists
|
||||
if ( !$msg->isDisabled() ) {
|
||||
$tagline = $msg->text();
|
||||
} else {
|
||||
if ( $title->isSpecialPage() ) {
|
||||
// No tagline if special page
|
||||
$tagline = '';
|
||||
} elseif ( $title->isTalkPage() ) {
|
||||
// Use generic talk page message if talk page
|
||||
$tagline = $skin->msg( 'citizen-tagline-ns-talk' )->text();
|
||||
|
||||
} elseif ( $title->inNamespace( NS_USER ) && !$title->isSubpage() ) {
|
||||
// Build user tagline if it is a top-level user page
|
||||
$tagline = $this->buildUserTagline( $title );
|
||||
} else {
|
||||
// Fallback to site tagline
|
||||
$tagline = $skin->msg( 'tagline' )->text();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$tagline = $skin->msg( 'tagline' )->text();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Apply language variant conversion
|
||||
if ( !empty( $tagline ) ) {
|
||||
$services = MediaWikiServices::getInstance();
|
||||
$langConv = $services
|
||||
->getLanguageConverterFactory()
|
||||
->getLanguageConverter( $services->getContentLanguage() );
|
||||
$tagline = $langConv->convert( $tagline );
|
||||
}
|
||||
|
||||
return $tagline;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return user tagline message
|
||||
*
|
||||
* @param Title $title
|
||||
* @return string
|
||||
*/
|
||||
private function buildUserTagline( $title ) {
|
||||
$user = $this->buildPageUserObject( $title );
|
||||
if ( $user ) {
|
||||
$editCount = $user->getEditCount();
|
||||
if ( $editCount ) {
|
||||
$skin = $this->skin;
|
||||
// TODO: Figure out a waw to get registration duration,
|
||||
// like Langauge::getHumanTimestamp()
|
||||
//$registration = $user->getRegistration();
|
||||
$msgEditCount = $skin->msg( 'usereditcount' )
|
||||
->numParams( sprintf( '%s', number_format( $editCount, 0 ) ) );
|
||||
return $msgEditCount;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return new User object based on username or IP address.
|
||||
* Based on MinervaNeue
|
||||
*
|
||||
* @param Title $title
|
||||
* @return User|null
|
||||
*/
|
||||
private function buildPageUserObject( $title ) {
|
||||
$titleText = $title->getText();
|
||||
$user = $this->user;
|
||||
|
||||
if ( IPUtils::isIPAddress( $titleText ) ) {
|
||||
return $user->newFromAnyId( null, $titleText, null );
|
||||
}
|
||||
|
||||
$pageUserId = $user->idFromName( $titleText );
|
||||
if ( $pageUserId ) {
|
||||
return $user->newFromId( $pageUserId );
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue