Merge "Use /usr/bin/ as default folder for DjVu tools in unit tests"
[lhc/web/wiklou.git] / includes / specials / SpecialUnusedimages.php
index 0bc1e1f..743c587 100644 (file)
  * @ingroup SpecialPage
  */
 class UnusedimagesPage extends ImageQueryPage {
+       function __construct( $name = 'Unusedimages' ) {
+               parent::__construct( $name );
+       }
 
-       function isExpensive() { return true; }
-
-       function getName() {
-               return 'Unusedimages';
+       function isExpensive() {
+               return true;
        }
 
        function sortDescending() {
                return false;
        }
-       function isSyndicated() { return false; }
-
-       function getSQL() {
-               global $wgCountCategorizedImagesAsUsed;
 
-               $dbr = wfGetDB( DB_SLAVE );
+       function isSyndicated() {
+               return false;
+       }
 
-               $epoch = $db->unixTimestamp( 'rev_timestamp' );
+       function getQueryInfo() {
+               global $wgCountCategorizedImagesAsUsed;
+               $retval = array(
+                       'tables' => array( 'image', 'imagelinks' ),
+                       'fields' => array(
+                               'namespace' => NS_FILE,
+                               'title' => 'img_name',
+                               'value' => 'img_timestamp',
+                               'img_user', 'img_user_text',
+                               'img_description'
+                       ),
+                       'conds' => array( 'il_to IS NULL' ),
+                       'join_conds' => array( 'imagelinks' => array( 'LEFT JOIN', 'il_to = img_name' ) )
+               );
 
                if ( $wgCountCategorizedImagesAsUsed ) {
-                       list( $page, $image, $imagelinks, $categorylinks ) = $dbr->tableNamesN( 'page', 'image', 'imagelinks', 'categorylinks' );
+                       // Order is significant
+                       $retval['tables'] = array( 'image', 'page', 'categorylinks',
+                               'imagelinks' );
+                       $retval['conds']['page_namespace'] = NS_FILE;
+                       $retval['conds'][] = 'cl_from IS NULL';
+                       $retval['conds'][] = 'img_name = page_title';
+                       $retval['join_conds']['categorylinks'] = array(
+                               'LEFT JOIN', 'cl_from = page_id' );
+                       $retval['join_conds']['imagelinks'] = array(
+                               'LEFT JOIN', 'il_to = page_title' );
+               }
 
-                       return "SELECT 'Unusedimages' as type, 6 as namespace, img_name as title, $epoch as value,
-                                               img_user, img_user_text,  img_description
-                                       FROM ((($page AS I LEFT JOIN $categorylinks AS L ON I.page_id = L.cl_from)
-                                               LEFT JOIN $imagelinks AS P ON I.page_title = P.il_to)
-                                               INNER JOIN $image AS G ON I.page_title = G.img_name)
-                                       WHERE I.page_namespace = ".NS_FILE." AND L.cl_from IS NULL AND P.il_to IS NULL";
-               } else {
-                       list( $image, $imagelinks ) = $dbr->tableNamesN( 'image','imagelinks' );
+               return $retval;
+       }
 
-                       return "SELECT 'Unusedimages' as type, 6 as namespace, img_name as title, $epoch as value,
-                               img_user, img_user_text,  img_description
-                               FROM $image LEFT JOIN $imagelinks ON img_name=il_to WHERE il_to IS NULL ";
-               }
+       function usesTimestamps() {
+               return true;
        }
 
        function getPageHeader() {
-               return wfMsgExt( 'unusedimagestext', array( 'parse' ) );
+               return $this->msg( 'unusedimagestext' )->parseAsBlock();
        }
 
-}
-
-/**
- * Entry point
- */
-function wfSpecialUnusedimages() {
-       list( $limit, $offset ) = wfCheckLimits();
-       $uip = new UnusedimagesPage();
-
-       return $uip->doQuery( $offset, $limit );
+       protected function getGroupName() {
+               return 'maintenance';
+       }
 }