wiki.techinc.nl/includes/SpecialWhatlinkshere.php

278 lines
7.4 KiB
PHP
Raw Normal View History

<?php
/**
*
* @package MediaWiki
* @subpackage SpecialPage
*/
2003-04-14 23:10:40 +00:00
/**
2005-01-27 00:43:53 +00:00
* Entry point
* @param string $par An article name ??
*/
function wfSpecialWhatlinkshere($par = NULL) {
global $wgRequest;
$page = new WhatLinksHerePage( $wgRequest, $par );
$page->execute();
}
class WhatLinksHerePage {
var $request, $par;
var $limit, $from, $dir, $target;
var $selfTitle, $skin;
2006-01-07 13:31:29 +00:00
function WhatLinksHerePage( &$request, $par = null ) {
global $wgUser;
$this->request =& $request;
$this->skin =& $wgUser->getSkin();
$this->par = $par;
2003-04-14 23:10:40 +00:00
}
2004-05-09 14:28:21 +00:00
function execute() {
global $wgOut;
2006-01-07 13:31:29 +00:00
$this->limit = min( $this->request->getInt( 'limit', 50 ), 5000 );
if ( $this->limit <= 0 ) {
$this->limit = 50;
}
$this->from = $this->request->getInt( 'from' );
$this->dir = $this->request->getText( 'dir', 'next' );
if ( $this->dir != 'prev' ) {
$this->dir = 'next';
}
2006-01-07 13:31:29 +00:00
$targetString = isset($this->par) ? $this->par : $this->request->getVal( 'target' );
2003-04-14 23:10:40 +00:00
if (is_null($targetString)) {
$wgOut->errorpage( 'notargettitle', 'notargettext' );
return;
}
2003-04-14 23:10:40 +00:00
$this->target = Title::newFromURL( $targetString );
if( !$this->target ) {
$wgOut->errorpage( 'notargettitle', 'notargettext' );
return;
}
2006-01-07 13:09:30 +00:00
$this->selfTitle = Title::makeTitleSafe( NS_SPECIAL,
'Whatlinkshere/' . $this->target->getPrefixedDBkey() );
$wgOut->setPagetitle( $this->target->getPrefixedText() );
$wgOut->setSubtitle( wfMsg( 'linklistsub' ) );
$isredir = ' (' . wfMsg( 'isredirect' ) . ")\n";
2003-04-14 23:10:40 +00:00
$wgOut->addHTML('&lt; '.$this->skin->makeLinkObj($this->target, '', 'redirect=no' )."<br />\n");
2003-04-14 23:10:40 +00:00
$this->showIndirectLinks( 0, $this->target, $this->limit, $this->from, $this->dir );
2003-04-14 23:10:40 +00:00
}
/**
* @param int $level Recursion level
* @param Title $target Target title
* @param int $limit Number of entries to display
* @param Title $from Display from this article ID
* @param string $dir 'next' or 'prev', whether $fromTitle is the start or end of the list
* @access private
*/
function showIndirectLinks( $level, $target, $limit, $from = 0, $dir = 'next' ) {
global $wgOut;
$fname = 'WhatLinksHerePage::showIndirectLinks';
$dbr =& wfGetDB( DB_READ );
2006-01-07 13:31:29 +00:00
extract( $dbr->tableNames( 'pagelinks', 'templatelinks', 'page' ) );
// Some extra validation
$from = intval( $from );
if ( !$from && $dir == 'prev' ) {
// Before start? No make sense
$dir = 'next';
}
2006-01-07 13:31:29 +00:00
// Make the query
2006-01-07 13:09:30 +00:00
$plConds = array(
2006-01-02 01:15:49 +00:00
'page_id=pl_from',
'pl_namespace' => $target->getNamespace(),
'pl_title' => $target->getDBkey(),
);
2006-01-07 13:31:29 +00:00
2006-01-07 13:09:30 +00:00
$tlConds = array(
2006-01-02 01:15:49 +00:00
'page_id=tl_from',
'tl_namespace' => $target->getNamespace(),
'tl_title' => $target->getDBkey(),
);
2006-01-07 13:31:29 +00:00
if ( $from ) {
if ( 'prev' == $dir ) {
2006-01-02 01:15:49 +00:00
$offsetCond = "page_id < $from";
$options = array( 'ORDER BY page_id DESC' );
} else {
2006-01-02 01:15:49 +00:00
$offsetCond = "page_id >= $from";
$options = array( 'ORDER BY page_id' );
}
} else {
2006-01-02 01:15:49 +00:00
$offsetCond = false;
$options = array( 'ORDER BY page_id,is_template DESC' );
}
// Read an extra row as an at-end check
$queryLimit = $limit + 1;
2006-01-02 01:15:49 +00:00
$options['LIMIT'] = $queryLimit;
if ( $offsetCond ) {
$tlConds[] = $offsetCond;
$plConds[] = $offsetCond;
}
$fields = array( 'page_id', 'page_namespace', 'page_title', 'page_is_redirect' );
2006-01-07 13:31:29 +00:00
2006-01-07 13:09:30 +00:00
$plRes = $dbr->select( array( 'pagelinks', 'page' ), $fields,
2006-01-02 01:15:49 +00:00
$plConds, $fname, $options );
2006-01-07 13:09:30 +00:00
$tlRes = $dbr->select( array( 'templatelinks', 'page' ), $fields,
2006-01-02 01:15:49 +00:00
$tlConds, $fname, $options );
2006-01-07 13:31:29 +00:00
2006-01-02 01:15:49 +00:00
if ( !$dbr->numRows( $plRes ) && !$dbr->numRows( $tlRes ) ) {
if ( 0 == $level ) {
$wgOut->addWikiText( wfMsg( 'nolinkshere' ) );
}
return;
2006-01-07 13:31:29 +00:00
}
2006-01-02 01:15:49 +00:00
// Read the rows into an array and remove duplicates
2006-01-07 13:09:30 +00:00
// templatelinks comes second so that the templatelinks row overwrites the
2006-01-02 01:15:49 +00:00
// pagelinks row, so we get (inclusion) rather than nothing
while ( $row = $dbr->fetchObject( $plRes ) ) {
$row->is_template = 0;
$rows[$row->page_id] = $row;
}
2006-01-02 01:15:49 +00:00
$dbr->freeResult( $plRes );
while ( $row = $dbr->fetchObject( $tlRes ) ) {
$row->is_template = 1;
$rows[$row->page_id] = $row;
}
2006-01-02 01:15:49 +00:00
$dbr->freeResult( $tlRes );
// Sort by key and then change the keys to 0-based indices
ksort( $rows );
$rows = array_values( $rows );
2006-01-07 13:31:29 +00:00
2006-01-02 01:15:49 +00:00
$numRows = count( $rows );
2006-01-07 13:31:29 +00:00
// Work out the start and end IDs, for prev/next links
if ( $dir == 'prev' ) {
// Descending order
2006-01-02 01:15:49 +00:00
if ( $numRows > $limit ) {
// More rows available before these ones
2006-01-02 01:15:49 +00:00
// Get the ID from the next row past the end of the displayed set
$prevId = $rows[$limit]->page_id;
// Remove undisplayed rows
$rows = array_slice( $rows, 0, $limit );
} else {
// No more rows available before
$prevId = 0;
}
// Assume that the ID specified in $from exists, so there must be another page
$nextId = $from;
2006-01-07 13:31:29 +00:00
2006-01-02 01:15:49 +00:00
// Reverse order ready for display
$rows = array_reverse( $rows );
} else {
// Ascending
2006-01-02 01:15:49 +00:00
if ( $numRows > $limit ) {
// More rows available after these ones
// Get the ID from the last row in the result set
2006-01-02 01:15:49 +00:00
$nextId = $rows[$limit]->page_id;
// Remove undisplayed rows
$rows = array_slice( $rows, 0, $limit );
} else {
// No more rows after
$nextId = false;
}
$prevId = $from;
}
2006-01-07 13:31:29 +00:00
if ( 0 == $level ) {
$wgOut->addWikiText( wfMsg( 'linkshere' ) );
}
$isredir = wfMsg( 'isredirect' );
$istemplate = wfMsg( 'istemplate' );
2006-01-07 13:31:29 +00:00
if( $level == 0 ) {
$prevnext = $this->getPrevNext( $limit, $prevId, $nextId );
$wgOut->addHTML( $prevnext );
}
2006-01-07 13:31:29 +00:00
$wgOut->addHTML( '<ul>' );
foreach ( $rows as $row ) {
$nt = Title::makeTitle( $row->page_namespace, $row->page_title );
if ( $row->page_is_redirect ) {
$extra = 'redirect=no';
} else {
$extra = '';
}
$link = $this->skin->makeKnownLinkObj( $nt, '', $extra );
$wgOut->addHTML( '<li>'.$link );
// Display properties (redirect or template)
$props = array();
if ( $row->page_is_redirect ) {
$props[] = $isredir;
}
if ( $row->is_template ) {
$props[] = $istemplate;
}
if ( count( $props ) ) {
// FIXME? Cultural assumption, hard-coded punctuation
$wgOut->addHTML( ' (' . implode( ', ', $props ) . ') ' );
}
2006-01-07 13:31:29 +00:00
if ( $row->page_is_redirect ) {
if ( $level < 2 ) {
$this->showIndirectLinks( $level + 1, $nt, 500 );
}
}
$wgOut->addHTML( "</li>\n" );
}
$wgOut->addHTML( "</ul>\n" );
2006-01-07 13:31:29 +00:00
if( $level == 0 ) {
$wgOut->addHTML( $prevnext );
2003-04-14 23:10:40 +00:00
}
}
function makeSelfLink( $text, $query ) {
return $this->skin->makeKnownLinkObj( $this->selfTitle, $text, $query );
}
function getPrevNext( $limit, $prevId, $nextId ) {
global $wgLang;
$fmtLimit = $wgLang->formatNum( $limit );
$prev = wfMsg( 'prevn', $fmtLimit );
$next = wfMsg( 'nextn', $fmtLimit );
if ( 0 != $prevId ) {
$prevLink = $this->makeSelfLink( $prev, "limit={$limit}&from={$prevId}&dir=prev" );
2006-01-07 13:09:30 +00:00
} else {
$prevLink = $prev;
}
if ( 0 != $nextId ) {
$nextLink = $this->makeSelfLink( $next, "limit={$limit}&from={$nextId}" );
} else {
$nextLink = $next;
}
$nums = $this->numLink( 20, $prevId ) . ' | ' .
$this->numLink( 50, $prevId ) . ' | ' .
$this->numLink( 100, $prevId ) . ' | ' .
$this->numLink( 250, $prevId ) . ' | ' .
$this->numLink( 500, $prevId );
return wfMsg( 'viewprevnext', $prevLink, $nextLink, $nums );
}
function numLink( $limit, $from ) {
global $wgLang;
$query = "limit={$limit}&from={$from}";
$fmtLimit = $wgLang->formatNum( $limit );
return $this->makeSelfLink( $fmtLimit, $query );
}
2003-04-14 23:10:40 +00:00
}
?>