(bug 4037) Make input handling in Special:Allpages and Special:Prefixindex
authorIlmari Karonen <vyznev@users.mediawiki.org>
Sun, 2 Jul 2006 14:39:47 +0000 (14:39 +0000)
committerIlmari Karonen <vyznev@users.mediawiki.org>
Sun, 2 Jul 2006 14:39:47 +0000 (14:39 +0000)
more consistent: Accept just a namespace prefix and a colon, reject input
with interwiki prefixes, otherwise do what Title::makeTitleSafe() does.

RELEASE-NOTES
includes/SpecialAllpages.php
includes/SpecialPrefixindex.php

index 07321d2..761d0b2 100644 (file)
@@ -624,7 +624,9 @@ Some default configuration options have changed:
 * (bug 6511) Add diff links to old revision navigation bar
 * (bug 6511) Replace 'oldrevisionnavigation' message with 'old-revision-navigation'
 * Fix regression in Polish genitive month forms
-
+* (bug 4037) Make input handling in Special:Allpages and Special:Prefixindex
+  more consistent: Accept just a namespace prefix and a colon, reject input
+  with interwiki prefixes, otherwise do what Title::makeTitleSafe() does.
 
 == Compatibility ==
 
index 8ea51ba..7be9e04 100644 (file)
@@ -218,62 +218,57 @@ function showChunk( $namespace = NS_MAIN, $from, $including = false ) {
 
        $sk = $wgUser->getSkin();
 
-       $fromTitle = null;
-       if ($from!="") {
-               $fromTitle = Title::newFromURL( $from );
-               if (!$fromTitle) {
-                       return;
-               }
-               $fromNS = $fromTitle->getNamespace();
-               if ($namespace == NS_MAIN)
-                       $namespace = $fromNS;
-       }
-       $fromKey = is_null( $fromTitle ) ? '' : $fromTitle->getDBkey();
+       $fromList = $this->getNamespaceKeyAndText($namespace, $from);
 
-       $dbr =& wfGetDB( DB_SLAVE );
-       $res = $dbr->select( 'page',
-               array( 'page_namespace', 'page_title', 'page_is_redirect' ),
-               array(
-                       'page_namespace' => $namespace,
-                       'page_title >= ' . $dbr->addQuotes( $fromKey )
-               ),
-               $fname,
-               array(
-                       'ORDER BY'  => 'page_title',
-                       'LIMIT'     => $this->maxPerPage + 1,
-                       'USE INDEX' => 'name_title',
-               )
-       );
+       if ( !$fromList ) {
+               $out = wfMsgWikiHtml( 'badtitletext' );
+       } else {
+               list( $namespace, $fromKey, $from ) = $fromList;
+
+               $dbr =& wfGetDB( DB_SLAVE );
+               $res = $dbr->select( 'page',
+                       array( 'page_namespace', 'page_title', 'page_is_redirect' ),
+                       array(
+                               'page_namespace' => $namespace,
+                               'page_title >= ' . $dbr->addQuotes( $fromKey )
+                       ),
+                       $fname,
+                       array(
+                               'ORDER BY'  => 'page_title',
+                               'LIMIT'     => $this->maxPerPage + 1,
+                               'USE INDEX' => 'name_title',
+                       )
+               );
 
-       ### FIXME: side link to previous
+               ### FIXME: side link to previous
 
-       $n = 0;
-       $out = '<table style="background: inherit;" border="0" width="100%">';
+               $n = 0;
+               $out = '<table style="background: inherit;" border="0" width="100%">';
 
-       $namespaces = $wgContLang->getFormattedNamespaces();
-       while( ($n < $this->maxPerPage) && ($s = $dbr->fetchObject( $res )) ) {
-               $t = Title::makeTitle( $s->page_namespace, $s->page_title );
-               if( $t ) {
-                       $link = ($s->page_is_redirect ? '<div class="allpagesredirect">' : '' ) .
-                               $sk->makeKnownLinkObj( $t, htmlspecialchars( $t->getText() ), false, false ) .
-                               ($s->page_is_redirect ? '</div>' : '' );
-               } else {
-                       $link = '[[' . htmlspecialchars( $s->page_title ) . ']]';
-               }
-               if( $n % 3 == 0 ) {
-                       $out .= '<tr>';
+               $namespaces = $wgContLang->getFormattedNamespaces();
+               while( ($n < $this->maxPerPage) && ($s = $dbr->fetchObject( $res )) ) {
+                       $t = Title::makeTitle( $s->page_namespace, $s->page_title );
+                       if( $t ) {
+                               $link = ($s->page_is_redirect ? '<div class="allpagesredirect">' : '' ) .
+                                       $sk->makeKnownLinkObj( $t, htmlspecialchars( $t->getText() ), false, false ) .
+                                       ($s->page_is_redirect ? '</div>' : '' );
+                       } else {
+                               $link = '[[' . htmlspecialchars( $s->page_title ) . ']]';
+                       }
+                       if( $n % 3 == 0 ) {
+                               $out .= '<tr>';
+                       }
+                       $out .= "<td>$link</td>";
+                       $n++;
+                       if( $n % 3 == 0 ) {
+                               $out .= '</tr>';
+                       }
                }
-               $out .= "<td>$link</td>";
-               $n++;
-               if( $n % 3 == 0 ) {
+               if( ($n % 3) != 0 ) {
                        $out .= '</tr>';
                }
+               $out .= '</table>';
        }
-       if( ($n % 3) != 0 ) {
-               $out .= '</tr>';
-       }
-       $out .= '</table>';
-
 
        if ( $including ) {
                $out2 = '';
@@ -284,7 +279,7 @@ function showChunk( $namespace = NS_MAIN, $from, $including = false ) {
                $out2 .= '</td><td align="right" style="font-size: smaller; margin-bottom: 1em;">' .
                                $sk->makeKnownLink( $wgContLang->specialPage( "Allpages" ),
                                        wfMsgHtml ( 'allpages' ) );
-               if ( ($n == $this->maxPerPage) && ($s = $dbr->fetchObject( $res )) ) {
+               if ( $dbr && ($n == $this->maxPerPage) && ($s = $dbr->fetchObject( $res )) ) {
                        $namespaceparam = $namespace ? "&namespace=$namespace" : "";
                        $out2 .= " | " . $sk->makeKnownLink(
                                $wgContLang->specialPage( "Allpages" ),
@@ -296,6 +291,32 @@ function showChunk( $namespace = NS_MAIN, $from, $including = false ) {
 
        $wgOut->addHtml( $out2 . $out );
 }
+       
+/**
+ * @param int $ns the namespace of the article
+ * @param string $text the name of the article
+ * @return array( int namespace, string dbkey, string pagename ) or NULL on error
+ * @static (sort of)
+ * @access private
+ */
+function getNamespaceKeyAndText ($ns, $text) {
+       if ( $text == '' )
+               return array( $ns, '', '' ); # shortcut for common case
+
+       $t = Title::makeTitleSafe($ns, $text);
+       if ( $t && $t->isLocal() )
+               return array( $t->getNamespace(), $t->getDBkey(), $t->getText() );
+       else if ( $t )
+               return NULL;
+
+       # try again, in case the problem was an empty pagename
+       $text = preg_replace('/(#|$)/', 'X$1', $text);
+       $t = Title::makeTitleSafe($ns, $text);
+       if ( $t && $t->isLocal() )
+               return array( $t->getNamespace(), '', '' );
+       else
+               return NULL;
+}
 }
 
 ?>
index 5988560..a0b30bd 100644 (file)
@@ -62,61 +62,65 @@ function showChunk( $namespace = NS_MAIN, $prefix, $including = false, $from = n
 
        $sk = $wgUser->getSkin();
 
-       $prefixTitle = Title::newFromURL( $prefix );
-       if ($namespace == NS_MAIN and $prefixTitle) {
-               $namespace = $prefixTitle->getNamespace();
-       }
-       $prefixKey = is_null( $prefixTitle ) ? '' : $prefixTitle->getDBkey();
-
        if (!isset($from)) $from = $prefix;
-       $fromTitle = Title::newFromURL( $from );
-       $fromKey = is_null( $fromTitle ) ? '' : $fromTitle->getDBkey();
-
-       $dbr =& wfGetDB( DB_SLAVE );
-
-       $res = $dbr->select( 'page',
-               array( 'page_namespace', 'page_title', 'page_is_redirect' ),
-               array(
-                       'page_namespace' => $namespace,
-                       'page_title LIKE \'' . $dbr->escapeLike( $prefixKey ) .'%\'',
-                       'page_title >= ' . $dbr->addQuotes( $fromKey ),
-               ),
-               $fname,
-               array(
-                       'ORDER BY'  => 'page_title',
-                       'LIMIT'     => $this->maxPerPage + 1,
-                       'USE INDEX' => 'name_title',
-               )
-       );
-
-       ### FIXME: side link to previous
-
-       $n = 0;
-       $out = '<table style="background: inherit;" border="0" width="100%">';
-
-       $namespaces = $wgContLang->getFormattedNamespaces();
-       while( ($n < $this->maxPerPage) && ($s = $dbr->fetchObject( $res )) ) {
-               $t = Title::makeTitle( $s->page_namespace, $s->page_title );
-               if( $t ) {
-                       $link = ($s->page_is_redirect ? '<div class="allpagesredirect">' : '' ) .
-                               $sk->makeKnownLinkObj( $t, htmlspecialchars( $t->getText() ), false, false ) .
-                               ($s->page_is_redirect ? '</div>' : '' );
-               } else {
-                       $link = '[[' . htmlspecialchars( $s->page_title ) . ']]';
-               }
-               if( $n % 3 == 0 ) {
-                       $out .= '<tr>';
+
+       $fromList = $this->getNamespaceKeyAndText($namespace, $from);
+       $prefixList = $this->getNamespaceKeyAndText($namespace, $prefix);
+
+       if ( !$prefixList || !$fromList ) {
+               $out = wfMsgWikiHtml( 'badtitletext' );
+       } else {
+               list( $namespace, $prefixKey, $prefix ) = $prefixList;
+               list( $fromNs, $fromKey, $from ) = $fromList;
+
+               ### FIXME: should complain if $fromNs != $namespace
+
+               $dbr =& wfGetDB( DB_SLAVE );
+
+               $res = $dbr->select( 'page',
+                       array( 'page_namespace', 'page_title', 'page_is_redirect' ),
+                       array(
+                               'page_namespace' => $namespace,
+                               'page_title LIKE \'' . $dbr->escapeLike( $prefixKey ) .'%\'',
+                               'page_title >= ' . $dbr->addQuotes( $fromKey ),
+                       ),
+                       $fname,
+                       array(
+                               'ORDER BY'  => 'page_title',
+                               'LIMIT'     => $this->maxPerPage + 1,
+                               'USE INDEX' => 'name_title',
+                       )
+               );
+
+               ### FIXME: side link to previous
+
+               $n = 0;
+               $out = '<table style="background: inherit;" border="0" width="100%">';
+
+               $namespaces = $wgContLang->getFormattedNamespaces();
+               while( ($n < $this->maxPerPage) && ($s = $dbr->fetchObject( $res )) ) {
+                       $t = Title::makeTitle( $s->page_namespace, $s->page_title );
+                       if( $t ) {
+                               $link = ($s->page_is_redirect ? '<div class="allpagesredirect">' : '' ) .
+                                       $sk->makeKnownLinkObj( $t, htmlspecialchars( $t->getText() ), false, false ) .
+                                       ($s->page_is_redirect ? '</div>' : '' );
+                       } else {
+                               $link = '[[' . htmlspecialchars( $s->page_title ) . ']]';
+                       }
+                       if( $n % 3 == 0 ) {
+                               $out .= '<tr>';
+                       }
+                       $out .= "<td>$link</td>";
+                       $n++;
+                       if( $n % 3 == 0 ) {
+                               $out .= '</tr>';
+                       }
                }
-               $out .= "<td>$link</td>";
-               $n++;
-               if( $n % 3 == 0 ) {
+               if( ($n % 3) != 0 ) {
                        $out .= '</tr>';
                }
+               $out .= '</table>';
        }
-       if( ($n % 3) != 0 ) {
-               $out .= '</tr>';
-       }
-       $out .= '</table>';
 
        if ( $including ) {
                $out2 = '';
@@ -127,7 +131,7 @@ function showChunk( $namespace = NS_MAIN, $prefix, $including = false, $from = n
                $out2 .= '</td><td align="right" style="font-size: smaller; margin-bottom: 1em;">' .
                                $sk->makeKnownLink( $wgContLang->specialPage( $this->name ),
                                        wfMsg ( 'allpages' ) );
-               if ( ($n == $this->maxPerPage) && ($s = $dbr->fetchObject( $res )) ) {
+               if ( $dbr && ($n == $this->maxPerPage) && ($s = $dbr->fetchObject( $res )) ) {
                        $namespaceparam = $namespace ? "&namespace=$namespace" : "";
                        $out2 .= " | " . $sk->makeKnownLink(
                                $wgContLang->specialPage( $this->name ),