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;
|
|
|
|
|
|
|
|
use Hooks;
|
|
|
|
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;
|
2020-01-26 19:26:31 +00:00
|
|
|
use MWException;
|
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
|
|
|
* @throws MWException
|
|
|
|
*/
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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' );
|
2019-04-08 17:08:57 +00:00
|
|
|
|
2022-01-13 00:38:16 +00:00
|
|
|
// special casing for now to support Extension:GrowthExperiments
|
|
|
|
$userpage = $personalTools[ 'userpage' ] ?? null;
|
|
|
|
|
|
|
|
// Check if it exists. In future Extension:GrowthExperiments can unset
|
|
|
|
// this and replace it with homepage key.
|
|
|
|
if ( $userpage ) {
|
|
|
|
$this->definitions->insertAuthMenuItem( $group );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note `homepage` is reserved for Extension:GrowthExperiments usage
|
|
|
|
$include = [ 'homepage', 'login', 'watchlist',
|
|
|
|
'mycontris', 'preferences', 'logout' ];
|
|
|
|
$trackingKeyOverrides = [
|
|
|
|
'watchlist' => 'unStar',
|
|
|
|
'mycontris' => 'contributions',
|
|
|
|
];
|
2019-04-08 17:08:57 +00:00
|
|
|
|
2022-01-13 00:38:16 +00:00
|
|
|
foreach ( $include as $key ) {
|
|
|
|
$item = $personalTools[ $key ] ?? null;
|
|
|
|
if ( $item ) {
|
|
|
|
// 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'],
|
|
|
|
$item['href'],
|
|
|
|
$item['class'] ?? '',
|
|
|
|
$icon
|
|
|
|
);
|
|
|
|
|
|
|
|
// override tracking key where key mismatch
|
|
|
|
if ( array_key_exists( $key, $trackingKeyOverrides ) ) {
|
|
|
|
$entry->trackClicks( $trackingKeyOverrides[ $key ] );
|
|
|
|
}
|
|
|
|
$group->insertEntry( $entry );
|
|
|
|
}
|
|
|
|
}
|
2019-04-08 17:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Allow other extensions to add or override tools
|
2022-01-19 00:08:39 +00:00
|
|
|
Hooks::run( 'MobileMenu', [ 'personal', &$group ], '1.38' );
|
2019-04-08 17:08:57 +00:00
|
|
|
return $group;
|
|
|
|
}
|
|
|
|
}
|