2013-08-07 08:59:08 +00:00
|
|
|
<?php
|
2018-04-14 07:49:21 +00:00
|
|
|
/**
|
2013-08-07 08:59:08 +00:00
|
|
|
* This file is part of the MediaWiki extension MultimediaViewer.
|
|
|
|
*
|
|
|
|
* MultimediaViewer 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.
|
|
|
|
*
|
|
|
|
* MultimediaViewer is distributed in the hope that it will be useful,
|
2013-11-23 01:18:25 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2013-08-07 08:59:08 +00:00
|
|
|
* 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 MultimediaViewer. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @ingroup extensions
|
|
|
|
* @author Mark Holmquist <mtraceur@member.fsf.org>
|
|
|
|
* @copyright Copyright © 2013, Mark Holmquist
|
|
|
|
*/
|
2019-10-31 22:35:59 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
2013-08-07 08:59:08 +00:00
|
|
|
|
|
|
|
class MultimediaViewerHooks {
|
2013-10-29 20:26:07 +00:00
|
|
|
/** Link to more information about this module */
|
2017-05-19 13:26:17 +00:00
|
|
|
protected static $infoLink =
|
2018-04-14 07:38:17 +00:00
|
|
|
'https://mediawiki.org/wiki/Special:MyLanguage/Extension:Media_Viewer/About';
|
2013-10-29 20:26:07 +00:00
|
|
|
|
|
|
|
/** Link to a page where this module can be discussed */
|
2017-05-19 13:26:17 +00:00
|
|
|
protected static $discussionLink =
|
2018-04-14 07:38:17 +00:00
|
|
|
'https://mediawiki.org/wiki/Special:MyLanguage/Extension_talk:Media_Viewer/About';
|
2013-08-07 08:59:08 +00:00
|
|
|
|
2014-03-24 13:35:34 +00:00
|
|
|
/** Link to help about this module */
|
2018-04-14 07:38:17 +00:00
|
|
|
protected static $helpLink =
|
|
|
|
'https://mediawiki.org/wiki/Special:MyLanguage/Help:Extension:Media_Viewer';
|
2014-03-24 13:35:34 +00:00
|
|
|
|
2019-05-10 12:25:16 +00:00
|
|
|
/**
|
|
|
|
* @see https://www.mediawiki.org/wiki/Manual:Hooks/UserGetDefaultOptions
|
|
|
|
* @param array &$defaultOptions
|
|
|
|
*/
|
2019-05-10 12:30:44 +00:00
|
|
|
public static function onUserGetDefaultOptions( array &$defaultOptions ) {
|
2017-05-02 21:57:46 +00:00
|
|
|
global $wgMediaViewerEnableByDefault;
|
|
|
|
|
|
|
|
if ( $wgMediaViewerEnableByDefault ) {
|
2016-10-18 16:59:36 +00:00
|
|
|
$defaultOptions['multimediaviewer-enable'] = 1;
|
2017-05-02 21:57:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-07 01:56:56 +00:00
|
|
|
/**
|
|
|
|
* Checks the context for whether to load the viewer.
|
|
|
|
* @param User $user
|
|
|
|
* @return bool
|
|
|
|
*/
|
2019-05-10 12:30:44 +00:00
|
|
|
protected static function shouldHandleClicks( User $user ) {
|
2019-05-08 18:21:45 +00:00
|
|
|
global $wgMediaViewerEnableByDefaultForAnonymous,
|
2018-04-14 07:46:34 +00:00
|
|
|
$wgMediaViewerEnableByDefault;
|
2014-03-07 01:56:56 +00:00
|
|
|
|
2018-04-14 07:46:34 +00:00
|
|
|
if ( $wgMediaViewerEnableByDefaultForAnonymous === null ) {
|
|
|
|
$enableByDefaultForAnons = $wgMediaViewerEnableByDefault;
|
|
|
|
} else {
|
|
|
|
$enableByDefaultForAnons = $wgMediaViewerEnableByDefaultForAnonymous;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !$user->isLoggedIn() ) {
|
|
|
|
return (bool)$enableByDefaultForAnons;
|
2014-08-10 11:16:01 +00:00
|
|
|
} else {
|
|
|
|
return (bool)$user->getOption( 'multimediaviewer-enable' );
|
2014-03-14 00:25:33 +00:00
|
|
|
}
|
2014-03-07 01:56:56 +00:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:40:31 +00:00
|
|
|
/**
|
|
|
|
* Handler for all places where we add the modules
|
|
|
|
* Could be on article pages or on Category pages
|
2019-05-10 12:30:44 +00:00
|
|
|
* @param OutputPage $out
|
2013-10-25 23:27:01 +00:00
|
|
|
*/
|
2019-05-10 12:30:44 +00:00
|
|
|
protected static function getModules( OutputPage $out ) {
|
2019-10-31 22:35:59 +00:00
|
|
|
// The MobileFrontend extension provides its own implementation of MultimediaViewer.
|
|
|
|
// See https://phabricator.wikimedia.org/T65504 and subtasks for more details.
|
|
|
|
// To avoid loading MMV twice, we check the environment we are running in.
|
|
|
|
$isMobileFrontendView = ExtensionRegistry::getInstance()->isLoaded( 'MobileFrontend' ) &&
|
|
|
|
MediaWikiServices::getInstance()->getService( 'MobileFrontend.Context' )
|
|
|
|
->shouldDisplayMobileView();
|
|
|
|
if ( !$isMobileFrontendView ) {
|
|
|
|
$out->addModules( [ 'mmv.head', 'mmv.bootstrap.autostart' ] );
|
|
|
|
}
|
2013-11-04 21:40:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-05-10 12:25:16 +00:00
|
|
|
* @see https://www.mediawiki.org/wiki/Manual:Hooks/BeforePageDisplay
|
2013-11-04 21:40:31 +00:00
|
|
|
* Add JavaScript to the page when an image is on it
|
2019-05-08 18:21:45 +00:00
|
|
|
* and the user has enabled the feature
|
2019-05-10 12:30:44 +00:00
|
|
|
* @param OutputPage $out
|
|
|
|
* @param Skin $skin
|
2013-11-04 21:40:31 +00:00
|
|
|
*/
|
2019-05-10 12:30:44 +00:00
|
|
|
public static function onBeforePageDisplay( OutputPage $out, $skin ) {
|
2014-12-22 20:42:49 +00:00
|
|
|
$pageHasThumbnails = count( $out->getFileSearchOptions() ) > 0;
|
|
|
|
$pageIsFilePage = $out->getTitle()->inNamespace( NS_FILE );
|
2019-03-11 12:26:03 +00:00
|
|
|
// TODO: Have Flow work out if there are any images on the page
|
|
|
|
$pageIsFlowPage = ExtensionRegistry::getInstance()->isLoaded( 'Flow' ) &&
|
|
|
|
// CONTENT_MODEL_FLOW_BOARD
|
|
|
|
$out->getTitle()->getContentModel() === 'flow-board';
|
2016-12-04 18:14:09 +00:00
|
|
|
$fileRelatedSpecialPages = [ 'NewFiles', 'ListFiles', 'MostLinkedFiles',
|
|
|
|
'MostGloballyLinkedFiles', 'UncategorizedFiles', 'UnusedFiles', 'Search' ];
|
2014-12-22 20:42:49 +00:00
|
|
|
$pageIsFileRelatedSpecialPage = $out->getTitle()->inNamespace( NS_SPECIAL )
|
|
|
|
&& in_array( $out->getTitle()->getText(), $fileRelatedSpecialPages );
|
|
|
|
|
2019-03-11 12:26:03 +00:00
|
|
|
if ( $pageHasThumbnails || $pageIsFilePage || $pageIsFileRelatedSpecialPage || $pageIsFlowPage ) {
|
2019-05-10 12:18:37 +00:00
|
|
|
self::getModules( $out );
|
2013-11-04 21:40:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-05-10 12:25:16 +00:00
|
|
|
* @see https://www.mediawiki.org/wiki/Manual:Hooks/CategoryPageView
|
2013-11-04 21:40:31 +00:00
|
|
|
* Add JavaScript to the page if there are images in the category
|
2019-05-10 12:30:44 +00:00
|
|
|
* @param CategoryPage $catPage
|
2013-11-04 21:40:31 +00:00
|
|
|
*/
|
2019-05-10 12:30:44 +00:00
|
|
|
public static function onCategoryPageView( CategoryPage $catPage ) {
|
2013-11-04 21:40:31 +00:00
|
|
|
$title = $catPage->getTitle();
|
|
|
|
$cat = Category::newFromTitle( $title );
|
|
|
|
if ( $cat->getFileCount() > 0 ) {
|
|
|
|
$out = $catPage->getContext()->getOutput();
|
2019-05-10 12:18:37 +00:00
|
|
|
self::getModules( $out );
|
2013-08-07 08:59:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-07 15:31:59 +00:00
|
|
|
/**
|
2019-05-10 12:25:16 +00:00
|
|
|
* @see https://www.mediawiki.org/wiki/Manual:Hooks/GetPreferences
|
2019-05-08 18:21:45 +00:00
|
|
|
* Adds a default-enabled preference to gate the feature
|
2017-10-07 15:31:59 +00:00
|
|
|
* @param User $user
|
|
|
|
* @param array &$prefs
|
|
|
|
*/
|
2019-05-10 12:26:15 +00:00
|
|
|
public static function onGetPreferences( $user, &$prefs ) {
|
2019-05-08 18:21:45 +00:00
|
|
|
$prefs['multimediaviewer-enable'] = [
|
|
|
|
'type' => 'toggle',
|
|
|
|
'label-message' => 'multimediaviewer-optin-pref',
|
|
|
|
'section' => 'rendering/files',
|
|
|
|
];
|
2014-03-14 00:25:33 +00:00
|
|
|
}
|
|
|
|
|
2013-10-29 20:26:07 +00:00
|
|
|
/**
|
2019-05-10 12:25:16 +00:00
|
|
|
* @see https://www.mediawiki.org/wiki/Manual:Hooks/ResourceLoaderGetConfigVars
|
2013-10-29 20:26:07 +00:00
|
|
|
* Export variables used in both PHP and JS to keep DRY
|
2017-10-07 15:31:59 +00:00
|
|
|
* @param array &$vars
|
2013-10-29 20:26:07 +00:00
|
|
|
*/
|
2019-05-10 12:30:44 +00:00
|
|
|
public static function onResourceLoaderGetConfigVars( array &$vars ) {
|
2017-05-19 13:26:17 +00:00
|
|
|
global $wgMediaViewerActionLoggingSamplingFactorMap,
|
|
|
|
$wgMediaViewerNetworkPerformanceSamplingFactor,
|
|
|
|
$wgMediaViewerDurationLoggingSamplingFactor,
|
|
|
|
$wgMediaViewerDurationLoggingLoggedinSamplingFactor,
|
|
|
|
$wgMediaViewerAttributionLoggingSamplingFactor,
|
|
|
|
$wgMediaViewerDimensionLoggingSamplingFactor,
|
2019-05-08 18:21:45 +00:00
|
|
|
$wgMediaViewerUseThumbnailGuessing, $wgMediaViewerExtensions,
|
2017-05-19 13:26:17 +00:00
|
|
|
$wgMediaViewerImageQueryParameter, $wgMediaViewerRecordVirtualViewBeaconURI;
|
2014-11-20 23:39:29 +00:00
|
|
|
|
2016-12-04 18:14:09 +00:00
|
|
|
$vars['wgMultimediaViewer'] = [
|
2013-10-29 20:26:07 +00:00
|
|
|
'infoLink' => self::$infoLink,
|
|
|
|
'discussionLink' => self::$discussionLink,
|
2014-03-24 13:35:34 +00:00
|
|
|
'helpLink' => self::$helpLink,
|
2014-04-10 01:08:36 +00:00
|
|
|
'useThumbnailGuessing' => (bool)$wgMediaViewerUseThumbnailGuessing,
|
2014-05-19 09:24:54 +00:00
|
|
|
'durationSamplingFactor' => $wgMediaViewerDurationLoggingSamplingFactor,
|
2014-11-06 17:51:08 +00:00
|
|
|
'durationSamplingFactorLoggedin' => $wgMediaViewerDurationLoggingLoggedinSamplingFactor,
|
2016-01-14 15:03:21 +00:00
|
|
|
'networkPerformanceSamplingFactor' => $wgMediaViewerNetworkPerformanceSamplingFactor,
|
2014-05-19 09:24:54 +00:00
|
|
|
'actionLoggingSamplingFactorMap' => $wgMediaViewerActionLoggingSamplingFactorMap,
|
2014-09-05 00:45:36 +00:00
|
|
|
'attributionSamplingFactor' => $wgMediaViewerAttributionLoggingSamplingFactor,
|
2014-09-26 18:37:53 +00:00
|
|
|
'dimensionSamplingFactor' => $wgMediaViewerDimensionLoggingSamplingFactor,
|
2014-11-16 11:31:47 +00:00
|
|
|
'imageQueryParameter' => $wgMediaViewerImageQueryParameter,
|
2015-02-16 17:03:40 +00:00
|
|
|
'recordVirtualViewBeaconURI' => $wgMediaViewerRecordVirtualViewBeaconURI,
|
2014-05-31 00:18:12 +00:00
|
|
|
'tooltipDelay' => 1000,
|
2016-04-03 09:18:26 +00:00
|
|
|
'extensions' => $wgMediaViewerExtensions,
|
2016-12-04 18:14:09 +00:00
|
|
|
];
|
2014-03-14 22:19:26 +00:00
|
|
|
$vars['wgMediaViewer'] = true;
|
2013-10-29 20:26:07 +00:00
|
|
|
}
|
2013-11-27 21:57:45 +00:00
|
|
|
|
2014-03-27 22:46:51 +00:00
|
|
|
/**
|
2019-05-10 12:25:16 +00:00
|
|
|
* @see https://www.mediawiki.org/wiki/Manual:Hooks/MakeGlobalVariablesScript
|
2014-03-27 22:46:51 +00:00
|
|
|
* Export variables which depend on the current user
|
2017-10-07 15:31:59 +00:00
|
|
|
* @param array &$vars
|
2014-03-27 22:46:51 +00:00
|
|
|
* @param OutputPage $out
|
|
|
|
*/
|
2019-05-10 12:30:44 +00:00
|
|
|
public static function onMakeGlobalVariablesScript( array &$vars, OutputPage $out ) {
|
2017-10-17 12:17:14 +00:00
|
|
|
$defaultUserOptions = User::getDefaultOptions();
|
2014-08-23 17:14:37 +00:00
|
|
|
|
2014-03-27 22:46:51 +00:00
|
|
|
$user = $out->getUser();
|
|
|
|
$vars['wgMediaViewerOnClick'] = self::shouldHandleClicks( $user );
|
2019-05-08 18:21:45 +00:00
|
|
|
// needed because of T71942; could be different for anon and logged-in
|
2017-05-19 13:26:17 +00:00
|
|
|
$vars['wgMediaViewerEnabledByDefault'] =
|
2017-10-17 12:17:14 +00:00
|
|
|
!empty( $defaultUserOptions['multimediaviewer-enable'] );
|
2014-03-27 22:46:51 +00:00
|
|
|
}
|
|
|
|
|
2014-03-28 10:06:17 +00:00
|
|
|
/**
|
2019-05-10 12:25:16 +00:00
|
|
|
* @see https://www.mediawiki.org/wiki/Manual:Hooks/ThumbnailBeforeProduceHTML
|
2014-03-28 10:06:17 +00:00
|
|
|
* Modify thumbnail DOM
|
|
|
|
* @param ThumbnailImage $thumbnail
|
2017-10-07 15:31:59 +00:00
|
|
|
* @param array &$attribs Attributes of the <img> element
|
|
|
|
* @param array|bool &$linkAttribs Attributes of the wrapping <a> element
|
2014-03-28 10:06:17 +00:00
|
|
|
*/
|
2019-05-10 12:26:15 +00:00
|
|
|
public static function onThumbnailBeforeProduceHTML(
|
|
|
|
ThumbnailImage $thumbnail,
|
|
|
|
array &$attribs,
|
2017-05-19 13:26:17 +00:00
|
|
|
&$linkAttribs
|
|
|
|
) {
|
2014-03-28 10:06:17 +00:00
|
|
|
$file = $thumbnail->getFile();
|
|
|
|
|
|
|
|
if ( $file ) {
|
|
|
|
// At the moment all classes that extend File have getWidth() and getHeight()
|
|
|
|
// but since the File class doesn't have these methods defined, this check
|
|
|
|
// is more future-proof
|
|
|
|
|
|
|
|
if ( method_exists( $file, 'getWidth' ) ) {
|
|
|
|
$attribs['data-file-width'] = $file->getWidth();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( method_exists( $file, 'getHeight' ) ) {
|
|
|
|
$attribs['data-file-height'] = $file->getHeight();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-07 08:59:08 +00:00
|
|
|
}
|