MediaWiki  1.33.0
SpecialMIMEsearch.php
Go to the documentation of this file.
1 <?php
26 
32 class MIMEsearchPage extends QueryPage {
33  protected $major, $minor, $mime;
34 
35  function __construct( $name = 'MIMEsearch' ) {
36  parent::__construct( $name );
37  }
38 
39  public function isExpensive() {
40  return false;
41  }
42 
43  function isSyndicated() {
44  return false;
45  }
46 
47  function isCacheable() {
48  return false;
49  }
50 
51  function linkParameters() {
52  return [ 'mime' => "{$this->major}/{$this->minor}" ];
53  }
54 
55  public function getQueryInfo() {
56  $minorType = [];
57  if ( $this->minor !== '*' ) {
58  // Allow wildcard searching
59  $minorType['img_minor_mime'] = $this->minor;
60  }
61  $imgQuery = LocalFile::getQueryInfo();
62  $qi = [
63  'tables' => $imgQuery['tables'],
64  'fields' => [
65  'namespace' => NS_FILE,
66  'title' => 'img_name',
67  // Still have a value field just in case,
68  // but it isn't actually used for sorting.
69  'value' => 'img_name',
70  'img_size',
71  'img_width',
72  'img_height',
73  'img_user_text' => $imgQuery['fields']['img_user_text'],
74  'img_timestamp'
75  ],
76  'conds' => [
77  'img_major_mime' => $this->major,
78  // This is in order to trigger using
79  // the img_media_mime index in "range" mode.
80  // @todo how is order defined? use MimeAnalyzer::getMediaTypes?
81  'img_media_type' => [
93  ],
94  ] + $minorType,
95  'join_conds' => $imgQuery['joins'],
96  ];
97 
98  return $qi;
99  }
100 
110  function getOrderFields() {
111  return [];
112  }
113 
117  function getPageHeader() {
118  $formDescriptor = [
119  'mime' => [
120  'type' => 'combobox',
121  'options' => $this->getSuggestionsForTypes(),
122  'name' => 'mime',
123  'label-message' => 'mimetype',
124  'required' => true,
125  'default' => $this->mime,
126  ],
127  ];
128 
129  HTMLForm::factory( 'ooui', $formDescriptor, $this->getContext() )
130  ->setSubmitTextMsg( 'ilsubmit' )
131  ->setAction( $this->getPageTitle()->getLocalURL() )
132  ->setMethod( 'get' )
133  ->prepareForm()
134  ->displayForm( false );
135  return '';
136  }
137 
138  protected function getSuggestionsForTypes() {
139  $dbr = wfGetDB( DB_REPLICA );
140  $lastMajor = null;
141  $suggestions = [];
142  $result = $dbr->select(
143  [ 'image' ],
144  // We ignore img_media_type, but using it in the query is needed for MySQL to choose a
145  // sensible execution plan
146  [ 'img_media_type', 'img_major_mime', 'img_minor_mime' ],
147  [],
148  __METHOD__,
149  [ 'GROUP BY' => [ 'img_media_type', 'img_major_mime', 'img_minor_mime' ] ]
150  );
151  foreach ( $result as $row ) {
152  $major = $row->img_major_mime;
153  $minor = $row->img_minor_mime;
154  $suggestions[ "$major/$minor" ] = "$major/$minor";
155  if ( $lastMajor === $major ) {
156  // If there are at least two with the same major mime type, also include the wildcard
157  $suggestions[ "$major/*" ] = "$major/*";
158  }
159  $lastMajor = $major;
160  }
161  ksort( $suggestions );
162  return $suggestions;
163  }
164 
165  public function execute( $par ) {
166  $this->mime = $par ?: $this->getRequest()->getText( 'mime' );
167  $this->mime = trim( $this->mime );
168  list( $this->major, $this->minor ) = File::splitMime( $this->mime );
169 
170  if ( $this->major == '' || $this->minor == '' || $this->minor == 'unknown' ||
171  !self::isValidType( $this->major )
172  ) {
173  $this->setHeaders();
174  $this->outputHeader();
175  $this->getPageHeader();
176  return;
177  }
178 
179  parent::execute( $par );
180  }
181 
187  function formatResult( $skin, $result ) {
188  $linkRenderer = $this->getLinkRenderer();
189  $nt = Title::makeTitle( $result->namespace, $result->title );
190  $text = MediaWikiServices::getInstance()->getContentLanguage()
191  ->convert( htmlspecialchars( $nt->getText() ) );
192  $plink = $linkRenderer->makeLink(
193  Title::newFromText( $nt->getPrefixedText() ),
194  new HtmlArmor( $text )
195  );
196 
197  $download = Linker::makeMediaLinkObj( $nt, $this->msg( 'download' )->escaped() );
198  $download = $this->msg( 'parentheses' )->rawParams( $download )->escaped();
199  $lang = $this->getLanguage();
200  $bytes = htmlspecialchars( $lang->formatSize( $result->img_size ) );
201  $dimensions = $this->msg( 'widthheight' )->numParams( $result->img_width,
202  $result->img_height )->escaped();
203  $user = $linkRenderer->makeLink(
204  Title::makeTitle( NS_USER, $result->img_user_text ),
205  $result->img_user_text
206  );
207 
208  $time = $lang->userTimeAndDate( $result->img_timestamp, $this->getUser() );
209  $time = htmlspecialchars( $time );
210 
211  return "$download $plink . . $dimensions . . $bytes . . $user . . $time";
212  }
213 
218  protected static function isValidType( $type ) {
219  // From maintenance/tables.sql => img_major_mime
220  $types = [
221  'unknown',
222  'application',
223  'audio',
224  'image',
225  'text',
226  'video',
227  'message',
228  'model',
229  'multipart',
230  'chemical'
231  ];
232 
233  return in_array( $type, $types );
234  }
235 
236  public function preprocessResults( $db, $res ) {
238  }
239 
240  protected function getGroupName() {
241  return 'media';
242  }
243 }
MIMEsearchPage\__construct
__construct( $name='MIMEsearch')
Definition: SpecialMIMEsearch.php:35
SpecialPage\getPageTitle
getPageTitle( $subpage=false)
Get a self-referential title object.
Definition: SpecialPage.php:678
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:306
HtmlArmor
Marks HTML that shouldn't be escaped.
Definition: HtmlArmor.php:28
SpecialPage\msg
msg( $key)
Wrapper around wfMessage that sets the current context.
Definition: SpecialPage.php:796
MEDIATYPE_AUDIO
const MEDIATYPE_AUDIO
Definition: defines.php:32
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1983
MEDIATYPE_OFFICE
const MEDIATYPE_OFFICE
Definition: defines.php:39
MEDIATYPE_DRAWING
const MEDIATYPE_DRAWING
Definition: defines.php:30
MIMEsearchPage\getSuggestionsForTypes
getSuggestionsForTypes()
Definition: SpecialMIMEsearch.php:138
NS_FILE
const NS_FILE
Definition: Defines.php:70
MEDIATYPE_UNKNOWN
const MEDIATYPE_UNKNOWN
Definition: defines.php:26
MIMEsearchPage\$minor
$minor
Definition: SpecialMIMEsearch.php:33
$formDescriptor
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead & $formDescriptor
Definition: hooks.txt:2064
$res
$res
Definition: database.txt:21
File\splitMime
static splitMime( $mime)
Split an internet media type into its two components; if not a two-part name, set the minor type to '...
Definition: File.php:274
SpecialPage\getLanguage
getLanguage()
Shortcut to get user's language.
Definition: SpecialPage.php:755
MIMEsearchPage\execute
execute( $par)
This is the actual workhorse.
Definition: SpecialMIMEsearch.php:165
QueryPage
This is a class for doing query pages; since they're almost all the same, we factor out some of the f...
Definition: QueryPage.php:35
QueryPage\executeLBFromResultWrapper
executeLBFromResultWrapper(IResultWrapper $res, $ns=null)
Creates a new LinkBatch object, adds all pages from the passed ResultWrapper (MUST include title and ...
Definition: QueryPage.php:776
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
$dbr
$dbr
Definition: testCompression.php:50
MIMEsearchPage
Searches the database for files of the requested MIME type, comparing this with the 'img_major_mime' ...
Definition: SpecialMIMEsearch.php:32
Linker\makeMediaLinkObj
static makeMediaLinkObj( $title, $html='', $time=false)
Create a direct link to a given uploaded file.
Definition: Linker.php:758
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2636
MIMEsearchPage\preprocessResults
preprocessResults( $db, $res)
Do any necessary preprocessing of the result object.
Definition: SpecialMIMEsearch.php:236
HTMLForm\factory
static factory( $displayFormat)
Construct a HTMLForm object for given display type.
Definition: HTMLForm.php:286
MEDIATYPE_3D
const MEDIATYPE_3D
Definition: defines.php:47
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
MIMEsearchPage\$mime
$mime
Definition: SpecialMIMEsearch.php:33
SpecialPage\setHeaders
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
Definition: SpecialPage.php:531
MEDIATYPE_BITMAP
const MEDIATYPE_BITMAP
Definition: defines.php:28
MIMEsearchPage\isExpensive
isExpensive()
Is this query expensive (for some definition of expensive)? Then we don't let it run in miser mode.
Definition: SpecialMIMEsearch.php:39
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:576
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
MIMEsearchPage\isCacheable
isCacheable()
Is the output of this query cacheable? Non-cacheable expensive pages will be disabled in miser mode a...
Definition: SpecialMIMEsearch.php:47
MIMEsearchPage\getQueryInfo
getQueryInfo()
Subclasses return an SQL query here, formatted as an array with the following keys: tables => Table(s...
Definition: SpecialMIMEsearch.php:55
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
SpecialPage\getContext
getContext()
Gets the context this SpecialPage is executed in.
Definition: SpecialPage.php:698
MEDIATYPE_EXECUTABLE
const MEDIATYPE_EXECUTABLE
Definition: defines.php:43
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:271
execute
$batch execute()
MEDIATYPE_MULTIMEDIA
const MEDIATYPE_MULTIMEDIA
Definition: defines.php:37
SpecialPage\getRequest
getRequest()
Get the WebRequest being used for this instance.
Definition: SpecialPage.php:715
MEDIATYPE_ARCHIVE
const MEDIATYPE_ARCHIVE
Definition: defines.php:45
MIMEsearchPage\formatResult
formatResult( $skin, $result)
Definition: SpecialMIMEsearch.php:187
MIMEsearchPage\linkParameters
linkParameters()
If using extra form wheely-dealies, return a set of parameters here as an associative array.
Definition: SpecialMIMEsearch.php:51
SpecialPage\getLinkRenderer
getLinkRenderer()
Definition: SpecialPage.php:908
MIMEsearchPage\isSyndicated
isSyndicated()
Sometime we don't want to build rss / atom feeds.
Definition: SpecialMIMEsearch.php:43
LocalFile\getQueryInfo
static getQueryInfo(array $options=[])
Return the tables, fields, and join conditions to be selected to create a new localfile object.
Definition: LocalFile.php:244
MEDIATYPE_TEXT
const MEDIATYPE_TEXT
Definition: defines.php:41
MEDIATYPE_VIDEO
const MEDIATYPE_VIDEO
Definition: defines.php:35
MIMEsearchPage\getGroupName
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Definition: SpecialMIMEsearch.php:240
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
$skin
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned $skin
Definition: hooks.txt:1985
NS_USER
const NS_USER
Definition: Defines.php:66
MIMEsearchPage\isValidType
static isValidType( $type)
Definition: SpecialMIMEsearch.php:218
$time
see documentation in includes Linker php for Linker::makeImageLink & $time
Definition: hooks.txt:1802
SpecialPage\$linkRenderer
MediaWiki Linker LinkRenderer null $linkRenderer
Definition: SpecialPage.php:66
MediaWikiServices
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
Definition: injection.txt:23
MIMEsearchPage\getPageHeader
getPageHeader()
Generate and output the form.
Definition: SpecialMIMEsearch.php:117
SpecialPage\outputHeader
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
Definition: SpecialPage.php:633
MIMEsearchPage\getOrderFields
getOrderFields()
The index is on (img_media_type, img_major_mime, img_minor_mime) which unfortunately doesn't have img...
Definition: SpecialMIMEsearch.php:110
MIMEsearchPage\$major
$major
Definition: SpecialMIMEsearch.php:33
$type
$type
Definition: testCompression.php:48