2019-04-08 17:08:57 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This program 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace MediaWiki\Minerva\Menu\Main;
|
|
|
|
|
2023-06-20 16:18:13 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
2019-04-08 17:08:57 +00:00
|
|
|
use MediaWiki\Minerva\Menu\Definitions;
|
2022-01-13 00:38:16 +00:00
|
|
|
use MediaWiki\Minerva\Menu\Entries\SingleMenuEntry;
|
2019-04-08 17:08:57 +00:00
|
|
|
use MediaWiki\Minerva\Menu\Group;
|
2021-12-17 17:16:49 +00:00
|
|
|
use MediaWiki\User\UserIdentity;
|
2019-04-08 17:08:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Used to build default (available for everyone by default) main menu
|
|
|
|
*/
|
2019-08-02 09:00:18 +00:00
|
|
|
final class DefaultMainMenuBuilder implements IMainMenuBuilder {
|
2019-04-08 17:08:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private $showMobileOptions;
|
|
|
|
|
2020-06-25 21:06:46 +00:00
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private $showDonateLink;
|
|
|
|
|
2019-04-08 17:08:57 +00:00
|
|
|
/**
|
|
|
|
* Currently logged in user
|
2021-12-17 17:16:49 +00:00
|
|
|
* @var UserIdentity
|
2019-04-08 17:08:57 +00:00
|
|
|
*/
|
2019-07-22 20:58:34 +00:00
|
|
|
private $user;
|
2019-04-08 17:08:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Definitions
|
|
|
|
*/
|
2019-07-22 20:58:34 +00:00
|
|
|
private $definitions;
|
2019-04-08 17:08:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize the Default Main Menu builder
|
|
|
|
*
|
|
|
|
* @param bool $showMobileOptions Show MobileOptions instead of Preferences
|
2020-06-25 21:06:46 +00:00
|
|
|
* @param bool $showDonateLink whether to show the donate link
|
2021-12-17 17:16:49 +00:00
|
|
|
* @param UserIdentity $user The current user
|
2019-04-08 17:08:57 +00:00
|
|
|
* @param Definitions $definitions A menu items definitions set
|
|
|
|
*/
|
2021-12-17 17:16:49 +00:00
|
|
|
public function __construct( $showMobileOptions, $showDonateLink, UserIdentity $user, Definitions $definitions ) {
|
2019-04-08 17:08:57 +00:00
|
|
|
$this->showMobileOptions = $showMobileOptions;
|
2020-06-25 21:06:46 +00:00
|
|
|
$this->showDonateLink = $showDonateLink;
|
2019-04-08 17:08:57 +00:00
|
|
|
$this->user = $user;
|
|
|
|
$this->definitions = $definitions;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-07-22 20:58:34 +00:00
|
|
|
* @inheritDoc
|
2019-04-08 17:08:57 +00:00
|
|
|
*/
|
2022-01-18 23:36:30 +00:00
|
|
|
public function getDiscoveryGroup( array $navigationTools ): Group {
|
|
|
|
return BuilderUtil::getDiscoveryTools( $this->definitions, $navigationTools );
|
2022-01-13 00:38:16 +00:00
|
|
|
}
|
2021-11-03 17:09:33 +00:00
|
|
|
|
2022-01-13 00:38:16 +00:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function getDonateGroup(): Group {
|
|
|
|
return BuilderUtil::getDonateGroup( $this->definitions, $this->showDonateLink );
|
|
|
|
}
|
2021-11-03 17:09:33 +00:00
|
|
|
|
2022-01-13 00:38:16 +00:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function getInteractionToolsGroup(): Group {
|
|
|
|
return new Group( 'p-interaction' );
|
2019-04-08 17:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-07-22 20:58:34 +00:00
|
|
|
* @inheritDoc
|
2019-04-08 17:08:57 +00:00
|
|
|
*/
|
2019-07-22 20:58:34 +00:00
|
|
|
public function getSiteLinks(): Group {
|
|
|
|
return BuilderUtil::getSiteLinks( $this->definitions );
|
2019-04-08 17:08:57 +00:00
|
|
|
}
|
|
|
|
|
2022-05-12 17:58:08 +00:00
|
|
|
/**
|
|
|
|
* Builds the anonymous settings group.
|
|
|
|
*
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function getSettingsGroup(): Group {
|
|
|
|
$group = new Group( 'pt-preferences' );
|
2023-06-20 16:18:13 +00:00
|
|
|
// Show settings group for anon and temp users
|
2023-07-26 10:10:49 +00:00
|
|
|
$userIdentityUtils = MediaWikiServices::getInstance()->getUserIdentityUtils();
|
|
|
|
$isTemp = $userIdentityUtils->isTemp( $this->user );
|
2023-06-20 16:18:13 +00:00
|
|
|
if ( $this->showMobileOptions && ( !$this->user->isRegistered() || $isTemp ) ) {
|
2022-05-12 17:58:08 +00:00
|
|
|
$this->definitions->insertMobileOptionsItem( $group );
|
|
|
|
}
|
|
|
|
return $group;
|
|
|
|
}
|
|
|
|
|
2019-04-08 17:08:57 +00:00
|
|
|
/**
|
|
|
|
* Builds the personal tools menu item group.
|
|
|
|
*
|
|
|
|
* ... by adding the Watchlist, Settings, and Log{in,out} menu items in the given order.
|
|
|
|
*
|
2022-01-13 00:38:16 +00:00
|
|
|
* @inheritDoc
|
2019-04-08 17:08:57 +00:00
|
|
|
*/
|
2022-01-13 00:38:16 +00:00
|
|
|
public function getPersonalToolsGroup( array $personalTools ): Group {
|
2019-10-23 18:30:55 +00:00
|
|
|
$group = new Group( 'p-personal' );
|
2023-06-10 00:09:57 +00:00
|
|
|
$excludeKeyList = [ 'betafeatures', 'mytalk', 'sandbox' ];
|
2023-05-25 15:59:04 +00:00
|
|
|
|
|
|
|
// For anonymous users exclude all links except login.
|
|
|
|
if ( !$this->user->isRegistered() ) {
|
|
|
|
$excludeKeyList = array_diff(
|
|
|
|
array_keys( $personalTools ),
|
|
|
|
[ 'login' ]
|
|
|
|
);
|
2022-01-13 00:38:16 +00:00
|
|
|
}
|
2023-07-26 10:10:49 +00:00
|
|
|
$userIdentityUtils = MediaWikiServices::getInstance()->getUserIdentityUtils();
|
|
|
|
$isTemp = $userIdentityUtils->isTemp( $this->user );
|
2023-06-20 16:18:13 +00:00
|
|
|
if ( $isTemp ) {
|
|
|
|
$excludeKeyList[] = 'mycontris';
|
|
|
|
}
|
2023-05-25 15:59:04 +00:00
|
|
|
foreach ( $personalTools as $key => $item ) {
|
|
|
|
$href = $item['href'] ?? null;
|
|
|
|
if ( $href && !in_array( $key, $excludeKeyList ) ) {
|
2022-01-13 00:38:16 +00:00
|
|
|
// Substitute preference if $showMobileOptions is set.
|
|
|
|
if ( $this->showMobileOptions && $key === 'preferences' ) {
|
|
|
|
$this->definitions->insertMobileOptionsItem( $group );
|
|
|
|
} else {
|
|
|
|
$icon = $item['icon'] ?? null;
|
|
|
|
$entry = SingleMenuEntry::create(
|
|
|
|
$key,
|
|
|
|
$item['text'],
|
2023-05-25 15:59:04 +00:00
|
|
|
$href,
|
2022-01-13 00:38:16 +00:00
|
|
|
$item['class'] ?? '',
|
|
|
|
$icon
|
|
|
|
);
|
|
|
|
|
2023-05-25 15:59:04 +00:00
|
|
|
$entry->trackClicks( $key );
|
2022-01-13 00:38:16 +00:00
|
|
|
$group->insertEntry( $entry );
|
|
|
|
}
|
|
|
|
}
|
2019-04-08 17:08:57 +00:00
|
|
|
}
|
|
|
|
return $group;
|
|
|
|
}
|
|
|
|
}
|