37 parent::__construct( $query, $moduleName,
'fa' );
43 $commentStore = CommentStore::getStore();
47 $prop = array_flip( $params[
'prop'] );
48 $fld_sha1 = isset( $prop[
'sha1'] );
49 $fld_timestamp = isset( $prop[
'timestamp'] );
50 $fld_user = isset( $prop[
'user'] );
51 $fld_size = isset( $prop[
'size'] );
52 $fld_dimensions = isset( $prop[
'dimensions'] );
53 $fld_description = isset( $prop[
'description'] ) || isset( $prop[
'parseddescription'] );
54 $fld_mime = isset( $prop[
'mime'] );
55 $fld_mediatype = isset( $prop[
'mediatype'] );
56 $fld_metadata = isset( $prop[
'metadata'] );
57 $fld_bitdepth = isset( $prop[
'bitdepth'] );
58 $fld_archivename = isset( $prop[
'archivename'] );
60 if ( $fld_description &&
63 $this->
dieWithError(
'apierror-cantview-deleted-description',
'permissiondenied' );
68 $this->
dieWithError(
'apierror-cantview-deleted-metadata',
'permissiondenied' );
76 if ( !is_null( $params[
'continue'] ) ) {
77 $cont = explode(
'|', $params[
'continue'] );
79 $op = $params[
'dir'] ==
'descending' ?
'<' :
'>';
80 $cont_from = $db->addQuotes( $cont[0] );
81 $cont_timestamp = $db->addQuotes( $db->timestamp( $cont[1] ) );
82 $cont_id = (int)$cont[2];
84 $this->
addWhere(
"fa_name $op $cont_from OR " .
85 "(fa_name = $cont_from AND " .
86 "(fa_timestamp $op $cont_timestamp OR " .
87 "(fa_timestamp = $cont_timestamp AND " .
88 "fa_id $op= $cont_id )))"
93 $dir = ( $params[
'dir'] ==
'descending' ?
'older' :
'newer' );
97 if ( isset( $params[
'prefix'] ) ) {
98 $this->
addWhere(
'fa_name' . $db->buildLike(
99 $this->titlePartToKey( $params[
'prefix'],
NS_FILE ),
100 $db->anyString() ) );
103 $sha1Set = isset( $params[
'sha1'] );
104 $sha1base36Set = isset( $params[
'sha1base36'] );
105 if ( $sha1Set || $sha1base36Set ) {
108 $sha1 = strtolower( $params[
'sha1'] );
112 $sha1 = Wikimedia\base_convert( $sha1, 16, 36, 31 );
113 } elseif ( $sha1base36Set ) {
114 $sha1 = strtolower( $params[
'sha1base36'] );
116 $this->
dieWithError(
'apierror-invalidsha1base36hash' );
123 $bitmask = File::DELETED_FILE;
125 ->userHasAnyRight( $user,
'suppressrevision',
'viewsuppressed' )
127 $bitmask = File::DELETED_FILE | File::DELETED_RESTRICTED;
132 $this->
addWhere( $this->
getDB()->bitAnd(
'fa_deleted', $bitmask ) .
" != $bitmask" );
137 $limit = $params[
'limit'];
139 $sort = ( $params[
'dir'] ==
'descending' ?
' DESC' :
'' );
142 'fa_timestamp' .
$sort,
150 foreach (
$res as $row ) {
151 if ( ++$count > $limit ) {
155 'continue',
"$row->fa_name|$row->fa_timestamp|$row->fa_id"
160 $canViewFile = RevisionRecord::userCanBitfield( $row->fa_deleted, File::DELETED_FILE, $user );
163 $file[
'id'] = (int)$row->fa_id;
164 $file[
'name'] = $row->fa_name;
168 if ( $fld_description &&
169 RevisionRecord::userCanBitfield( $row->fa_deleted, File::DELETED_COMMENT, $user )
171 $file[
'description'] = $commentStore->getComment(
'fa_description', $row )->text;
172 if ( isset( $prop[
'parseddescription'] ) ) {
178 RevisionRecord::userCanBitfield( $row->fa_deleted, File::DELETED_USER, $user )
180 $file[
'userid'] = (int)$row->fa_user;
181 $file[
'user'] = $row->fa_user_text;
183 if ( $fld_sha1 && $canViewFile ) {
184 $file[
'sha1'] = Wikimedia\base_convert( $row->fa_sha1, 36, 16, 40 );
186 if ( $fld_timestamp ) {
189 if ( ( $fld_size || $fld_dimensions ) && $canViewFile ) {
190 $file[
'size'] = $row->fa_size;
193 if ( $pageCount !==
false ) {
194 $file[
'pagecount'] = $pageCount;
197 $file[
'height'] = $row->fa_height;
198 $file[
'width'] = $row->fa_width;
200 if ( $fld_mediatype && $canViewFile ) {
201 $file[
'mediatype'] = $row->fa_media_type;
203 if ( $fld_metadata && $canViewFile ) {
204 $file[
'metadata'] = $row->fa_metadata
208 if ( $fld_bitdepth && $canViewFile ) {
209 $file[
'bitdepth'] = $row->fa_bits;
211 if ( $fld_mime && $canViewFile ) {
212 $file[
'mime'] =
"$row->fa_major_mime/$row->fa_minor_mime";
214 if ( $fld_archivename && !is_null( $row->fa_archive_name ) ) {
215 $file[
'archivename'] = $row->fa_archive_name;
218 if ( $row->fa_deleted & File::DELETED_FILE ) {
219 $file[
'filehidden'] =
true;
221 if ( $row->fa_deleted & File::DELETED_COMMENT ) {
222 $file[
'commenthidden'] =
true;
224 if ( $row->fa_deleted & File::DELETED_USER ) {
225 $file[
'userhidden'] =
true;
227 if ( $row->fa_deleted & File::DELETED_RESTRICTED ) {
229 $file[
'suppressed'] =
true;
235 'continue',
"$row->fa_name|$row->fa_timestamp|$row->fa_id"
241 $result->addIndexedTagName( [
'query', $this->
getModuleName() ],
'fa' );
257 'sha1base36' =>
null,
292 'action=query&list=filearchive'
293 =>
'apihelp-query+filearchive-example-simple',
298 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,...
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.
getPermissionManager()
Obtain a PermissionManager instance that subclasses may use in their authorization checks.
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.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
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)
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
addWhereFld( $field, $value)
Equivalent to addWhere( [ $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...
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Item class for a filearchive table row.