Merge "(bug 40585) Don't drop 'step="any"' in HTML input fields."
[lhc/web/wiklou.git] / includes / specials / SpecialMostlinked.php
index c731588..66814cb 100644 (file)
  */
 class MostlinkedPage extends QueryPage {
 
-       function getName() { return 'Mostlinked'; }
-       function isExpensive() { return true; }
-       function isSyndicated() { return false; }
-
-       function getSQL() {
-               global $wgMiserMode;
+       function __construct( $name = 'Mostlinked' ) {
+               parent::__construct( $name );
+       }
 
-               $dbr = wfGetDB( DB_SLAVE );
+       function isExpensive() {
+               return true;
+       }
 
-               # In miser mode, reduce the query cost by adding a threshold for large wikis
-               if ( $wgMiserMode ) {
-                       $numPages = SiteStats::pages();
-                       if ( $numPages > 10000 ) {
-                               $cutoff = 100;
-                       } elseif ( $numPages > 100 ) {
-                               $cutoff = intval( sqrt( $numPages ) );
-                       } else {
-                               $cutoff = 1;
-                       }
-               } else {
-                       $cutoff = 1;
-               }
+       function isSyndicated() {
+               return false;
+       }
 
-               list( $pagelinks, $page ) = $dbr->tableNamesN( 'pagelinks', 'page' );
-               return
-                       "SELECT 'Mostlinked' AS type,
-                               pl_namespace AS namespace,
-                               pl_title AS title,
-                               COUNT(*) AS value
-                       FROM $pagelinks
-                       LEFT JOIN $page ON pl_namespace=page_namespace AND pl_title=page_title
-                       GROUP BY pl_namespace, pl_title
-                       HAVING COUNT(*) > $cutoff";
+       function getQueryInfo() {
+               return array (
+                       'tables' => array ( 'pagelinks', 'page' ),
+                       'fields' => array ( 'namespace' => 'pl_namespace',
+                                       'title' => 'pl_title',
+                                       'value' => 'COUNT(*)',
+                                       'page_namespace' ),
+                       'options' => array ( 'HAVING' => 'COUNT(*) > 1',
+                               'GROUP BY' => array( 'pl_namespace', 'pl_title',
+                                               'page_namespace' ) ),
+                       'join_conds' => array ( 'page' => array ( 'LEFT JOIN',
+                                       array ( 'page_namespace = pl_namespace',
+                                               'page_title = pl_title' ) ) )
+               );
        }
 
        /**
         * Pre-fill the link cache
+        *
+        * @param $db DatabaseBase
+        * @param $res
         */
        function preprocessResults( $db, $res ) {
-               if( $db->numRows( $res ) > 0 ) {
+               if ( $res->numRows() > 0 ) {
                        $linkBatch = new LinkBatch();
                        foreach ( $res as $row ) {
                                $linkBatch->add( $row->namespace, $row->title );
                        }
-                       $db->dataSeek( $res, 0 );
+                       $res->seek( 0 );
                        $linkBatch->execute();
                }
        }
@@ -86,12 +82,11 @@ class MostlinkedPage extends QueryPage {
         *
         * @param $title Title being queried
         * @param $caption String: text to display on the link
-        * @param $skin Skin to use
         * @return String
         */
-       function makeWlhLink( &$title, $caption, &$skin ) {
+       function makeWlhLink( $title, $caption ) {
                $wlh = SpecialPage::getTitleFor( 'Whatlinkshere', $title->getPrefixedDBkey() );
-               return $skin->linkKnown( $wlh, $caption );
+               return Linker::linkKnown( $wlh, $caption );
        }
 
        /**
@@ -102,26 +97,14 @@ class MostlinkedPage extends QueryPage {
         * @return string
         */
        function formatResult( $skin, $result ) {
-               global $wgLang;
                $title = Title::makeTitleSafe( $result->namespace, $result->title );
                if ( !$title ) {
-                       return '<!-- ' . htmlspecialchars( "Invalid title: [[$title]]" ) . ' -->';
+                       return Html::element( 'span', array( 'class' => 'mw-invalidtitle' ),
+                               Linker::getInvalidTitleDescription( $this->getContext(), $result->namespace, $result->title ) );
                }
-               $link = $skin->link( $title );
+               $link = Linker::link( $title );
                $wlh = $this->makeWlhLink( $title,
-                       wfMsgExt( 'nlinks', array( 'parsemag', 'escape'),
-                               $wgLang->formatNum( $result->value ) ), $skin );
-               return wfSpecialList( $link, $wlh );
+                       $this->msg( 'nlinks' )->numParams( $result->value )->escaped() );
+               return $this->getLanguage()->specialList( $link, $wlh );
        }
 }
-
-/**
- * constructor
- */
-function wfSpecialMostlinked() {
-       list( $limit, $offset ) = wfCheckLimits();
-
-       $wpp = new MostlinkedPage();
-
-       $wpp->doQuery( $offset, $limit );
-}