Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F2751567
SpecialListFiles.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
SpecialListFiles.php
View Options
<?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
*/
namespace
MediaWiki\Specials
;
use
MediaWiki\Cache\LinkBatchFactory
;
use
MediaWiki\CommentFormatter\RowCommentFormatter
;
use
MediaWiki\CommentStore\CommentStore
;
use
MediaWiki\FileRepo\RepoGroup
;
use
MediaWiki\Pager\ImageListPager
;
use
MediaWiki\Parser\ParserOptions
;
use
MediaWiki\SpecialPage\IncludableSpecialPage
;
use
MediaWiki\User\UserNamePrefixSearch
;
use
MediaWiki\User\UserNameUtils
;
use
MediaWiki\User\UserRigorOptions
;
use
Wikimedia\Rdbms\IConnectionProvider
;
/**
* Implements Special:Listfiles
*
* @ingroup SpecialPage
*/
class
SpecialListFiles
extends
IncludableSpecialPage
{
private
RepoGroup
$repoGroup
;
private
IConnectionProvider
$dbProvider
;
private
CommentStore
$commentStore
;
private
UserNameUtils
$userNameUtils
;
private
UserNamePrefixSearch
$userNamePrefixSearch
;
private
RowCommentFormatter
$rowCommentFormatter
;
private
LinkBatchFactory
$linkBatchFactory
;
public
function
__construct
(
RepoGroup
$repoGroup
,
IConnectionProvider
$dbProvider
,
CommentStore
$commentStore
,
UserNameUtils
$userNameUtils
,
UserNamePrefixSearch
$userNamePrefixSearch
,
RowCommentFormatter
$rowCommentFormatter
,
LinkBatchFactory
$linkBatchFactory
)
{
parent
::
__construct
(
'Listfiles'
);
$this
->
repoGroup
=
$repoGroup
;
$this
->
dbProvider
=
$dbProvider
;
$this
->
commentStore
=
$commentStore
;
$this
->
userNameUtils
=
$userNameUtils
;
$this
->
userNamePrefixSearch
=
$userNamePrefixSearch
;
$this
->
rowCommentFormatter
=
$rowCommentFormatter
;
$this
->
linkBatchFactory
=
$linkBatchFactory
;
}
public
function
execute
(
$par
)
{
$this
->
setHeaders
();
$this
->
outputHeader
();
$this
->
addHelpLink
(
'Help:Managing_files'
);
if
(
$this
->
including
()
)
{
$userName
=
(
string
)
$par
;
$search
=
''
;
$showAll
=
false
;
}
else
{
$userName
=
$this
->
getRequest
()->
getText
(
'user'
,
$par
??
''
);
$search
=
$this
->
getRequest
()->
getText
(
'ilsearch'
,
''
);
$showAll
=
$this
->
getRequest
()->
getBool
(
'ilshowall'
,
false
);
}
// Sanitize usernames to avoid symbols in the title of page.
$sanitizedUserName
=
$this
->
userNameUtils
->
getCanonical
(
$userName
,
UserRigorOptions
::
RIGOR_NONE
);
if
(
$sanitizedUserName
!==
false
)
{
$userName
=
$sanitizedUserName
;
}
if
(
$userName
!==
''
)
{
$pageTitle
=
$this
->
msg
(
'listfiles_subpage'
)->
plaintextParams
(
$userName
);
}
else
{
$pageTitle
=
$this
->
msg
(
'listfiles'
);
}
$pager
=
new
ImageListPager
(
$this
->
getContext
(),
$this
->
commentStore
,
$this
->
getLinkRenderer
(),
$this
->
dbProvider
,
$this
->
repoGroup
,
$this
->
userNameUtils
,
$this
->
rowCommentFormatter
,
$this
->
linkBatchFactory
,
$userName
,
$search
,
$this
->
including
(),
$showAll
);
$out
=
$this
->
getOutput
();
$out
->
setPageTitleMsg
(
$pageTitle
);
$out
->
addModuleStyles
(
'mediawiki.special'
);
$parserOptions
=
ParserOptions
::
newFromContext
(
$this
->
getContext
()
);
if
(
$this
->
including
()
)
{
$out
->
addParserOutputContent
(
$pager
->
getBodyOutput
(),
$parserOptions
);
}
else
{
$user
=
$pager
->
getRelevantUser
();
if
(
$user
)
{
$this
->
getSkin
()->
setRelevantUser
(
$user
);
}
$pager
->
getForm
();
$out
->
addParserOutputContent
(
$pager
->
getFullOutput
(),
$parserOptions
);
}
}
/**
* Return an array of subpages beginning with $search that this special page will accept.
*
* @param string $search Prefix to search for
* @param int $limit Maximum number of results to return (usually 10)
* @param int $offset Number of results to skip (usually 0)
* @return string[] Matching subpages
*/
public
function
prefixSearchSubpages
(
$search
,
$limit
,
$offset
)
{
$search
=
$this
->
userNameUtils
->
getCanonical
(
$search
);
if
(
!
$search
)
{
// No prefix suggestion for invalid user
return
[];
}
// Autocomplete subpage as user list - public to allow caching
return
$this
->
userNamePrefixSearch
->
search
(
UserNamePrefixSearch
::
AUDIENCE_PUBLIC
,
$search
,
$limit
,
$offset
);
}
protected
function
getGroupName
()
{
return
'media'
;
}
}
/** @deprecated class alias since 1.41 */
class_alias
(
SpecialListFiles
::
class
,
'SpecialListFiles'
);
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Jul 3, 18:49 (1 d, 17 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
45/31/b5ab89caf8c733f27fcd45fefa85
Default Alt Text
SpecialListFiles.php (4 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment