wiki.techinc.nl/includes/resourceloader/ResourceLoaderUserModule.php
Umherirrender 6fbea844cc resourceloader: Use UserIdentity in some cases
Created new ResourceLoaderContext::getUserIdentity

For anon requests no user identity is created.

Change-Id: I07084e8949a634dbb0b45e3fa51af2dbb28bdab4
2021-11-08 22:58:56 +01:00

84 lines
2.6 KiB
PHP

<?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
* @author Trevor Parscal
* @author Roan Kattouw
*/
use MediaWiki\MediaWikiServices;
/**
* Module for user customizations scripts.
*
* @ingroup ResourceLoader
* @internal
*/
class ResourceLoaderUserModule extends ResourceLoaderWikiModule {
protected $origin = self::ORIGIN_USER_INDIVIDUAL;
protected $targets = [ 'desktop', 'mobile' ];
/**
* @param ResourceLoaderContext $context
* @return array[]
*/
protected function getPages( ResourceLoaderContext $context ) {
$user = $context->getUserIdentity();
if ( !$user || !$user->isRegistered() ) {
return [];
}
$config = $this->getConfig();
$pages = [];
if ( $config->get( 'AllowUserJs' ) ) {
$titleFormatter = MediaWikiServices::getInstance()->getTitleFormatter();
// Use localised/normalised variant to ensure $excludepage matches
$userPage = $titleFormatter->getPrefixedDBkey( new TitleValue( NS_USER, $user->getName() ) );
$pages["$userPage/common.js"] = [ 'type' => 'script' ];
$pages["$userPage/" . $context->getSkin() . '.js'] = [ 'type' => 'script' ];
}
// User group pages are maintained site-wide and enabled with site JS/CSS.
if ( $config->get( 'UseSiteJs' ) ) {
$userGroupManager = MediaWikiServices::getInstance()->getUserGroupManager();
foreach ( $userGroupManager->getUserEffectiveGroups( $user ) as $group ) {
if ( $group == '*' ) {
continue;
}
$pages["MediaWiki:Group-$group.js"] = [ 'type' => 'script' ];
}
}
// This is obsolete since 1.32 (T112474). It was formerly used by
// OutputPage to implement previewing of user CSS and JS.
// @todo: Remove it once we're sure nothing else is using the parameter
$excludepage = $context->getRequest()->getVal( 'excludepage' );
unset( $pages[$excludepage] );
return $pages;
}
/**
* Get group name
*
* @return string
*/
public function getGroup() {
return 'user';
}
}