2016-02-03 12:26:01 +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
|
|
|
|
|
*/
|
|
|
|
|
|
Hooks::run() call site migration
Migrate all callers of Hooks::run() to use the new
HookContainer/HookRunner system.
General principles:
* Use DI if it is already used. We're not changing the way state is
managed in this patch.
* HookContainer is always injected, not HookRunner. HookContainer
is a service, it's a more generic interface, it is the only
thing that provides isRegistered() which is needed in some cases,
and a HookRunner can be efficiently constructed from it
(confirmed by benchmark). Because HookContainer is needed
for object construction, it is also needed by all factories.
* "Ask your friendly local base class". Big hierarchies like
SpecialPage and ApiBase have getHookContainer() and getHookRunner()
methods in the base class, and classes that extend that base class
are not expected to know or care where the base class gets its
HookContainer from.
* ProtectedHookAccessorTrait provides protected getHookContainer() and
getHookRunner() methods, getting them from the global service
container. The point of this is to ease migration to DI by ensuring
that call sites ask their local friendly base class rather than
getting a HookRunner from the service container directly.
* Private $this->hookRunner. In some smaller classes where accessor
methods did not seem warranted, there is a private HookRunner property
which is accessed directly. Very rarely (two cases), there is a
protected property, for consistency with code that conventionally
assumes protected=private, but in cases where the class might actually
be overridden, a protected accessor is preferred over a protected
property.
* The last resort: Hooks::runner(). Mostly for static, file-scope and
global code. In a few cases it was used for objects with broken
construction schemes, out of horror or laziness.
Constructors with new required arguments:
* AuthManager
* BadFileLookup
* BlockManager
* ClassicInterwikiLookup
* ContentHandlerFactory
* ContentSecurityPolicy
* DefaultOptionsManager
* DerivedPageDataUpdater
* FullSearchResultWidget
* HtmlCacheUpdater
* LanguageFactory
* LanguageNameUtils
* LinkRenderer
* LinkRendererFactory
* LocalisationCache
* MagicWordFactory
* MessageCache
* NamespaceInfo
* PageEditStash
* PageHandlerFactory
* PageUpdater
* ParserFactory
* PermissionManager
* RevisionStore
* RevisionStoreFactory
* SearchEngineConfig
* SearchEngineFactory
* SearchFormWidget
* SearchNearMatcher
* SessionBackend
* SpecialPageFactory
* UserNameUtils
* UserOptionsManager
* WatchedItemQueryService
* WatchedItemStore
Constructors with new optional arguments:
* DefaultPreferencesFactory
* Language
* LinkHolderArray
* MovePage
* Parser
* ParserCache
* PasswordReset
* Router
setHookContainer() now required after construction:
* AuthenticationProvider
* ResourceLoaderModule
* SearchEngine
Change-Id: Id442b0dbe43aba84bd5cf801d86dedc768b082c7
2020-03-19 02:42:09 +00:00
|
|
|
use MediaWiki\HookContainer\ProtectedHookAccessorTrait;
|
2018-07-29 12:24:54 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
|
|
|
|
|
2016-02-03 12:26:01 +00:00
|
|
|
/**
|
|
|
|
|
* Builds the image revision log shown on image pages
|
|
|
|
|
*
|
|
|
|
|
* @ingroup Media
|
|
|
|
|
*/
|
|
|
|
|
class ImageHistoryList extends ContextSource {
|
Hooks::run() call site migration
Migrate all callers of Hooks::run() to use the new
HookContainer/HookRunner system.
General principles:
* Use DI if it is already used. We're not changing the way state is
managed in this patch.
* HookContainer is always injected, not HookRunner. HookContainer
is a service, it's a more generic interface, it is the only
thing that provides isRegistered() which is needed in some cases,
and a HookRunner can be efficiently constructed from it
(confirmed by benchmark). Because HookContainer is needed
for object construction, it is also needed by all factories.
* "Ask your friendly local base class". Big hierarchies like
SpecialPage and ApiBase have getHookContainer() and getHookRunner()
methods in the base class, and classes that extend that base class
are not expected to know or care where the base class gets its
HookContainer from.
* ProtectedHookAccessorTrait provides protected getHookContainer() and
getHookRunner() methods, getting them from the global service
container. The point of this is to ease migration to DI by ensuring
that call sites ask their local friendly base class rather than
getting a HookRunner from the service container directly.
* Private $this->hookRunner. In some smaller classes where accessor
methods did not seem warranted, there is a private HookRunner property
which is accessed directly. Very rarely (two cases), there is a
protected property, for consistency with code that conventionally
assumes protected=private, but in cases where the class might actually
be overridden, a protected accessor is preferred over a protected
property.
* The last resort: Hooks::runner(). Mostly for static, file-scope and
global code. In a few cases it was used for objects with broken
construction schemes, out of horror or laziness.
Constructors with new required arguments:
* AuthManager
* BadFileLookup
* BlockManager
* ClassicInterwikiLookup
* ContentHandlerFactory
* ContentSecurityPolicy
* DefaultOptionsManager
* DerivedPageDataUpdater
* FullSearchResultWidget
* HtmlCacheUpdater
* LanguageFactory
* LanguageNameUtils
* LinkRenderer
* LinkRendererFactory
* LocalisationCache
* MagicWordFactory
* MessageCache
* NamespaceInfo
* PageEditStash
* PageHandlerFactory
* PageUpdater
* ParserFactory
* PermissionManager
* RevisionStore
* RevisionStoreFactory
* SearchEngineConfig
* SearchEngineFactory
* SearchFormWidget
* SearchNearMatcher
* SessionBackend
* SpecialPageFactory
* UserNameUtils
* UserOptionsManager
* WatchedItemQueryService
* WatchedItemStore
Constructors with new optional arguments:
* DefaultPreferencesFactory
* Language
* LinkHolderArray
* MovePage
* Parser
* ParserCache
* PasswordReset
* Router
setHookContainer() now required after construction:
* AuthenticationProvider
* ResourceLoaderModule
* SearchEngine
Change-Id: Id442b0dbe43aba84bd5cf801d86dedc768b082c7
2020-03-19 02:42:09 +00:00
|
|
|
use ProtectedHookAccessorTrait;
|
2016-02-03 12:26:01 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var Title
|
|
|
|
|
*/
|
|
|
|
|
protected $title;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var File
|
|
|
|
|
*/
|
|
|
|
|
protected $img;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var ImagePage
|
|
|
|
|
*/
|
|
|
|
|
protected $imagePage;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var File
|
|
|
|
|
*/
|
|
|
|
|
protected $current;
|
|
|
|
|
|
|
|
|
|
protected $repo, $showThumb;
|
|
|
|
|
protected $preventClickjacking = false;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param ImagePage $imagePage
|
|
|
|
|
*/
|
|
|
|
|
public function __construct( $imagePage ) {
|
2018-12-31 20:13:49 +00:00
|
|
|
$context = $imagePage->getContext();
|
2016-02-06 22:08:26 +00:00
|
|
|
$this->current = $imagePage->getPage()->getFile();
|
2016-02-03 12:26:01 +00:00
|
|
|
$this->img = $imagePage->getDisplayedFile();
|
|
|
|
|
$this->title = $imagePage->getTitle();
|
|
|
|
|
$this->imagePage = $imagePage;
|
2018-12-31 20:13:49 +00:00
|
|
|
$this->showThumb = $context->getConfig()->get( 'ShowArchiveThumbnails' ) &&
|
|
|
|
|
$this->img->canRender();
|
|
|
|
|
$this->setContext( $context );
|
2016-02-03 12:26:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return ImagePage
|
|
|
|
|
*/
|
|
|
|
|
public function getImagePage() {
|
|
|
|
|
return $this->imagePage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return File
|
|
|
|
|
*/
|
|
|
|
|
public function getFile() {
|
|
|
|
|
return $this->img;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string $navLinks
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function beginImageHistoryList( $navLinks = '' ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
return Xml::element( 'h2', [ 'id' => 'filehistory' ], $this->msg( 'filehist' )->text() )
|
2016-02-03 12:26:01 +00:00
|
|
|
. "\n"
|
|
|
|
|
. "<div id=\"mw-imagepage-section-filehistory\">\n"
|
|
|
|
|
. $this->msg( 'filehist-help' )->parseAsBlock()
|
|
|
|
|
. $navLinks . "\n"
|
2016-02-17 09:09:32 +00:00
|
|
|
. Xml::openElement( 'table', [ 'class' => 'wikitable filehistory' ] ) . "\n"
|
2016-02-03 12:26:01 +00:00
|
|
|
. '<tr><th></th>'
|
|
|
|
|
. ( $this->current->isLocal()
|
2019-08-21 22:42:08 +00:00
|
|
|
&& ( MediaWikiServices::getInstance()
|
|
|
|
|
->getPermissionManager()
|
|
|
|
|
->userHasAnyRight( $this->getUser(), 'delete', 'deletedhistory' ) ) ? '<th></th>' : '' )
|
2016-02-03 12:26:01 +00:00
|
|
|
. '<th>' . $this->msg( 'filehist-datetime' )->escaped() . '</th>'
|
|
|
|
|
. ( $this->showThumb ? '<th>' . $this->msg( 'filehist-thumb' )->escaped() . '</th>' : '' )
|
|
|
|
|
. '<th>' . $this->msg( 'filehist-dimensions' )->escaped() . '</th>'
|
|
|
|
|
. '<th>' . $this->msg( 'filehist-user' )->escaped() . '</th>'
|
|
|
|
|
. '<th>' . $this->msg( 'filehist-comment' )->escaped() . '</th>'
|
|
|
|
|
. "</tr>\n";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string $navLinks
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function endImageHistoryList( $navLinks = '' ) {
|
|
|
|
|
return "</table>\n$navLinks\n</div>\n";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param bool $iscur
|
|
|
|
|
* @param File $file
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function imageHistoryLine( $iscur, $file ) {
|
|
|
|
|
$user = $this->getUser();
|
|
|
|
|
$lang = $this->getLanguage();
|
2019-08-23 23:53:15 +00:00
|
|
|
$pm = MediaWikiServices::getInstance()->getPermissionManager();
|
2019-09-07 09:27:30 +00:00
|
|
|
$linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
|
2016-02-03 12:26:01 +00:00
|
|
|
$timestamp = wfTimestamp( TS_MW, $file->getTimestamp() );
|
2019-08-31 16:14:38 +00:00
|
|
|
// @phan-suppress-next-line PhanUndeclaredMethod
|
2016-02-03 12:26:01 +00:00
|
|
|
$img = $iscur ? $file->getName() : $file->getArchiveName();
|
|
|
|
|
$userId = $file->getUser( 'id' );
|
|
|
|
|
$userText = $file->getUser( 'text' );
|
|
|
|
|
$description = $file->getDescription( File::FOR_THIS_USER, $user );
|
|
|
|
|
|
|
|
|
|
$local = $this->current->isLocal();
|
|
|
|
|
$row = $selected = '';
|
|
|
|
|
|
|
|
|
|
// Deletion link
|
2019-08-21 02:01:06 +00:00
|
|
|
if ( $local && ( $pm->userHasAnyRight( $user, 'delete', 'deletedhistory' ) ) ) {
|
2016-02-03 12:26:01 +00:00
|
|
|
$row .= '<td>';
|
|
|
|
|
# Link to remove from history
|
2019-08-21 02:01:06 +00:00
|
|
|
if ( $pm->userHasRight( $user, 'delete' ) ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$q = [ 'action' => 'delete' ];
|
2016-02-03 12:26:01 +00:00
|
|
|
if ( !$iscur ) {
|
|
|
|
|
$q['oldimage'] = $img;
|
|
|
|
|
}
|
2019-09-07 09:27:30 +00:00
|
|
|
$row .= $linkRenderer->makeKnownLink(
|
2016-02-03 12:26:01 +00:00
|
|
|
$this->title,
|
2019-09-07 09:27:30 +00:00
|
|
|
$this->msg( $iscur ? 'filehist-deleteall' : 'filehist-deleteone' )->text(),
|
2016-02-17 09:09:32 +00:00
|
|
|
[], $q
|
2016-02-03 12:26:01 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
# Link to hide content. Don't show useless link to people who cannot hide revisions.
|
2019-08-21 02:01:06 +00:00
|
|
|
$canHide = $pm->userHasRight( $user, 'deleterevision' );
|
|
|
|
|
if ( $canHide || ( $pm->userHasRight( $user, 'deletedhistory' )
|
|
|
|
|
&& $file->getVisibility() ) ) {
|
|
|
|
|
if ( $pm->userHasRight( $user, 'delete' ) ) {
|
2016-02-03 12:26:01 +00:00
|
|
|
$row .= '<br />';
|
|
|
|
|
}
|
|
|
|
|
// If file is top revision or locked from this user, don't link
|
|
|
|
|
if ( $iscur || !$file->userCan( File::DELETED_RESTRICTED, $user ) ) {
|
|
|
|
|
$del = Linker::revDeleteLinkDisabled( $canHide );
|
|
|
|
|
} else {
|
|
|
|
|
list( $ts, ) = explode( '!', $img, 2 );
|
2016-02-17 09:09:32 +00:00
|
|
|
$query = [
|
2016-02-03 12:26:01 +00:00
|
|
|
'type' => 'oldimage',
|
|
|
|
|
'target' => $this->title->getPrefixedText(),
|
|
|
|
|
'ids' => $ts,
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2016-02-03 12:26:01 +00:00
|
|
|
$del = Linker::revDeleteLink( $query,
|
|
|
|
|
$file->isDeleted( File::DELETED_RESTRICTED ), $canHide );
|
|
|
|
|
}
|
|
|
|
|
$row .= $del;
|
|
|
|
|
}
|
|
|
|
|
$row .= '</td>';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Reversion link/current indicator
|
|
|
|
|
$row .= '<td>';
|
|
|
|
|
if ( $iscur ) {
|
|
|
|
|
$row .= $this->msg( 'filehist-current' )->escaped();
|
2019-08-23 23:53:15 +00:00
|
|
|
} elseif ( $local && $pm->quickUserCan( 'edit', $user, $this->title )
|
|
|
|
|
&& $pm->quickUserCan( 'upload', $user, $this->title )
|
2016-02-03 12:26:01 +00:00
|
|
|
) {
|
|
|
|
|
if ( $file->isDeleted( File::DELETED_FILE ) ) {
|
|
|
|
|
$row .= $this->msg( 'filehist-revert' )->escaped();
|
|
|
|
|
} else {
|
2019-09-07 09:27:30 +00:00
|
|
|
$row .= $linkRenderer->makeKnownLink(
|
2016-02-03 12:26:01 +00:00
|
|
|
$this->title,
|
2019-09-07 09:27:30 +00:00
|
|
|
$this->msg( 'filehist-revert' )->text(),
|
2016-02-17 09:09:32 +00:00
|
|
|
[],
|
|
|
|
|
[
|
2016-02-03 12:26:01 +00:00
|
|
|
'action' => 'revert',
|
|
|
|
|
'oldimage' => $img,
|
2016-02-17 09:09:32 +00:00
|
|
|
]
|
2016-02-03 12:26:01 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$row .= '</td>';
|
|
|
|
|
|
|
|
|
|
// Date/time and image link
|
|
|
|
|
if ( $file->getTimestamp() === $this->img->getTimestamp() ) {
|
|
|
|
|
$selected = "class='filehistory-selected'";
|
|
|
|
|
}
|
|
|
|
|
$row .= "<td $selected style='white-space: nowrap;'>";
|
|
|
|
|
if ( !$file->userCan( File::DELETED_FILE, $user ) ) {
|
|
|
|
|
# Don't link to unviewable files
|
2019-02-17 11:45:06 +00:00
|
|
|
$row .= Html::element( 'span', [ 'class' => 'history-deleted' ],
|
|
|
|
|
$lang->userTimeAndDate( $timestamp, $user )
|
|
|
|
|
);
|
2016-02-03 12:26:01 +00:00
|
|
|
} elseif ( $file->isDeleted( File::DELETED_FILE ) ) {
|
2019-09-07 09:27:30 +00:00
|
|
|
$timeAndDate = $lang->userTimeAndDate( $timestamp, $user );
|
2016-02-03 12:26:01 +00:00
|
|
|
if ( $local ) {
|
|
|
|
|
$this->preventClickjacking();
|
|
|
|
|
$revdel = SpecialPage::getTitleFor( 'Revisiondelete' );
|
|
|
|
|
# Make a link to review the image
|
2019-09-07 09:27:30 +00:00
|
|
|
$url = $linkRenderer->makeKnownLink(
|
2016-02-03 12:26:01 +00:00
|
|
|
$revdel,
|
2019-02-17 11:45:06 +00:00
|
|
|
$timeAndDate,
|
2016-02-17 09:09:32 +00:00
|
|
|
[],
|
|
|
|
|
[
|
2016-02-03 12:26:01 +00:00
|
|
|
'target' => $this->title->getPrefixedText(),
|
|
|
|
|
'file' => $img,
|
|
|
|
|
'token' => $user->getEditToken( $img )
|
2016-02-17 09:09:32 +00:00
|
|
|
]
|
2016-02-03 12:26:01 +00:00
|
|
|
);
|
|
|
|
|
} else {
|
2019-09-07 09:27:30 +00:00
|
|
|
$url = htmlspecialchars( $timeAndDate );
|
2016-02-03 12:26:01 +00:00
|
|
|
}
|
|
|
|
|
$row .= '<span class="history-deleted">' . $url . '</span>';
|
|
|
|
|
} elseif ( !$file->exists() ) {
|
2019-02-17 11:45:06 +00:00
|
|
|
$row .= Html::element( 'span', [ 'class' => 'mw-file-missing' ],
|
|
|
|
|
$lang->userTimeAndDate( $timestamp, $user )
|
|
|
|
|
);
|
2016-02-03 12:26:01 +00:00
|
|
|
} else {
|
|
|
|
|
$url = $iscur ? $this->current->getUrl() : $this->current->getArchiveUrl( $img );
|
|
|
|
|
$row .= Xml::element(
|
|
|
|
|
'a',
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'href' => $url ],
|
2016-02-03 12:26:01 +00:00
|
|
|
$lang->userTimeAndDate( $timestamp, $user )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
$row .= "</td>";
|
|
|
|
|
|
|
|
|
|
// Thumbnail
|
|
|
|
|
if ( $this->showThumb ) {
|
|
|
|
|
$row .= '<td>' . $this->getThumbForLine( $file ) . '</td>';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Image dimensions + size
|
|
|
|
|
$row .= '<td>';
|
|
|
|
|
$row .= htmlspecialchars( $file->getDimensionsString() );
|
|
|
|
|
$row .= $this->msg( 'word-separator' )->escaped();
|
|
|
|
|
$row .= '<span style="white-space: nowrap;">';
|
|
|
|
|
$row .= $this->msg( 'parentheses' )->sizeParams( $file->getSize() )->escaped();
|
|
|
|
|
$row .= '</span>';
|
|
|
|
|
$row .= '</td>';
|
|
|
|
|
|
|
|
|
|
// Uploading user
|
|
|
|
|
$row .= '<td>';
|
|
|
|
|
// Hide deleted usernames
|
|
|
|
|
if ( $file->isDeleted( File::DELETED_USER ) ) {
|
|
|
|
|
$row .= '<span class="history-deleted">'
|
|
|
|
|
. $this->msg( 'rev-deleted-user' )->escaped() . '</span>';
|
|
|
|
|
} else {
|
|
|
|
|
if ( $local ) {
|
|
|
|
|
$row .= Linker::userLink( $userId, $userText );
|
|
|
|
|
$row .= '<span style="white-space: nowrap;">';
|
|
|
|
|
$row .= Linker::userToolLinks( $userId, $userText );
|
|
|
|
|
$row .= '</span>';
|
|
|
|
|
} else {
|
|
|
|
|
$row .= htmlspecialchars( $userText );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$row .= '</td>';
|
|
|
|
|
|
|
|
|
|
// Don't show deleted descriptions
|
|
|
|
|
if ( $file->isDeleted( File::DELETED_COMMENT ) ) {
|
|
|
|
|
$row .= '<td><span class="history-deleted">' .
|
|
|
|
|
$this->msg( 'rev-deleted-comment' )->escaped() . '</span></td>';
|
|
|
|
|
} else {
|
2019-02-17 11:45:06 +00:00
|
|
|
$contLang = MediaWikiServices::getInstance()->getContentLanguage();
|
|
|
|
|
$row .= Html::rawElement(
|
|
|
|
|
'td',
|
|
|
|
|
[ 'dir' => $contLang->getDir() ],
|
|
|
|
|
Linker::formatComment( $description, $this->title )
|
|
|
|
|
);
|
2016-02-03 12:26:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$rowClass = null;
|
Hooks::run() call site migration
Migrate all callers of Hooks::run() to use the new
HookContainer/HookRunner system.
General principles:
* Use DI if it is already used. We're not changing the way state is
managed in this patch.
* HookContainer is always injected, not HookRunner. HookContainer
is a service, it's a more generic interface, it is the only
thing that provides isRegistered() which is needed in some cases,
and a HookRunner can be efficiently constructed from it
(confirmed by benchmark). Because HookContainer is needed
for object construction, it is also needed by all factories.
* "Ask your friendly local base class". Big hierarchies like
SpecialPage and ApiBase have getHookContainer() and getHookRunner()
methods in the base class, and classes that extend that base class
are not expected to know or care where the base class gets its
HookContainer from.
* ProtectedHookAccessorTrait provides protected getHookContainer() and
getHookRunner() methods, getting them from the global service
container. The point of this is to ease migration to DI by ensuring
that call sites ask their local friendly base class rather than
getting a HookRunner from the service container directly.
* Private $this->hookRunner. In some smaller classes where accessor
methods did not seem warranted, there is a private HookRunner property
which is accessed directly. Very rarely (two cases), there is a
protected property, for consistency with code that conventionally
assumes protected=private, but in cases where the class might actually
be overridden, a protected accessor is preferred over a protected
property.
* The last resort: Hooks::runner(). Mostly for static, file-scope and
global code. In a few cases it was used for objects with broken
construction schemes, out of horror or laziness.
Constructors with new required arguments:
* AuthManager
* BadFileLookup
* BlockManager
* ClassicInterwikiLookup
* ContentHandlerFactory
* ContentSecurityPolicy
* DefaultOptionsManager
* DerivedPageDataUpdater
* FullSearchResultWidget
* HtmlCacheUpdater
* LanguageFactory
* LanguageNameUtils
* LinkRenderer
* LinkRendererFactory
* LocalisationCache
* MagicWordFactory
* MessageCache
* NamespaceInfo
* PageEditStash
* PageHandlerFactory
* PageUpdater
* ParserFactory
* PermissionManager
* RevisionStore
* RevisionStoreFactory
* SearchEngineConfig
* SearchEngineFactory
* SearchFormWidget
* SearchNearMatcher
* SessionBackend
* SpecialPageFactory
* UserNameUtils
* UserOptionsManager
* WatchedItemQueryService
* WatchedItemStore
Constructors with new optional arguments:
* DefaultPreferencesFactory
* Language
* LinkHolderArray
* MovePage
* Parser
* ParserCache
* PasswordReset
* Router
setHookContainer() now required after construction:
* AuthenticationProvider
* ResourceLoaderModule
* SearchEngine
Change-Id: Id442b0dbe43aba84bd5cf801d86dedc768b082c7
2020-03-19 02:42:09 +00:00
|
|
|
$this->getHookRunner()->onImagePageFileHistoryLine( $this, $file, $row, $rowClass );
|
2016-02-03 12:26:01 +00:00
|
|
|
$classAttr = $rowClass ? " class='$rowClass'" : '';
|
|
|
|
|
|
|
|
|
|
return "<tr{$classAttr}>{$row}</tr>\n";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param File $file
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
protected function getThumbForLine( $file ) {
|
|
|
|
|
$lang = $this->getLanguage();
|
|
|
|
|
$user = $this->getUser();
|
|
|
|
|
if ( $file->allowInlineDisplay() && $file->userCan( File::DELETED_FILE, $user )
|
|
|
|
|
&& !$file->isDeleted( File::DELETED_FILE )
|
|
|
|
|
) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$params = [
|
2016-02-03 12:26:01 +00:00
|
|
|
'width' => '120',
|
|
|
|
|
'height' => '120',
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2016-02-03 12:26:01 +00:00
|
|
|
$timestamp = wfTimestamp( TS_MW, $file->getTimestamp() );
|
|
|
|
|
|
|
|
|
|
$thumbnail = $file->transform( $params );
|
2016-02-17 09:09:32 +00:00
|
|
|
$options = [
|
2016-02-03 12:26:01 +00:00
|
|
|
'alt' => $this->msg( 'filehist-thumbtext',
|
|
|
|
|
$lang->userTimeAndDate( $timestamp, $user ),
|
|
|
|
|
$lang->userDate( $timestamp, $user ),
|
|
|
|
|
$lang->userTime( $timestamp, $user ) )->text(),
|
|
|
|
|
'file-link' => true,
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2016-02-03 12:26:01 +00:00
|
|
|
|
|
|
|
|
if ( !$thumbnail ) {
|
|
|
|
|
return $this->msg( 'filehist-nothumb' )->escaped();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $thumbnail->toHtml( $options );
|
|
|
|
|
} else {
|
|
|
|
|
return $this->msg( 'filehist-nothumb' )->escaped();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param bool $enable
|
|
|
|
|
*/
|
|
|
|
|
protected function preventClickjacking( $enable = true ) {
|
|
|
|
|
$this->preventClickjacking = $enable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function getPreventClickjacking() {
|
|
|
|
|
return $this->preventClickjacking;
|
|
|
|
|
}
|
|
|
|
|
}
|