mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-15 11:46:55 +00:00
feb0c76381
This improves readability and separates the HTML from the JavaScript Change-Id: Ib765d78890b9aeb05940df00160790b01751a36b
280 lines
8.4 KiB
PHP
280 lines
8.4 KiB
PHP
<?php
|
|
/*
|
|
* This file is part of the MediaWiki extension Popups.
|
|
*
|
|
* Popups 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.
|
|
*
|
|
* Popups 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 Popups. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* @file
|
|
* @ingroup extensions
|
|
*/
|
|
use MediaWiki\Logger\LoggerFactory;
|
|
|
|
class PopupsHooks {
|
|
static function getPreferences( User $user, array &$prefs ){
|
|
global $wgExtensionAssetsPath;
|
|
if ( self::getConfig()->get( 'PopupsBetaFeature' ) !== true ) {
|
|
return;
|
|
}
|
|
$prefs['popups'] = array(
|
|
'label-message' => 'popups-message',
|
|
'desc-message' => 'popups-desc',
|
|
'screenshot' => array(
|
|
'ltr' => "$wgExtensionAssetsPath/Popups/resources/images/popups-ltr.svg",
|
|
'rtl' => "$wgExtensionAssetsPath/Popups/resources/images/popups-rtl.svg",
|
|
),
|
|
'info-link' => 'https://www.mediawiki.org/wiki/Beta_Features/Hovercards',
|
|
'discussion-link' => 'https://www.mediawiki.org/wiki/Talk:Beta_Features/Hovercards',
|
|
'requirements' => array(
|
|
'javascript' => true,
|
|
),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @return Config
|
|
*/
|
|
public static function getConfig() {
|
|
static $config;
|
|
if ( !$config ) {
|
|
$config = ConfigFactory::getDefaultInstance()->makeConfig( 'popups' );
|
|
}
|
|
return $config;
|
|
}
|
|
|
|
/**
|
|
* @param ResourceLoader $rl
|
|
* @return bool
|
|
*/
|
|
public static function onResourceLoaderRegisterModules( ResourceLoader $rl ) {
|
|
$moduleDependencies = array(
|
|
'mediawiki.jqueryMsg',
|
|
'moment',
|
|
'jquery.hidpi',
|
|
'ext.popups.targets.desktopTarget',
|
|
);
|
|
|
|
// Create a schema module and add it as a dependency of `ext.popups.desktop`.
|
|
$schemaPopups = [
|
|
'remoteExtPath' => 'Popups',
|
|
'localBasePath' => __DIR__,
|
|
'targets' => [ 'desktop' ],
|
|
];
|
|
|
|
if ( class_exists( 'EventLogging' ) ) {
|
|
$schemaPopups += [
|
|
'dependencies' => [
|
|
'schema.Popups',
|
|
'ext.popups.schemaPopups.utils',
|
|
],
|
|
'scripts' => [
|
|
'resources/ext.popups.schemaPopups.js',
|
|
]
|
|
];
|
|
}
|
|
$rl->register('ext.popups.schemaPopups', $schemaPopups );
|
|
$moduleDependencies[] = 'ext.popups.schemaPopups';
|
|
|
|
$rl->register( "ext.popups.desktop", array(
|
|
'scripts' => array(
|
|
'resources/ext.popups.renderer.article.js',
|
|
'resources/ext.popups.settings.js',
|
|
),
|
|
'templates' => array(
|
|
'popup.mustache' => 'resources/popup.mustache',
|
|
'settings.mustache' => 'resources/settings.mustache',
|
|
),
|
|
'styles' => array(
|
|
'resources/ext.popups.animation.less',
|
|
'resources/ext.popups.settings.less',
|
|
),
|
|
'dependencies' => $moduleDependencies,
|
|
'messages' => array(
|
|
'popups-last-edited',
|
|
"popups-settings-title",
|
|
"popups-settings-description",
|
|
"popups-settings-option-simple",
|
|
"popups-settings-option-simple-description",
|
|
"popups-settings-option-advanced",
|
|
"popups-settings-option-advanced-description",
|
|
"popups-settings-option-off",
|
|
"popups-settings-option-off-description",
|
|
"popups-settings-save",
|
|
"popups-settings-cancel",
|
|
"popups-settings-enable",
|
|
"popups-settings-help",
|
|
"popups-settings-help-ok",
|
|
"popups-send-feedback",
|
|
),
|
|
'remoteExtPath' => 'Popups',
|
|
'localBasePath' => __DIR__,
|
|
) );
|
|
|
|
// if MobileFrontend is installed, register mobile popups modules
|
|
if ( ExtensionRegistry::getInstance()->isLoaded( 'MobileFrontend' )
|
|
&& self::getConfig()->get( 'EnablePopupsMobile' )
|
|
) {
|
|
$mobileBoilerplate = array(
|
|
'targets' => array( 'mobile' ),
|
|
'remoteExtPath' => 'Popups',
|
|
'localBasePath' => __DIR__,
|
|
);
|
|
|
|
$rl->register( 'ext.popups.targets.mobileTarget', array(
|
|
'dependencies' => array(
|
|
'ext.popups.core',
|
|
'ext.popups.renderer.mobileRenderer',
|
|
),
|
|
'scripts' => array(
|
|
'resources/ext.popups.targets/mobileTarget.js',
|
|
),
|
|
) + $mobileBoilerplate
|
|
);
|
|
|
|
$rl->register( 'ext.popups.renderer.mobileRenderer', array(
|
|
'dependencies' => array(
|
|
'ext.popups.core',
|
|
'mobile.drawers',
|
|
),
|
|
'scripts' => array(
|
|
'resources/ext.popups.renderer/mobileRenderer.js',
|
|
'resources/ext.popups.renderer/LinkPreviewDrawer.js',
|
|
),
|
|
'templates' => array(
|
|
'LinkPreviewDrawer.hogan' => 'resources/ext.popups.renderer/LinkPreviewDrawer.hogan',
|
|
),
|
|
'styles' => array(
|
|
'resources/ext.popups.renderer/LinkPreview.less',
|
|
),
|
|
'messages' => array(
|
|
'popups-mobile-continue-to-page',
|
|
'popups-mobile-dismiss',
|
|
),
|
|
) + $mobileBoilerplate
|
|
);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public static function onBeforePageDisplay( OutputPage &$out, Skin &$skin) {
|
|
// Enable only if the user has turned it on in Beta Preferences, or BetaFeatures is not installed.
|
|
// Will only be loaded if PageImages & TextExtracts extensions are installed.
|
|
|
|
$registry = ExtensionRegistry::getInstance();
|
|
if ( !$registry->isLoaded( 'TextExtracts' ) || !class_exists( 'ApiQueryPageImages' ) ) {
|
|
$logger = LoggerFactory::getInstance( 'popups' );
|
|
$logger->error( 'Popups requires the PageImages and TextExtracts extensions.' );
|
|
return true;
|
|
}
|
|
|
|
$config = self::getConfig();
|
|
$isExperimentEnabled = $config->get( 'PopupsExperiment' );
|
|
|
|
if (
|
|
// If Popups are enabled as an experiment, then bypass checking whether the user has enabled
|
|
// it as a beta feature.
|
|
!$isExperimentEnabled &&
|
|
$config->get( 'PopupsBetaFeature' ) === true
|
|
) {
|
|
if ( !class_exists( 'BetaFeatures' ) ) {
|
|
$logger = LoggerFactory::getInstance( 'popups' );
|
|
$logger->error( 'PopupsMode cannot be used as a beta feature unless ' .
|
|
'the BetaFeatures extension is present.' );
|
|
return true;
|
|
}
|
|
if ( !BetaFeatures::isFeatureEnabled( $skin->getUser(), 'popups' ) ) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
$out->addModules( array( 'ext.popups.desktop' ) );
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Handler for MobileFrontend's BeforePageDisplay hook, which is only called in mobile mode.
|
|
*
|
|
* @param OutputPage &$out,
|
|
* @param Skin &$skin
|
|
*/
|
|
public static function onBeforePageDisplayMobile( OutputPage &$out, Skin &$skin ) {
|
|
// enable mobile link preview in mobile beta and if the beta feature is enabled
|
|
if (
|
|
self::getConfig()->get( 'EnablePopupsMobile' ) &&
|
|
MobileContext::singleton()->isBetaGroupMember()
|
|
) {
|
|
$out->addModules( 'ext.popups.targets.mobileTarget' );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param array &$testModules
|
|
* @param ResourceLoader $resourceLoader
|
|
* @return bool
|
|
*/
|
|
public static function onResourceLoaderTestModules( array &$testModules, ResourceLoader &$resourceLoader ) {
|
|
$testModules['qunit']['ext.popups.tests'] = array(
|
|
'scripts' => array(
|
|
'tests/qunit/ext.popups.renderer/desktopRenderer.test.js',
|
|
'tests/qunit/ext.popups.renderer.article.test.js',
|
|
'tests/qunit/ext.popups.core.test.js',
|
|
'tests/qunit/ext.popups.schemaPopups.utils.test.js',
|
|
'tests/qunit/ext.popups.settings.test.js',
|
|
'tests/qunit/ext.popups.experiment.test.js',
|
|
),
|
|
'dependencies' => array(
|
|
'ext.popups.desktop',
|
|
'ext.popups.experiment',
|
|
'ext.popups.schemaPopups.utils'
|
|
),
|
|
'localBasePath' => __DIR__,
|
|
'remoteExtPath' => 'Popups',
|
|
);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @param array $vars
|
|
*/
|
|
public static function onResourceLoaderGetConfigVars( array &$vars ) {
|
|
$conf = ConfigFactory::getDefaultInstance()->makeConfig( 'popups' );
|
|
$vars['wgPopupsSurveyLink'] = $conf->get( 'PopupsSurveyLink' );
|
|
$vars['wgPopupsSchemaPopupsSamplingRate'] = $conf->get( 'SchemaPopupsSamplingRate' );
|
|
|
|
if ( $conf->get( 'PopupsExperiment' ) ) {
|
|
$vars['wgPopupsExperiment'] = true;
|
|
$vars['wgPopupsExperimentConfig'] = $conf->get( 'PopupsExperimentConfig' );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* MakeGlobalVariablesScript hook handler.
|
|
*
|
|
* @see https://www.mediawiki.org/wiki/Manual:Hooks/MakeGlobalVariablesScript
|
|
*
|
|
* @param array $vars
|
|
* @param OutputPage $out
|
|
*/
|
|
public static function onMakeGlobalVariablesScript( array &$vars, OutputPage $out ) {
|
|
$config = ConfigFactory::getDefaultInstance()->makeConfig( 'popups' );
|
|
$user = $out->getUser();
|
|
|
|
if ( $config->get( 'PopupsExperiment' ) ) {
|
|
$vars['wgPopupsExperimentIsBetaFeatureEnabled'] =
|
|
class_exists( 'BetaFeatures' ) && BetaFeatures::isFeatureEnabled( $user, 'popups' );
|
|
}
|
|
}
|
|
}
|