http://www.mediawiki.org/wiki/Special:Code/MediaWiki/89542
Revision: 89542
Author: reedy
Date: 2011-06-05 23:40:57 +0000 (Sun, 05 Jun 2011)
Log Message:
-----------
* (bug 21346) Make deleted images searchable by hash (disabled in Miser Mode)
Effectively reverts r83411, but with the addition of it only works in
!$wgMiserMode
Modified Paths:
--------------
trunk/phase3/RELEASE-NOTES-1.19
trunk/phase3/includes/api/ApiQueryFilearchive.php
Modified: trunk/phase3/RELEASE-NOTES-1.19
===================================================================
--- trunk/phase3/RELEASE-NOTES-1.19 2011-06-05 23:28:59 UTC (rev 89541)
+++ trunk/phase3/RELEASE-NOTES-1.19 2011-06-05 23:40:57 UTC (rev 89542)
@@ -103,6 +103,7 @@
action=login
* (bug 29237) add interwiki target url attribute to api/query/interwiki
* (bug 28392) mark action=undelete×tamps as type "timestamp"
+* (bug 21346) Make deleted images searchable by hash (disabled in Miser Mode)
=== Languages updated in 1.19 ===
Modified: trunk/phase3/includes/api/ApiQueryFilearchive.php
===================================================================
--- trunk/phase3/includes/api/ApiQueryFilearchive.php 2011-06-05 23:28:59 UTC
(rev 89541)
+++ trunk/phase3/includes/api/ApiQueryFilearchive.php 2011-06-05 23:40:57 UTC
(rev 89542)
@@ -85,6 +85,25 @@
$this->addWhere( 'fa_name' . $db->buildLike(
$this->titlePartToKey( $params['prefix'] ), $db->anyString() ) );
}
+ $sha1Set = isset( $params['sha1'] );
+ $sha1base36Set = isset( $params['sha1base36'] );
+ if ( $sha1Set || $sha1base36Set ) {
+ global $wgMiserMode;
+ if ( $wgMiserMode ) {
+ $this->dieUsage( 'Search by hash disabled in
Miser Mode', 'hashsearchdisabled' );
+ }
+
+ $sha1 = false;
+ if ( $sha1Set ) {
+ $sha1 = wfBaseConvert( $params['sha1'], 16, 36,
31 );
+ } elseif ( $sha1base36Set ) {
+ $sha1 = $params['sha1base36'];
+ }
+ if ( $sha1 ) {
+ $this->addWhere( 'fa_storage_key=' .
$db->addQuotes( $sha1 ) );
+ }
+ }
+
if ( !$wgUser->isAllowed( 'suppressrevision' ) ) {
// Filter out revisions that the user is not allowed to
see. There
// is no way to indicate that we have skipped stuff
because the
@@ -201,6 +220,8 @@
'descending'
)
),
+ 'sha1' => null,
+ 'sha1base36' => null,
'prop' => array(
ApiBase::PARAM_DFLT => 'timestamp',
ApiBase::PARAM_ISMULTI => true,
@@ -227,6 +248,8 @@
'prefix' => 'Search for all image titles that begin
with this value',
'dir' => 'The direction in which to list',
'limit' => 'How many images to return in total',
+ 'sha1' => "SHA1 hash of image. Overrides
{$this->getModulePrefix()}sha1base36. Disabled in Miser Mode",
+ 'sha1base36' => 'SHA1 hash of image in base 36 (used in
MediaWiki). Disabled in Miser Mode',
'prop' => array(
'What image information to get:',
' sha1 - Adds SHA-1 hash for the
image',
@@ -250,6 +273,7 @@
public function getPossibleErrors() {
return array_merge( parent::getPossibleErrors(), array(
array( 'code' => 'permissiondenied', 'info' => 'You
don\'t have permission to view deleted file information' ),
+ array( 'code' => 'hashsearchdisabled', 'info' =>
'Search by hash disabled in Miser Mode' ),
) );
}
_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs