2019-05-23 22:34:10 +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\PageActions;
|
|
|
|
|
2019-11-07 21:46:55 +00:00
|
|
|
use MediaWiki\Minerva\Menu\Entries\IMenuEntry;
|
|
|
|
use MediaWiki\Minerva\Menu\Entries\SingleMenuEntry;
|
2019-05-23 22:34:10 +00:00
|
|
|
use MediaWiki\Minerva\Menu\Group;
|
2021-03-09 19:43:14 +00:00
|
|
|
use MediaWiki\Minerva\Permissions\IMinervaPagePermissions;
|
2019-05-23 22:34:10 +00:00
|
|
|
use MessageLocalizer;
|
2023-07-22 01:00:15 +00:00
|
|
|
use Title;
|
2019-05-23 22:34:10 +00:00
|
|
|
|
|
|
|
class DefaultOverflowBuilder implements IOverflowBuilder {
|
|
|
|
|
2023-07-22 01:00:15 +00:00
|
|
|
/**
|
|
|
|
* @var Title
|
|
|
|
*/
|
|
|
|
private $title;
|
|
|
|
|
2019-05-23 22:34:10 +00:00
|
|
|
/**
|
|
|
|
* @var MessageLocalizer
|
|
|
|
*/
|
|
|
|
private $messageLocalizer;
|
|
|
|
|
2021-03-09 19:43:14 +00:00
|
|
|
/**
|
|
|
|
* @var IMinervaPagePermissions
|
|
|
|
*/
|
|
|
|
private $permissions;
|
|
|
|
|
2019-05-23 22:34:10 +00:00
|
|
|
/**
|
|
|
|
* Initialize Default overflow menu Group
|
|
|
|
*
|
2023-07-22 01:00:15 +00:00
|
|
|
* @param Title $title
|
2019-05-23 22:34:10 +00:00
|
|
|
* @param MessageLocalizer $messageLocalizer
|
2021-03-09 19:43:14 +00:00
|
|
|
* @param IMinervaPagePermissions $permissions Minerva permissions system
|
2019-05-23 22:34:10 +00:00
|
|
|
*/
|
2021-03-09 19:43:14 +00:00
|
|
|
public function __construct(
|
2023-07-22 01:00:15 +00:00
|
|
|
Title $title,
|
2021-03-09 19:43:14 +00:00
|
|
|
MessageLocalizer $messageLocalizer,
|
|
|
|
IMinervaPagePermissions $permissions
|
|
|
|
) {
|
2023-07-22 01:00:15 +00:00
|
|
|
$this->title = $title;
|
2019-05-23 22:34:10 +00:00
|
|
|
$this->messageLocalizer = $messageLocalizer;
|
2021-03-09 19:43:14 +00:00
|
|
|
$this->permissions = $permissions;
|
2019-05-23 22:34:10 +00:00
|
|
|
}
|
|
|
|
|
2023-07-22 01:00:15 +00:00
|
|
|
public function getTitle(): Title {
|
|
|
|
return $this->title;
|
|
|
|
}
|
|
|
|
|
2023-03-24 21:56:18 +00:00
|
|
|
public function getMessageLocalizer(): MessageLocalizer {
|
|
|
|
return $this->messageLocalizer;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isAllowed( string $permission ): bool {
|
|
|
|
return $this->permissions->isAllowed( $permission );
|
|
|
|
}
|
|
|
|
|
2019-05-23 22:34:10 +00:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
2021-03-09 19:43:14 +00:00
|
|
|
public function getGroup( array $toolbox, array $actions ): Group {
|
2019-10-23 18:30:55 +00:00
|
|
|
$group = new Group( 'p-tb' );
|
2021-03-09 19:43:14 +00:00
|
|
|
|
2023-07-22 01:00:15 +00:00
|
|
|
$override = $this->isAllowed( IMinervaPagePermissions::EDIT_OR_CREATE ) ? [
|
|
|
|
'editfull' => [
|
|
|
|
'icon' => 'edit',
|
|
|
|
'text' => $this->messageLocalizer->msg( 'minerva-page-actions-editfull' ),
|
|
|
|
'href' => $this->title->getLocalURL( [ 'action' => 'edit', 'section' => 'all' ] ),
|
|
|
|
'class' => 'edit-link',
|
|
|
|
],
|
|
|
|
] : [];
|
2023-03-23 16:55:18 +00:00
|
|
|
// watch icon appears in page actions rather than here.
|
2023-07-22 01:00:15 +00:00
|
|
|
$combinedMenu = array_merge( $toolbox, $override, $actions );
|
2023-03-23 16:55:18 +00:00
|
|
|
unset( $combinedMenu[ 'watch' ] );
|
|
|
|
unset( $combinedMenu[ 'unwatch' ] );
|
|
|
|
foreach ( $combinedMenu as $key => $definition ) {
|
|
|
|
$icon = $definition['icon'] ?? null;
|
|
|
|
// Only menu items with icons can be displayed here.
|
|
|
|
if ( $icon ) {
|
2023-07-22 01:00:15 +00:00
|
|
|
$entry = $this->build( $key, $icon, $key, $combinedMenu );
|
|
|
|
if ( $entry ) {
|
|
|
|
$group->insertEntry( $entry );
|
|
|
|
}
|
2023-03-23 16:55:18 +00:00
|
|
|
}
|
2019-05-23 22:34:10 +00:00
|
|
|
}
|
|
|
|
return $group;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-14 16:57:26 +00:00
|
|
|
* Build the single menu entry
|
|
|
|
*
|
2019-05-23 22:34:10 +00:00
|
|
|
* @param string $name
|
2020-04-29 21:49:59 +00:00
|
|
|
* @param string $icon WikimediaUI icon name.
|
2019-06-14 16:57:26 +00:00
|
|
|
* @param string $toolboxIdx
|
|
|
|
* @param array $toolbox An array of common toolbox items from the sidebar menu
|
2019-11-07 21:46:55 +00:00
|
|
|
* @return IMenuEntry|null
|
2019-05-23 22:34:10 +00:00
|
|
|
*/
|
2019-06-14 16:57:26 +00:00
|
|
|
private function build( $name, $icon, $toolboxIdx, array $toolbox ) {
|
|
|
|
$href = $toolbox[$toolboxIdx]['href'] ?? null;
|
2023-03-23 16:55:18 +00:00
|
|
|
$originalMsg = $toolbox[$toolboxIdx]['text'] ??
|
|
|
|
$this->messageLocalizer->msg( $toolboxIdx )->text();
|
2019-05-23 22:34:10 +00:00
|
|
|
|
2023-07-06 05:23:54 +00:00
|
|
|
$entry = new SingleMenuEntry(
|
|
|
|
'page-actions-overflow-' . $name,
|
|
|
|
$originalMsg,
|
|
|
|
$href,
|
|
|
|
$toolbox[$name]['class'] ?? false
|
|
|
|
);
|
|
|
|
|
|
|
|
return $href ? $entry->setIcon( $icon, 'before' )->trackClicks( $name ) : null;
|
2019-05-23 22:34:10 +00:00
|
|
|
}
|
|
|
|
}
|