X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FSpecialNewpages.php;h=02ba88500d19548b059bcae09eed9096ade40aaf;hb=396524f67413c69576cd84b3c29cfc1045c05718;hp=d6268e391c422c903f846a8bc14a21f448fa1fea;hpb=efca89ebbe7ac625a1d49db0015fc9d80e06ac93;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/SpecialNewpages.php b/includes/SpecialNewpages.php index d6268e391c..02ba88500d 100644 --- a/includes/SpecialNewpages.php +++ b/includes/SpecialNewpages.php @@ -1,46 +1,212 @@ -namespace = $namespace; + $this->username = $username; + } + + function getName() { + return 'Newpages'; + } + + function isExpensive() { + # Indexed on RC, and will *not* work with querycache yet. + return false; + } + + function makeUserWhere( &$dbo ) { + $title = Title::makeTitleSafe( NS_USER, $this->username ); + if( $title ) { + return ' AND rc_user_text = ' . $dbo->addQuotes( $title->getText() ); + } else { + return ''; + } + } + + private function makeNamespaceWhere() { + return $this->namespace !== 'all' + ? ' AND rc_namespace = ' . intval( $this->namespace ) + : ''; + } + + function getSQL() { + global $wgUser, $wgUseRCPatrol; + $usepatrol = ( $wgUseRCPatrol && $wgUser->isAllowed( 'patrol' ) ) ? 1 : 0; + $dbr = wfGetDB( DB_SLAVE ); + list( $recentchanges, $page ) = $dbr->tableNamesN( 'recentchanges', 'page' ); + + $nsfilter = $this->makeNamespaceWhere(); + $uwhere = $this->makeUserWhere( $dbr ); + + # FIXME: text will break with compression + return + "SELECT 'Newpages' as type, + rc_namespace AS namespace, + rc_title AS title, + rc_cur_id AS cur_id, + rc_user AS \"user\", + rc_user_text AS user_text, + rc_comment as \"comment\", + rc_timestamp AS timestamp, + rc_timestamp AS value, + '{$usepatrol}' as usepatrol, + rc_patrolled AS patrolled, + rc_id AS rcid, + page_len as length, + page_latest as rev_id + FROM $recentchanges,$page + WHERE rc_cur_id=page_id AND rc_new=1 + {$nsfilter} + AND page_is_redirect = 0 + {$uwhere}"; + } + + function preprocessResults( &$dbo, &$res ) { + # Do a batch existence check on the user and talk pages + $linkBatch = new LinkBatch(); + while( $row = $dbo->fetchObject( $res ) ) { + $linkBatch->addObj( Title::makeTitleSafe( NS_USER, $row->user_text ) ); + $linkBatch->addObj( Title::makeTitleSafe( NS_USER_TALK, $row->user_text ) ); + } + $linkBatch->execute(); + # Seek to start + if( $dbo->numRows( $res ) > 0 ) + $dbo->dataSeek( $res, 0 ); + } + + /** + * Format a row, providing the timestamp, links to the page/history, size, user links, and a comment + * + * @param $skin Skin to use + * @param $result Result row + * @return string + */ + function formatResult( $skin, $result ) { + global $wgLang, $wgContLang; + $dm = $wgContLang->getDirMark(); + + $title = Title::makeTitleSafe( $result->namespace, $result->title ); + $time = $wgLang->timeAndDate( $result->timestamp, true ); + $plink = $skin->makeKnownLinkObj( $title, '', $this->patrollable( $result ) ? 'rcid=' . $result->rcid : '' ); + $hist = $skin->makeKnownLinkObj( $title, wfMsgHtml( 'hist' ), 'action=history' ); + $length = wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ), $wgLang->formatNum( htmlspecialchars( $result->length ) ) ); + $ulink = $skin->userLink( $result->user, $result->user_text ) . ' ' . $skin->userToolLinks( $result->user, $result->user_text ); + $comment = $skin->commentBlock( $result->comment ); + + return "{$time} {$dm}{$plink} ({$hist}) {$dm}[{$length}] {$dm}{$ulink} {$comment}"; + } + + /** + * Should a specific result row provide "patrollable" links? + * + * @param $result Result row + * @return bool + */ + function patrollable( $result ) { + global $wgUser, $wgUseRCPatrol; + return $wgUseRCPatrol && $wgUser->isAllowed( 'patrol' ) && !$result->patrolled; + } + + function feedItemDesc( $row ) { + if( isset( $row->rev_id ) ) { + $revision = Revision::newFromId( $row->rev_id ); + if( $revision ) { + return '

' . htmlspecialchars( wfMsg( 'summary' ) ) . ': ' . + htmlspecialchars( $revision->getComment() ) . "

\n
\n
" . + nl2br( htmlspecialchars( $revision->getText() ) ) . "
"; + } + } + return parent::feedItemDesc( $row ); + } + + /** + * Show a form for filtering namespace and username + * + * @return string + */ + function getPageHeader() { + $self = SpecialPage::getTitleFor( $this->getName() ); + $form = Xml::openElement( 'form', array( 'method' => 'post', 'action' => $self->getLocalUrl() ) ); + # Namespace selector + $form .= ''; + $form .= ''; + # Username filter + $form .= ''; + $form .= ''; + + $form .= '
' . Xml::label( wfMsg( 'namespace' ), 'namespace' ) . '' . Xml::namespaceSelector( $this->namespace, 'all' ) . '
' . Xml::label( wfMsg( 'newpages-username' ), 'mw-np-username' ) . '' . Xml::input( 'username', 30, $this->username, array( 'id' => 'mw-np-username' ) ) . '
' . Xml::submitButton( wfMsg( 'allpagessubmit' ) ) . '
'; + $form .= Xml::hidden( 'offset', $this->offset ) . Xml::hidden( 'limit', $this->limit ) . ''; + return $form; + } + + /** + * Link parameters + * + * @return array + */ + function linkParameters() { + return( array( 'namespace' => $this->namespace, 'username' => $this->username ) ); + } + +} + +/** + * constructor + */ +function wfSpecialNewpages($par, $specialPage) { + global $wgRequest, $wgContLang; list( $limit, $offset ) = wfCheckLimits(); + $namespace = NS_MAIN; + $username = ''; + + if ( $par ) { + $bits = preg_split( '/\s*,\s*/', trim( $par ) ); + foreach ( $bits as $bit ) { + if ( 'shownav' == $bit ) + $shownavigation = true; + if ( is_numeric( $bit ) ) + $limit = $bit; - $sql = "SELECT rc_title AS cur_title,rc_user AS cur_user,rc_user_text AS cur_user_text,cur_comment," . - "rc_timestamp AS cur_timestamp,length(cur_text) as cur_length FROM recentchanges,cur " . - "WHERE rc_cur_id=cur_id AND rc_new=1 AND rc_namespace=0 AND cur_text NOT LIKE '#REDIRECT%' " . - " ORDER BY rc_timestamp DESC LIMIT {$offset}, {$limit}"; - $res = wfQuery( $sql, $fname ); - - $top = wfShowingResults( $offset, $limit ); - $wgOut->addHTML( "

{$top}\n" ); - - $sl = wfViewPrevNext( $offset, $limit, - $wgLang->specialPage( "Newpages" ) ); - $wgOut->addHTML( "
{$sl}\n" ); - - $sk = $wgUser->getSkin(); - $s = "

    "; - while ( $obj = wfFetchObject( $res ) ) { - $u = $obj->cur_user; - $ut = $obj->cur_user_text; - $length= wfmsg("nbytes",$obj->cur_length); - $c = wfEscapeHTML( $obj->cur_comment ); - if ( 0 == $u ) { $ul = $ut; } - else { $ul = $sk->makeLink( $wgLang->getNsText(2).":{$ut}", $ut ); } - - $d = $wgLang->timeanddate( $obj->cur_timestamp, true ); - $link = $sk->makeKnownLink( $obj->cur_title, "" ); - $s .= "
  1. {$d} {$link} ({$length}) . . {$ul}"; - - if ( "" != $c && "*" != $c ) { $s .= " ({$c})"; } - $s .= "
  2. \n"; - } - wfFreeResult( $res ); - $s .= "
"; - $wgOut->addHTML( $s ); - $wgOut->addHTML( "

{$sl}\n" ); + $m = array(); + if ( preg_match( '/^limit=(\d+)$/', $bit, $m ) ) + $limit = intval($m[1]); + if ( preg_match( '/^offset=(\d+)$/', $bit, $m ) ) + $offset = intval($m[1]); + if ( preg_match( '/^namespace=(.*)$/', $bit, $m ) ) { + $ns = $wgContLang->getNsIndex( $m[1] ); + if( $ns !== false ) { + $namespace = $ns; + } + } + } + } else { + if( $ns = $wgRequest->getText( 'namespace', NS_MAIN ) ) + $namespace = $ns; + if( $un = $wgRequest->getText( 'username' ) ) + $username = $un; + } + + if ( ! isset( $shownavigation ) ) + $shownavigation = ! $specialPage->including(); + + $npp = new NewPagesPage( $namespace, $username ); + + if ( ! $npp->doFeed( $wgRequest->getVal( 'feed' ), $limit ) ) + $npp->doQuery( $offset, $limit, $shownavigation ); } -?> +