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
|
|
|
|
|
*/
|
|
|
|
|
|
2024-02-08 14:56:54 +00:00
|
|
|
use MediaWiki\Context\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 MediaWiki\HookContainer\ProtectedHookAccessorTrait;
|
2023-02-16 19:27:21 +00:00
|
|
|
use MediaWiki\Html\Html;
|
2022-12-05 11:29:37 +00:00
|
|
|
use MediaWiki\Linker\Linker;
|
2022-04-10 15:34:45 +00:00
|
|
|
use MediaWiki\MainConfigNames;
|
2018-07-29 12:24:54 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
2023-09-15 09:32:18 +00:00
|
|
|
use MediaWiki\SpecialPage\SpecialPage;
|
2023-03-01 20:33:26 +00:00
|
|
|
use MediaWiki\Title\Title;
|
2018-07-29 12:24:54 +00:00
|
|
|
|
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
|
|
|
|
2024-06-10 20:49:30 +00:00
|
|
|
protected Title $title;
|
|
|
|
|
protected File $img;
|
|
|
|
|
protected ImagePage $imagePage;
|
|
|
|
|
protected File $current;
|
2016-02-03 12:26:01 +00:00
|
|
|
|
2024-04-21 14:43:38 +00:00
|
|
|
protected bool $showThumb;
|
2024-09-05 19:41:19 +00:00
|
|
|
/** @var bool */
|
2016-02-03 12:26:01 +00:00
|
|
|
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;
|
2022-04-10 15:34:45 +00:00
|
|
|
$this->showThumb = $context->getConfig()->get( MainConfigNames::ShowArchiveThumbnails ) &&
|
2018-12-31 20:13:49 +00:00
|
|
|
$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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2021-11-28 01:05:18 +00:00
|
|
|
public function beginImageHistoryList() {
|
2021-11-15 22:00:20 +00:00
|
|
|
// Styles for class=history-deleted
|
|
|
|
|
$this->getOutput()->addModuleStyles( 'mediawiki.interface.helpers.styles' );
|
|
|
|
|
|
2021-12-01 08:50:48 +00:00
|
|
|
$html = '';
|
2021-05-12 07:14:02 +00:00
|
|
|
$canDelete = $this->current->isLocal() &&
|
|
|
|
|
$this->getAuthority()->isAllowedAny( 'delete', 'deletedhistory' );
|
|
|
|
|
|
|
|
|
|
foreach ( [
|
|
|
|
|
'',
|
|
|
|
|
$canDelete ? '' : null,
|
|
|
|
|
'filehist-datetime',
|
|
|
|
|
$this->showThumb ? 'filehist-thumb' : null,
|
|
|
|
|
'filehist-dimensions',
|
|
|
|
|
'filehist-user',
|
|
|
|
|
'filehist-comment',
|
|
|
|
|
] as $key ) {
|
|
|
|
|
if ( $key !== null ) {
|
2021-12-01 08:50:48 +00:00
|
|
|
$html .= Html::element( 'th', [], $key ? $this->msg( $key )->text() : '' );
|
2021-05-12 07:14:02 +00:00
|
|
|
}
|
|
|
|
|
}
|
2021-12-01 08:50:48 +00:00
|
|
|
|
2021-11-28 01:05:18 +00:00
|
|
|
return Html::openElement( 'table', [ 'class' => 'wikitable filehistory' ] ) . "\n"
|
2021-12-01 08:50:48 +00:00
|
|
|
. Html::rawElement( 'tr', [], $html ) . "\n";
|
2016-02-03 12:26:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2021-11-28 01:05:18 +00:00
|
|
|
public function endImageHistoryList() {
|
|
|
|
|
return Html::closeElement( 'table' ) . "\n";
|
2016-02-03 12:26:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
Introduce CommentFormatter
CommentParser:
* Move comment formatting backend from Linker to a CommentParser service.
Allow link existence and file existence to be batched.
* Rename $local to $samePage since I think that is clearer.
* Rename $title to $selfLinkTarget since it was unclear what the title
was used for.
* Rename the "autocomment" concept to "section link" in public
interfaces, although the old term remains in CSS classes.
* Keep unsafe HTML pass-through in separate "unsafe" methods, for easier
static analysis and code review.
CommentFormatter:
* Add CommentFormatter and RowCommentFormatter services as a usable
frontend for comment batches, and to replace the Linker static methods.
* Provide fluent and parametric interfaces.
Linker:
* Remove Linker::makeCommentLink() without deprecation -- nothing calls
it and it is obviously an internal helper.
* Soft-deprecate Linker methods formatComment(), formatLinksInComment(),
commentBlock() and revComment().
Caller migration:
* CommentFormatter single: Linker, RollbackAction, ApiComparePages,
ApiParse
* CommentFormatter parametric batch: ImageHistoryPseudoPager
* CommentFormatter fluent batch: ApiQueryFilearchive
* RowCommentFormatter sequential: History feed, BlocklistPager,
ProtectedPagesPager, ApiQueryProtectedTitles
* RowCommentFormatter with index: ChangesFeed, ChangesList,
ApiQueryDeletedrevs, ApiQueryLogEvents, ApiQueryRecentChanges
* RevisionCommentBatch: HistoryPager, ContribsPager
Bug: T285917
Change-Id: Ia3fd50a4a13138ba5003d884962da24746d562d0
2021-07-01 06:55:03 +00:00
|
|
|
* @internal
|
2016-02-03 12:26:01 +00:00
|
|
|
* @param bool $iscur
|
|
|
|
|
* @param File $file
|
Introduce CommentFormatter
CommentParser:
* Move comment formatting backend from Linker to a CommentParser service.
Allow link existence and file existence to be batched.
* Rename $local to $samePage since I think that is clearer.
* Rename $title to $selfLinkTarget since it was unclear what the title
was used for.
* Rename the "autocomment" concept to "section link" in public
interfaces, although the old term remains in CSS classes.
* Keep unsafe HTML pass-through in separate "unsafe" methods, for easier
static analysis and code review.
CommentFormatter:
* Add CommentFormatter and RowCommentFormatter services as a usable
frontend for comment batches, and to replace the Linker static methods.
* Provide fluent and parametric interfaces.
Linker:
* Remove Linker::makeCommentLink() without deprecation -- nothing calls
it and it is obviously an internal helper.
* Soft-deprecate Linker methods formatComment(), formatLinksInComment(),
commentBlock() and revComment().
Caller migration:
* CommentFormatter single: Linker, RollbackAction, ApiComparePages,
ApiParse
* CommentFormatter parametric batch: ImageHistoryPseudoPager
* CommentFormatter fluent batch: ApiQueryFilearchive
* RowCommentFormatter sequential: History feed, BlocklistPager,
ProtectedPagesPager, ApiQueryProtectedTitles
* RowCommentFormatter with index: ChangesFeed, ChangesList,
ApiQueryDeletedrevs, ApiQueryLogEvents, ApiQueryRecentChanges
* RevisionCommentBatch: HistoryPager, ContribsPager
Bug: T285917
Change-Id: Ia3fd50a4a13138ba5003d884962da24746d562d0
2021-07-01 06:55:03 +00:00
|
|
|
* @param string $formattedComment
|
2016-02-03 12:26:01 +00:00
|
|
|
* @return string
|
|
|
|
|
*/
|
Introduce CommentFormatter
CommentParser:
* Move comment formatting backend from Linker to a CommentParser service.
Allow link existence and file existence to be batched.
* Rename $local to $samePage since I think that is clearer.
* Rename $title to $selfLinkTarget since it was unclear what the title
was used for.
* Rename the "autocomment" concept to "section link" in public
interfaces, although the old term remains in CSS classes.
* Keep unsafe HTML pass-through in separate "unsafe" methods, for easier
static analysis and code review.
CommentFormatter:
* Add CommentFormatter and RowCommentFormatter services as a usable
frontend for comment batches, and to replace the Linker static methods.
* Provide fluent and parametric interfaces.
Linker:
* Remove Linker::makeCommentLink() without deprecation -- nothing calls
it and it is obviously an internal helper.
* Soft-deprecate Linker methods formatComment(), formatLinksInComment(),
commentBlock() and revComment().
Caller migration:
* CommentFormatter single: Linker, RollbackAction, ApiComparePages,
ApiParse
* CommentFormatter parametric batch: ImageHistoryPseudoPager
* CommentFormatter fluent batch: ApiQueryFilearchive
* RowCommentFormatter sequential: History feed, BlocklistPager,
ProtectedPagesPager, ApiQueryProtectedTitles
* RowCommentFormatter with index: ChangesFeed, ChangesList,
ApiQueryDeletedrevs, ApiQueryLogEvents, ApiQueryRecentChanges
* RevisionCommentBatch: HistoryPager, ContribsPager
Bug: T285917
Change-Id: Ia3fd50a4a13138ba5003d884962da24746d562d0
2021-07-01 06:55:03 +00:00
|
|
|
public function imageHistoryLine( $iscur, $file, $formattedComment ) {
|
2016-02-03 12:26:01 +00:00
|
|
|
$user = $this->getUser();
|
|
|
|
|
$lang = $this->getLanguage();
|
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();
|
2021-05-27 16:56:43 +00:00
|
|
|
$uploader = $file->getUploader( File::FOR_THIS_USER, $user );
|
2016-02-03 12:26:01 +00:00
|
|
|
|
|
|
|
|
$local = $this->current->isLocal();
|
2021-12-01 09:04:06 +00:00
|
|
|
$row = '';
|
2016-02-03 12:26:01 +00:00
|
|
|
|
|
|
|
|
// Deletion link
|
2021-03-02 23:39:12 +00:00
|
|
|
if ( $local && ( $this->getAuthority()->isAllowedAny( 'delete', 'deletedhistory' ) ) ) {
|
2021-12-01 08:50:48 +00:00
|
|
|
$row .= Html::openElement( 'td' );
|
2021-11-28 01:05:18 +00:00
|
|
|
# Link to hide content. Don't show useless link to people who cannot hide revisions.
|
|
|
|
|
if ( !$iscur && $this->getAuthority()->isAllowed( 'deleterevision' ) ) {
|
2023-01-27 15:15:38 +00:00
|
|
|
// If file is top revision, is missing or locked from this user, don't link
|
|
|
|
|
if ( !$file->userCan( File::DELETED_RESTRICTED, $user ) || !$file->exists() ) {
|
2021-11-28 01:05:18 +00:00
|
|
|
$row .= Html::check( 'deleterevisions', false, [ 'disabled' => 'disabled' ] );
|
|
|
|
|
} else {
|
|
|
|
|
$row .= Html::check( 'ids[' . explode( '!', $img, 2 )[0] . ']', false );
|
|
|
|
|
}
|
|
|
|
|
if ( $this->getAuthority()->isAllowed( 'delete' ) ) {
|
|
|
|
|
$row .= ' ';
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-02-03 12:26:01 +00:00
|
|
|
# Link to remove from history
|
2021-03-02 23:39:12 +00:00
|
|
|
if ( $this->getAuthority()->isAllowed( 'delete' ) ) {
|
2023-01-27 15:15:38 +00:00
|
|
|
if ( $file->exists() ) {
|
|
|
|
|
$row .= $linkRenderer->makeKnownLink(
|
|
|
|
|
$this->title,
|
|
|
|
|
$this->msg( $iscur ? 'filehist-deleteall' : 'filehist-deleteone' )->text(),
|
|
|
|
|
[],
|
|
|
|
|
[ 'action' => 'delete', 'oldimage' => $iscur ? null : $img ]
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
// T244567: Non-existing file can not be deleted.
|
|
|
|
|
$row .= $this->msg( 'filehist-missing' )->escaped();
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-03 12:26:01 +00:00
|
|
|
}
|
2021-12-01 08:50:48 +00:00
|
|
|
$row .= Html::closeElement( 'td' );
|
2016-02-03 12:26:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Reversion link/current indicator
|
2021-12-01 08:50:48 +00:00
|
|
|
$row .= Html::openElement( 'td' );
|
2016-02-03 12:26:01 +00:00
|
|
|
if ( $iscur ) {
|
|
|
|
|
$row .= $this->msg( 'filehist-current' )->escaped();
|
2021-03-02 23:39:12 +00:00
|
|
|
} elseif ( $local && $this->getAuthority()->probablyCan( 'edit', $this->title )
|
|
|
|
|
&& $this->getAuthority()->probablyCan( 'upload', $this->title )
|
2016-02-03 12:26:01 +00:00
|
|
|
) {
|
|
|
|
|
if ( $file->isDeleted( File::DELETED_FILE ) ) {
|
|
|
|
|
$row .= $this->msg( 'filehist-revert' )->escaped();
|
2023-01-27 15:15:38 +00:00
|
|
|
} elseif ( !$file->exists() ) {
|
|
|
|
|
// T328112: Lost file, in this case there's no version to revert back to.
|
|
|
|
|
$row .= $this->msg( 'filehist-missing' )->escaped();
|
2016-02-03 12:26:01 +00:00
|
|
|
} 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
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-01 08:50:48 +00:00
|
|
|
$row .= Html::closeElement( 'td' );
|
2016-02-03 12:26:01 +00:00
|
|
|
|
|
|
|
|
// Date/time and image link
|
2021-12-01 08:50:48 +00:00
|
|
|
$selected = $file->getTimestamp() === $this->img->getTimestamp();
|
|
|
|
|
$row .= Html::openElement( 'td', [
|
|
|
|
|
'class' => $selected ? 'filehistory-selected' : null,
|
|
|
|
|
'style' => 'white-space: nowrap;'
|
|
|
|
|
] );
|
2016-02-03 12:26:01 +00:00
|
|
|
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 ) {
|
2021-09-29 20:58:59 +00:00
|
|
|
$this->setPreventClickjacking( true );
|
2016-02-03 12:26:01 +00:00
|
|
|
# Make a link to review the image
|
2019-09-07 09:27:30 +00:00
|
|
|
$url = $linkRenderer->makeKnownLink(
|
2021-12-01 09:04:06 +00:00
|
|
|
SpecialPage::getTitleFor( 'Revisiondelete' ),
|
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,
|
2021-08-05 06:54:11 +00:00
|
|
|
'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
|
|
|
}
|
2021-12-01 08:50:48 +00:00
|
|
|
$row .= Html::rawElement( 'span', [ 'class' => 'history-deleted' ], $url );
|
2016-02-03 12:26:01 +00:00
|
|
|
} 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 );
|
2021-12-01 08:50:48 +00:00
|
|
|
$row .= Html::element( 'a', [ 'href' => $url ],
|
2016-02-03 12:26:01 +00:00
|
|
|
$lang->userTimeAndDate( $timestamp, $user )
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-12-01 08:50:48 +00:00
|
|
|
$row .= Html::closeElement( 'td' );
|
2016-02-03 12:26:01 +00:00
|
|
|
|
|
|
|
|
// Thumbnail
|
|
|
|
|
if ( $this->showThumb ) {
|
2021-12-01 08:50:48 +00:00
|
|
|
$row .= Html::rawElement( 'td', [],
|
2022-01-23 06:05:18 +00:00
|
|
|
$this->getThumbForLine( $file, $iscur ) ?? $this->msg( 'filehist-nothumb' )->escaped()
|
2021-12-01 08:50:48 +00:00
|
|
|
);
|
2016-02-03 12:26:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Image dimensions + size
|
2021-12-01 08:50:48 +00:00
|
|
|
$row .= Html::openElement( 'td' );
|
2016-02-03 12:26:01 +00:00
|
|
|
$row .= htmlspecialchars( $file->getDimensionsString() );
|
|
|
|
|
$row .= $this->msg( 'word-separator' )->escaped();
|
2021-12-01 08:50:48 +00:00
|
|
|
$row .= Html::element( 'span', [ 'style' => 'white-space: nowrap;' ],
|
|
|
|
|
$this->msg( 'parentheses' )->sizeParams( $file->getSize() )->text()
|
|
|
|
|
);
|
|
|
|
|
$row .= Html::closeElement( 'td' );
|
2016-02-03 12:26:01 +00:00
|
|
|
|
|
|
|
|
// Uploading user
|
2021-12-01 08:50:48 +00:00
|
|
|
$row .= Html::openElement( 'td' );
|
2016-02-03 12:26:01 +00:00
|
|
|
// Hide deleted usernames
|
2023-09-05 13:18:56 +00:00
|
|
|
if ( $uploader ) {
|
2021-05-27 16:56:43 +00:00
|
|
|
$row .= Linker::userLink( $uploader->getId(), $uploader->getName() );
|
2023-09-05 13:18:56 +00:00
|
|
|
if ( $local ) {
|
|
|
|
|
$row .= Html::rawElement( 'span', [ 'style' => 'white-space: nowrap;' ],
|
|
|
|
|
Linker::userToolLinks( $uploader->getId(), $uploader->getName() )
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-05-27 16:56:43 +00:00
|
|
|
} else {
|
2021-12-01 08:50:48 +00:00
|
|
|
$row .= Html::element( 'span', [ 'class' => 'history-deleted' ],
|
|
|
|
|
$this->msg( 'rev-deleted-user' )->text()
|
|
|
|
|
);
|
2016-02-03 12:26:01 +00:00
|
|
|
}
|
2021-12-01 08:50:48 +00:00
|
|
|
$row .= Html::closeElement( 'td' );
|
2016-02-03 12:26:01 +00:00
|
|
|
|
|
|
|
|
// Don't show deleted descriptions
|
|
|
|
|
if ( $file->isDeleted( File::DELETED_COMMENT ) ) {
|
2021-12-01 08:50:48 +00:00
|
|
|
$row .= Html::rawElement( 'td', [],
|
|
|
|
|
Html::element( 'span', [ 'class' => 'history-deleted' ],
|
|
|
|
|
$this->msg( 'rev-deleted-comment' )->text()
|
|
|
|
|
)
|
|
|
|
|
);
|
2016-02-03 12:26:01 +00:00
|
|
|
} else {
|
2019-02-17 11:45:06 +00:00
|
|
|
$contLang = MediaWikiServices::getInstance()->getContentLanguage();
|
2021-12-01 09:04:06 +00:00
|
|
|
$row .= Html::rawElement( 'td', [ 'dir' => $contLang->getDir() ], $formattedComment );
|
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
|
|
|
|
2021-12-01 08:50:48 +00:00
|
|
|
return Html::rawElement( 'tr', [ 'class' => $rowClass ], $row ) . "\n";
|
2016-02-03 12:26:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param File $file
|
2022-01-23 06:05:18 +00:00
|
|
|
* @param bool $iscur
|
2021-05-12 07:14:02 +00:00
|
|
|
* @return string|null
|
2016-02-03 12:26:01 +00:00
|
|
|
*/
|
2022-01-23 06:05:18 +00:00
|
|
|
protected function getThumbForLine( $file, $iscur ) {
|
2016-02-03 12:26:01 +00:00
|
|
|
$user = $this->getUser();
|
2021-05-12 07:14:02 +00:00
|
|
|
if ( !$file->allowInlineDisplay() ||
|
|
|
|
|
$file->isDeleted( File::DELETED_FILE ) ||
|
|
|
|
|
!$file->userCan( File::DELETED_FILE, $user )
|
2016-02-03 12:26:01 +00:00
|
|
|
) {
|
2021-05-12 07:14:02 +00:00
|
|
|
return null;
|
|
|
|
|
}
|
2016-02-03 12:26:01 +00:00
|
|
|
|
2022-01-23 06:05:18 +00:00
|
|
|
$thumbnail = $file->transform(
|
|
|
|
|
[
|
|
|
|
|
'width' => '120',
|
|
|
|
|
'height' => '120',
|
|
|
|
|
'isFilePageThumb' => $iscur // old revisions are already versioned
|
|
|
|
|
]
|
|
|
|
|
);
|
2021-05-12 07:14:02 +00:00
|
|
|
if ( !$thumbnail ) {
|
|
|
|
|
return null;
|
2016-02-03 12:26:01 +00:00
|
|
|
}
|
2021-05-12 07:14:02 +00:00
|
|
|
|
|
|
|
|
$lang = $this->getLanguage();
|
|
|
|
|
$timestamp = wfTimestamp( TS_MW, $file->getTimestamp() );
|
|
|
|
|
$alt = $this->msg(
|
|
|
|
|
'filehist-thumbtext',
|
|
|
|
|
$lang->userTimeAndDate( $timestamp, $user ),
|
|
|
|
|
$lang->userDate( $timestamp, $user ),
|
|
|
|
|
$lang->userTime( $timestamp, $user )
|
|
|
|
|
)->text();
|
2023-11-16 22:14:57 +00:00
|
|
|
return $thumbnail->toHtml( [ 'alt' => $alt, 'file-link' => true, 'loading' => 'lazy' ] );
|
2016-02-03 12:26:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param bool $enable
|
2021-09-29 20:58:59 +00:00
|
|
|
* @deprecated since 1.38, use ::setPreventClickjacking() instead
|
2016-02-03 12:26:01 +00:00
|
|
|
*/
|
|
|
|
|
protected function preventClickjacking( $enable = true ) {
|
|
|
|
|
$this->preventClickjacking = $enable;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-29 20:58:59 +00:00
|
|
|
/**
|
|
|
|
|
* @param bool $enable
|
|
|
|
|
* @since 1.38
|
|
|
|
|
*/
|
|
|
|
|
protected function setPreventClickjacking( bool $enable ) {
|
|
|
|
|
$this->preventClickjacking = $enable;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-03 12:26:01 +00:00
|
|
|
/**
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function getPreventClickjacking() {
|
|
|
|
|
return $this->preventClickjacking;
|
|
|
|
|
}
|
|
|
|
|
}
|