Bug 32673: Keep the username in the input field if not existing
[lhc/web/wiklou.git] / includes / specials / SpecialMostlinked.php
index c731588..a16f087 100644 (file)
  */
 class MostlinkedPage extends QueryPage {
 
-       function getName() { return 'Mostlinked'; }
+       function __construct( $name = 'Mostlinked' ) {
+               parent::__construct( $name );
+       }
+
        function isExpensive() { return true; }
        function isSyndicated() { return false; }
 
-       function getSQL() {
-               global $wgMiserMode;
-
-               $dbr = wfGetDB( DB_SLAVE );
-
-               # 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;
-               }
-
-               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 ( 'pl_namespace AS namespace',
+                                       'pl_title AS title',
+                                       'COUNT(*) AS value',
+                                       'page_namespace' ),
+                       'options' => array ( 'HAVING' => 'COUNT(*) > 1',
+                               'GROUP BY' => '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 ) {
@@ -86,12 +77,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 +92,13 @@ 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]]" ) . ' -->';
                }
-               $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 );
-}