35 parent::__construct(
$query, $moduleName,
'fa' );
44 $commentStore = CommentStore::getStore();
48 $prop = array_flip(
$params[
'prop'] );
49 $fld_sha1 = isset( $prop[
'sha1'] );
50 $fld_timestamp = isset( $prop[
'timestamp'] );
51 $fld_user = isset( $prop[
'user'] );
52 $fld_size = isset( $prop[
'size'] );
53 $fld_dimensions = isset( $prop[
'dimensions'] );
54 $fld_description = isset( $prop[
'description'] ) || isset( $prop[
'parseddescription'] );
55 $fld_mime = isset( $prop[
'mime'] );
56 $fld_mediatype = isset( $prop[
'mediatype'] );
57 $fld_metadata = isset( $prop[
'metadata'] );
58 $fld_bitdepth = isset( $prop[
'bitdepth'] );
59 $fld_archivename = isset( $prop[
'archivename'] );
66 if ( !is_null(
$params[
'continue'] ) ) {
67 $cont = explode(
'|',
$params[
'continue'] );
69 $op =
$params[
'dir'] ==
'descending' ?
'<' :
'>';
70 $cont_from = $db->addQuotes( $cont[0] );
71 $cont_timestamp = $db->addQuotes( $db->timestamp( $cont[1] ) );
72 $cont_id = (int)$cont[2];
74 $this->
addWhere(
"fa_name $op $cont_from OR " .
75 "(fa_name = $cont_from AND " .
76 "(fa_timestamp $op $cont_timestamp OR " .
77 "(fa_timestamp = $cont_timestamp AND " .
78 "fa_id $op= $cont_id )))"
83 $dir = (
$params[
'dir'] ==
'descending' ?
'older' :
'newer' );
87 if ( isset(
$params[
'prefix'] ) ) {
88 $this->
addWhere(
'fa_name' . $db->buildLike(
93 $sha1Set = isset(
$params[
'sha1'] );
94 $sha1base36Set = isset(
$params[
'sha1base36'] );
95 if ( $sha1Set || $sha1base36Set ) {
98 $sha1 = strtolower(
$params[
'sha1'] );
102 $sha1 = Wikimedia\base_convert( $sha1, 16, 36, 31 );
103 } elseif ( $sha1base36Set ) {
104 $sha1 = strtolower(
$params[
'sha1base36'] );
106 $this->
dieWithError(
'apierror-invalidsha1base36hash' );
115 if ( !$user->isAllowed(
'deletedtext' ) ) {
117 } elseif ( !$user->isAllowedAny(
'suppressrevision',
'viewsuppressed' ) ) {
123 $this->
addWhere( $this->
getDB()->bitAnd(
'fa_deleted', $bitmask ) .
" != $bitmask" );
128 $sort = (
$params[
'dir'] ==
'descending' ?
' DESC' :
'' );
131 'fa_timestamp' .
$sort,
139 foreach (
$res as $row ) {
140 if ( ++$count > $limit ) {
144 'continue',
"$row->fa_name|$row->fa_timestamp|$row->fa_id"
150 $file[
'id'] = (int)$row->fa_id;
151 $file[
'name'] = $row->fa_name;
152 $title = Title::makeTitle(
NS_FILE, $row->fa_name );
155 if ( $fld_description &&
158 $file[
'description'] = $commentStore->getComment(
'fa_description', $row )->text;
159 if ( isset( $prop[
'parseddescription'] ) ) {
161 $file[
'description'], $title );
167 $file[
'userid'] = (int)$row->fa_user;
168 $file[
'user'] = $row->fa_user_text;
171 $file[
'sha1'] = Wikimedia\base_convert( $row->fa_sha1, 36, 16, 40 );
173 if ( $fld_timestamp ) {
174 $file[
'timestamp'] =
wfTimestamp( TS_ISO_8601, $row->fa_timestamp );
176 if ( $fld_size || $fld_dimensions ) {
177 $file[
'size'] = $row->fa_size;
180 if ( $pageCount !==
false ) {
181 $file[
'pagecount'] = $pageCount;
184 $file[
'height'] = $row->fa_height;
185 $file[
'width'] = $row->fa_width;
187 if ( $fld_mediatype ) {
188 $file[
'mediatype'] = $row->fa_media_type;
190 if ( $fld_metadata ) {
191 $file[
'metadata'] = $row->fa_metadata
195 if ( $fld_bitdepth ) {
196 $file[
'bitdepth'] = $row->fa_bits;
199 $file[
'mime'] =
"$row->fa_major_mime/$row->fa_minor_mime";
201 if ( $fld_archivename && !is_null( $row->fa_archive_name ) ) {
202 $file[
'archivename'] = $row->fa_archive_name;
206 $file[
'filehidden'] =
true;
209 $file[
'commenthidden'] =
true;
212 $file[
'userhidden'] =
true;
216 $file[
'suppressed'] =
true;
219 $fit = $result->addValue( [
'query', $this->
getModuleName() ],
null, $file );
222 'continue',
"$row->fa_name|$row->fa_timestamp|$row->fa_id"
228 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'fa' );
244 'sha1base36' =>
null,
279 'action=query&list=filearchive'
280 =>
'apihelp-query+filearchive-example-simple',
285 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Filearchive';
unserialize( $serialized)
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
checkUserRightsAny( $rights, $user=null)
Helper function for permission-denied errors.
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
const LIMIT_BIG1
Fast query, standard limit.
getResult()
Get the result object.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
const LIMIT_BIG2
Fast query, apihighlimits limit.
getModuleName()
Get the name of the module being executed by this instance.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
This is a base class for all Query modules.
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
setContinueEnumParameter( $paramName, $paramValue)
Set a query-continue value.
validateSha1Base36Hash( $hash)
addWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, and an ORDER BY clause to sort in the right direction.
addFields( $value)
Add a set of fields to select to the internal array.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
getDB()
Get the Query database connection (read-only)
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
titlePartToKey( $titlePart, $namespace=NS_MAIN)
Convert an input title or title prefix into a dbkey.
addWhere( $value)
Add a set of WHERE clauses to the internal array.
Query module to enumerate all deleted files.
__construct(ApiQuery $query, $moduleName)
getExamplesMessages()
Returns usage examples for this module.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getHelpUrls()
Return links to more detailed help pages about the module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
static processMetaData( $metadata, $result)
This is the main query class.
static getQueryInfo()
Return the tables, fields, and join conditions to be selected to create a new archivedfile object.
static newFromRow( $row)
Loads a file object from the filearchive table.
static formatComment( $comment, $title=null, $local=false, $wikiId=null)
This function is called by all recent changes variants, by the page history, and by the user contribu...
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like select() and insert() are usually more convenient. They take care of things like table prefixes and escaping for you. If you really need to make your own SQL
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query