X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FQueryPage.php;h=0b5875080316e33e5479c3b6c5910fff6c1295cc;hb=56c2036f1e780e4ede9e83f803fdf57929daacfb;hp=925083e0d0c356e63a2e088f9b6f7bd5609e008a;hpb=4b279acd46437f7e01e6e876c777dbb32a6908dc;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/QueryPage.php b/includes/QueryPage.php index 925083e0d0..0b58750803 100644 --- a/includes/QueryPage.php +++ b/includes/QueryPage.php @@ -1,47 +1,89 @@ listoutput; + * + * @param bool $bool + */ + function setListoutput( $bool ) { + $this->listoutput = $bool; + } /** * Subclasses return their name here. Make sure the name is also @@ -52,6 +94,15 @@ class QueryPage { return ''; } + /** + * Return title object representing this page + * + * @return Title + */ + function getTitle() { + return SpecialPage::getTitleFor( $this->getName() ); + } + /** * Subclasses return an SQL query here. * @@ -93,6 +144,18 @@ class QueryPage { return $wgDisableQueryPages; } + /** + * Whether or not the output of the page in question is retrived from + * the database cache. + * + * @return bool + */ + function isCached() { + global $wgMiserMode; + + return $this->isExpensive() && $wgMiserMode; + } + /** * Sometime we dont want to build rss / atom feeds. */ @@ -112,11 +175,21 @@ class QueryPage { /** * The content returned by this function will be output before any result - */ + */ function getPageHeader( ) { return ''; } - + + /** + * If using extra form wheely-dealies, return a set of parameters here + * as an associative array. They will be encoded and added to the paging + * links (prev/next/lengths). + * @return array + */ + function linkParameters() { + return array(); + } + /** * Some special pages (for example SpecialListusers) might not return the * current object formatted, but return the previous one instead. @@ -127,143 +200,271 @@ class QueryPage { return false; } + /** + * Clear the cache and save new results + */ + function recache( $limit, $ignoreErrors = true ) { + $fname = get_class($this) . '::recache'; + $dbw = wfGetDB( DB_MASTER ); + $dbr = wfGetDB( DB_SLAVE, array( $this->getName(), 'QueryPage::recache', 'vslow' ) ); + if ( !$dbw || !$dbr ) { + return false; + } + + $querycache = $dbr->tableName( 'querycache' ); + + if ( $ignoreErrors ) { + $ignoreW = $dbw->ignoreErrors( true ); + $ignoreR = $dbr->ignoreErrors( true ); + } + + # Clear out any old cached data + $dbw->delete( 'querycache', array( 'qc_type' => $this->getName() ), $fname ); + # Do query + $sql = $this->getSQL() . $this->getOrder(); + if ($limit !== false) + $sql = $dbr->limitResult($sql, $limit, 0); + $res = $dbr->query($sql, $fname); + $num = false; + if ( $res ) { + $num = $dbr->numRows( $res ); + # Fetch results + $insertSql = "INSERT INTO $querycache (qc_type,qc_namespace,qc_title,qc_value) VALUES "; + $first = true; + while ( $res && $row = $dbr->fetchObject( $res ) ) { + if ( $first ) { + $first = false; + } else { + $insertSql .= ','; + } + if ( isset( $row->value ) ) { + $value = $row->value; + } else { + $value = 0; + } + + $insertSql .= '(' . + $dbw->addQuotes( $row->type ) . ',' . + $dbw->addQuotes( $row->namespace ) . ',' . + $dbw->addQuotes( $row->title ) . ',' . + $dbw->addQuotes( $value ) . ')'; + } + + # Save results into the querycache table on the master + if ( !$first ) { + if ( !$dbw->query( $insertSql, $fname ) ) { + // Set result to false to indicate error + $dbr->freeResult( $res ); + $res = false; + } + } + if ( $res ) { + $dbr->freeResult( $res ); + } + if ( $ignoreErrors ) { + $dbw->ignoreErrors( $ignoreW ); + $dbr->ignoreErrors( $ignoreR ); + } + + # Update the querycache_info record for the page + $dbw->delete( 'querycache_info', array( 'qci_type' => $this->getName() ), $fname ); + $dbw->insert( 'querycache_info', array( 'qci_type' => $this->getName(), 'qci_timestamp' => $dbw->timestamp() ), $fname ); + + } + return $num; + } + /** * This is the actual workhorse. It does everything needed to make a * real, honest-to-gosh query page. * * @param $offset database query offset * @param $limit database query limit + * @param $shownavigation show navigation like "next 200"? */ - function doQuery( $offset, $limit, $recache = false ) { - global $wgUser, $wgOut, $wgLang, $wgRequest, $wgContLang; - global $wgMiserMode; + function doQuery( $offset, $limit, $shownavigation=true ) { + global $wgUser, $wgOut, $wgLang, $wgContLang; + + $this->offset = $offset; + $this->limit = $limit; $sname = $this->getName(); $fname = get_class($this) . '::doQuery'; - $sql = $this->getSQL(); - $dbr =& wfGetDB( DB_SLAVE ); - $dbw =& wfGetDB( DB_MASTER ); - $querycache = $dbr->tableName( 'querycache' ); + $dbr = wfGetDB( DB_SLAVE ); $wgOut->setSyndicated( $this->isSyndicated() ); - $res = false; - - if ( $this->isExpensive() ) { - // Disabled recache parameter due to retry problems -- TS - // $recache = $wgRequest->getBool( 'recache' ); - - if( $recache ) { - # Clear out any old cached data - $dbw->delete( 'querycache', array( 'qc_type' => $sname ), $fname ); - - # Do query on the (possibly out of date) slave server - $slowDB =& wfGetDB( DB_SLAVE, array( $this->getName(), 'QueryPage-recache', 'vslow' ) ); - $maxstored = 1000; - $res = $slowDB->query( $sql . $this->getOrder() . $dbr->limitResult( $maxstored,0 ), $fname ); - - # Fetch results - $insertSql = "INSERT INTO $querycache (qc_type,qc_namespace,qc_title,qc_value) VALUES "; - $first = true; - while ( $row = $dbr->fetchObject( $res ) ) { - if ( $first ) { - $first = false; - } else { - $insertSql .= ','; - } - if ( isset( $row->value ) ) { - $value = $row->value; - } else { - $value = ''; - } - - $insertSql .= '(' . - $dbw->addQuotes( $row->type ) . ',' . - $dbw->addQuotes( $row->namespace ) . ',' . - $dbw->addQuotes( $row->title ) . ',' . - $dbw->addQuotes( $value ) . ')'; - } - # Save results into the querycache table on the master - if ( !$first ) { - $dbw->query( $insertSql, $fname ); + if ( !$this->isCached() ) { + $sql = $this->getSQL(); + } else { + # Get the cached result + $querycache = $dbr->tableName( 'querycache' ); + $type = $dbr->strencode( $sname ); + $sql = + "SELECT qc_type as type, qc_namespace as namespace,qc_title as title, qc_value as value + FROM $querycache WHERE qc_type='$type'"; + + if( !$this->listoutput ) { + + # Fetch the timestamp of this update + $tRes = $dbr->select( 'querycache_info', array( 'qci_timestamp' ), array( 'qci_type' => $type ), $fname ); + $tRow = $dbr->fetchObject( $tRes ); + + if( $tRow ) { + $updated = $wgLang->timeAndDate( $tRow->qci_timestamp, true, true ); + $wgOut->addMeta( 'Data-Cache-Time', $tRow->qci_timestamp ); + $wgOut->addInlineScript( "var dataCacheTime = '{$tRow->qci_timestamp}';" ); + $wgOut->addWikiMsg( 'perfcachedts', $updated ); + } else { + $wgOut->addWikiMsg( 'perfcached' ); } - # Set result pointer to allow reading for display - $numRows = $dbr->numRows( $res ); - if ( $numRows <= $offset ) { - $num = 0; - } else { - $dbr->dataSeek( $res, $offset ); - $num = max( $limit, $numRows - $offset ); + # If updates on this page have been disabled, let the user know + # that the data set won't be refreshed for now + global $wgDisableQueryPageUpdate; + if( is_array( $wgDisableQueryPageUpdate ) && in_array( $this->getName(), $wgDisableQueryPageUpdate ) ) { + $wgOut->addWikiMsg( 'querypage-no-updates' ); } + } - if( $wgMiserMode || $recache ) { - $type = $dbr->strencode( $sname ); - $sql = - "SELECT qc_type as type, qc_namespace as namespace,qc_title as title, qc_value as value - FROM $querycache WHERE qc_type='$type'"; - } - if( $wgMiserMode ) { - $wgOut->addWikiText( wfMsg( 'perfcached' ) ); - } - } - if ( $res === false ) { - $res = $dbr->query( $sql . $this->getOrder() . - $dbr->limitResult( $limit,$offset ), $fname ); - $num = $dbr->numRows($res); + } - $sk = $wgUser->getSkin( ); + $sql .= $this->getOrder(); + $sql = $dbr->limitResult($sql, $limit, $offset); + $res = $dbr->query( $sql ); + $num = $dbr->numRows($res); - $wgOut->addHTML( $this->getPageHeader() ); + $this->preprocessResults( $dbr, $res ); - $top = wfShowingResults( $offset, $num); - $wgOut->addHTML( "

{$top}\n" ); + $wgOut->addHTML( XML::openElement( 'div', array('class' => 'mw-spcontent') ) ); - # often disable 'next' link when we reach the end - if($num < $limit) { $atend = true; } else { $atend = false; } + # Top header and navigation + if( $shownavigation ) { + $wgOut->addHTML( $this->getPageHeader() ); + if( $num > 0 ) { + $wgOut->addHTML( '

' . wfShowingResults( $offset, $num ) . '

' ); + # Disable the "next" link when we reach the end + $paging = wfViewPrevNext( $offset, $limit, $wgContLang->specialPage( $sname ), + wfArrayToCGI( $this->linkParameters() ), ( $num < $limit ) ); + $wgOut->addHTML( '

' . $paging . '

' ); + } else { + # No results to show, so don't bother with "showing X of Y" etc. + # -- just let the user know and give up now + $wgOut->addHTML( '

' . wfMsgHtml( 'specialpage-empty' ) . '

' ); + $wgOut->addHTML( XML::closeElement( 'div' ) ); + return; + } + } - $sl = wfViewPrevNext( $offset, $limit , $wgContLang->specialPage( $sname ), "" ,$atend ); - $wgOut->addHTML( "
{$sl}

\n" ); + # The actual results; specialist subclasses will want to handle this + # with more than a straight list, so we hand them the info, plus + # an OutputPage, and let them get on with it + $this->outputResults( $wgOut, + $wgUser->getSkin(), + $dbr, # Should use a ResultWrapper for this + $res, + $dbr->numRows( $res ), + $offset ); + + # Repeat the paging links at the bottom + if( $shownavigation ) { + $wgOut->addHTML( '

' . $paging . '

' ); + } + + $wgOut->addHTML( XML::closeElement( 'div' ) ); + + return $num; + } - if ( $num > 0 ) { - $s = "
    "; + /** + * Format and output report results using the given information plus + * OutputPage + * + * @param OutputPage $out OutputPage to print to + * @param Skin $skin User skin to use + * @param Database $dbr Database (read) connection to use + * @param int $res Result pointer + * @param int $num Number of available result rows + * @param int $offset Paging offset + */ + protected function outputResults( $out, $skin, $dbr, $res, $num, $offset ) { + global $wgContLang; - # Only read at most $num rows, because $res may contain the whole 1000 - for ( $i = 0; $i < $num && $obj = $dbr->fetchObject( $res ); $i++ ) { - $format = $this->formatResult( $sk, $obj ); - if ( $format ) { - $attr = ( isset ( $obj->usepatrol ) && $obj->usepatrol && - $obj->patrolled == 0 ) ? ' class="not-patrolled"' : ''; - $s .= "{$format}\n"; + if( $num > 0 ) { + $html = array(); + if( !$this->listoutput ) + $html[] = $this->openList( $offset ); + + # $res might contain the whole 1,000 rows, so we read up to + # $num [should update this to use a Pager] + for( $i = 0; $i < $num && $row = $dbr->fetchObject( $res ); $i++ ) { + $line = $this->formatResult( $skin, $row ); + if( $line ) { + $attr = ( isset( $row->usepatrol ) && $row->usepatrol && $row->patrolled == 0 ) + ? ' class="not-patrolled"' + : ''; + $html[] = $this->listoutput + ? $line + : "{$line}\n"; } } - if($this->tryLastResult()) { - // flush the very last result - $obj = null; - $format = $this->formatResult( $sk, $obj ); - if( $format ) { - $attr = ( isset ( $obj->usepatrol ) && $obj->usepatrol && - $obj->patrolled == 0 ) ? ' class="not-patrolled"' : ''; - $s .= "{$format}\n"; + # Flush the final result + if( $this->tryLastResult() ) { + $row = null; + $line = $this->formatResult( $skin, $row ); + if( $line ) { + $attr = ( isset( $row->usepatrol ) && $row->usepatrol && $row->patrolled == 0 ) + ? ' class="not-patrolled"' + : ''; + $html[] = $this->listoutput + ? $line + : "{$line}\n"; } } - - $dbr->freeResult( $res ); - $s .= '
'; - $wgOut->addHTML( $s ); + + if( !$this->listoutput ) + $html[] = $this->closeList(); + + $html = $this->listoutput + ? $wgContLang->listToText( $html ) + : implode( '', $html ); + + $out->addHTML( $html ); } - $wgOut->addHTML( "

{$sl}

\n" ); - return $num; + } + + function openList( $offset ) { + return "\n
    \n"; + } + + function closeList() { + return "
\n"; } + /** + * Do any necessary preprocessing of the result object. + */ + function preprocessResults( $db, $res ) {} + /** * Similar to above, but packaging in a syndicated feed instead of a web page */ - function doFeed( $class = '' ) { - global $wgFeedClasses; - global $wgOut, $wgLanguageCode, $wgLang; + function doFeed( $class = '', $limit = 50 ) { + global $wgFeed, $wgFeedClasses; + + if ( !$wgFeed ) { + global $wgOut; + $wgOut->addWikiMsg( 'feed-unavailable' ); + return; + } + + global $wgFeedLimit; + if( $limit > $wgFeedLimit ) { + $limit = $wgFeedLimit; + } + if( isset($wgFeedClasses[$class]) ) { $feed = new $wgFeedClasses[$class]( $this->feedTitle(), @@ -271,8 +472,9 @@ class QueryPage { $this->feedUrl() ); $feed->outHeader(); - $dbr =& wfGetDB( DB_SLAVE ); - $sql = $this->getSQL() . $this->getOrder().$dbr->limitResult( 50, 0 ); + $dbr = wfGetDB( DB_SLAVE ); + $sql = $this->getSQL() . $this->getOrder(); + $sql = $dbr->limitResult( $sql, $limit, 0 ); $res = $dbr->query( $sql, 'QueryPage::doFeed' ); while( $obj = $dbr->fetchObject( $res ) ) { $item = $this->feedResult( $obj ); @@ -295,14 +497,9 @@ class QueryPage { if( !isset( $row->title ) ) { return NULL; } - $title = Title::MakeTitle( IntVal( $row->namespace ), $row->title ); + $title = Title::MakeTitle( intval( $row->namespace ), $row->title ); if( $title ) { - if( isset( $row->timestamp ) ) { - $date = $row->timestamp; - } else { - $date = ''; - } - + $date = isset( $row->timestamp ) ? $row->timestamp : ''; $comments = ''; if( $title ) { $talkpage = $title->getTalkPage(); @@ -322,51 +519,26 @@ class QueryPage { } function feedItemDesc( $row ) { - return isset( $row->comment ) - ? htmlspecialchars( $row->comment ) - : ''; + return isset( $row->comment ) ? htmlspecialchars( $row->comment ) : ''; } function feedItemAuthor( $row ) { - if( isset( $row->user_text ) ) { - return $row->user_text; - } else { - return ''; - } + return isset( $row->user_text ) ? $row->user_text : ''; } function feedTitle() { - global $wgLanguageCode, $wgSitename, $wgLang; + global $wgContLanguageCode, $wgSitename; $page = SpecialPage::getPage( $this->getName() ); $desc = $page->getDescription(); - return "$wgSitename - $desc [$wgLanguageCode]"; + return "$wgSitename - $desc [$wgContLanguageCode]"; } function feedDesc() { - return wfMsg( 'tagline' ); + return wfMsgExt( 'tagline', 'parsemag' ); } function feedUrl() { - global $wgLang; - $title = Title::MakeTitle( NS_SPECIAL, $this->getName() ); + $title = SpecialPage::getTitleFor( $this->getName() ); return $title->getFullURL(); } } - -/** - * This is a subclass for very simple queries that are just looking for page - * titles that match some criteria. It formats each result item as a link to - * that page. - * - * @package MediaWiki - */ -class PageQueryPage extends QueryPage { - - function formatResult( $skin, $result ) { - global $wgContLang; - $nt = Title::makeTitle( $result->namespace, $result->title ); - return $skin->makeKnownLinkObj( $nt, $wgContLang->convert( $result->title ) ); - } -} - -?>