Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1427959
FileContentHandler.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
FileContentHandler.php
View Options
<?php
namespace
MediaWiki\Content
;
use
MediaWiki\MediaWikiServices
;
use
MediaWiki\Parser\ParserOutput
;
use
MediaWiki\Revision\RevisionRecord
;
use
SearchEngine
;
use
SearchIndexField
;
use
WikiPage
;
/**
* Content handler for File: files
* TODO: this handler is not used directly now,
* but instead manually called by WikitextHandler.
* This should be fixed in the future.
*/
class
FileContentHandler
extends
WikitextContentHandler
{
public
function
getFieldsForSearchIndex
(
SearchEngine
$engine
)
{
$fields
=
[];
$fields
[
'file_media_type'
]
=
$engine
->
makeSearchFieldMapping
(
'file_media_type'
,
SearchIndexField
::
INDEX_TYPE_KEYWORD
);
$fields
[
'file_media_type'
]->
setFlag
(
SearchIndexField
::
FLAG_CASEFOLD
);
$fields
[
'file_mime'
]
=
$engine
->
makeSearchFieldMapping
(
'file_mime'
,
SearchIndexField
::
INDEX_TYPE_SHORT_TEXT
);
$fields
[
'file_mime'
]->
setFlag
(
SearchIndexField
::
FLAG_CASEFOLD
);
$fields
[
'file_size'
]
=
$engine
->
makeSearchFieldMapping
(
'file_size'
,
SearchIndexField
::
INDEX_TYPE_INTEGER
);
$fields
[
'file_width'
]
=
$engine
->
makeSearchFieldMapping
(
'file_width'
,
SearchIndexField
::
INDEX_TYPE_INTEGER
);
$fields
[
'file_height'
]
=
$engine
->
makeSearchFieldMapping
(
'file_height'
,
SearchIndexField
::
INDEX_TYPE_INTEGER
);
$fields
[
'file_bits'
]
=
$engine
->
makeSearchFieldMapping
(
'file_bits'
,
SearchIndexField
::
INDEX_TYPE_INTEGER
);
$fields
[
'file_resolution'
]
=
$engine
->
makeSearchFieldMapping
(
'file_resolution'
,
SearchIndexField
::
INDEX_TYPE_INTEGER
);
$fields
[
'file_text'
]
=
$engine
->
makeSearchFieldMapping
(
'file_text'
,
SearchIndexField
::
INDEX_TYPE_TEXT
);
return
$fields
;
}
public
function
getDataForSearchIndex
(
WikiPage
$page
,
ParserOutput
$parserOutput
,
SearchEngine
$engine
,
?
RevisionRecord
$revision
=
null
)
{
$fields
=
[];
$title
=
$page
->
getTitle
();
if
(
NS_FILE
!=
$title
->
getNamespace
()
)
{
return
[];
}
$file
=
MediaWikiServices
::
getInstance
()->
getRepoGroup
()->
getLocalRepo
()
->
newFile
(
$title
);
if
(
!
$file
||
!
$file
->
exists
()
)
{
return
[];
}
$handler
=
$file
->
getHandler
();
if
(
$handler
)
{
$fileText
=
$handler
->
getEntireText
(
$file
);
if
(
$fileText
!==
false
)
{
$fields
[
'file_text'
]
=
$fileText
;
}
}
$fields
[
'file_media_type'
]
=
$file
->
getMediaType
();
$fields
[
'file_mime'
]
=
$file
->
getMimeType
();
$fields
[
'file_size'
]
=
$file
->
getSize
();
$fields
[
'file_width'
]
=
$file
->
getWidth
();
$fields
[
'file_height'
]
=
$file
->
getHeight
();
$fields
[
'file_bits'
]
=
$file
->
getBitDepth
();
$fields
[
'file_resolution'
]
=
(
int
)
floor
(
sqrt
(
$fields
[
'file_width'
]
*
$fields
[
'file_height'
]
)
);
return
$fields
;
}
}
/** @deprecated class alias since 1.43 */
class_alias
(
FileContentHandler
::
class
,
'FileContentHandler'
);
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 15:25 (14 h, 24 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
21/96/8e6855f2d4985d6dcb0b889b5ab3
Default Alt Text
FileContentHandler.php (2 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment