wiki.techinc.nl/includes/SpecialMaintenance.php

377 lines
12 KiB
PHP
Raw Normal View History

<?php
2003-04-14 23:10:40 +00:00
function sns()
{
2003-04-14 23:10:40 +00:00
global $wgLang ;
$ns = $wgLang->getNamespaces() ;
return $ns[-1] ;
}
2003-04-14 23:10:40 +00:00
function wfSpecialMaintenance( $par=NULL )
{
global $wgUser, $wgOut, $wgLang, $wgTitle, $wgRequest, $wgLanguageCode;
global $wgMiserMode;
2003-04-14 23:10:40 +00:00
if ( $wgMiserMode ) {
$wgOut->addWikiText( wfMsg( "perfdisabled" ) );
return;
}
$submitmll = $wgRequest->getVal( 'submitmll' );
if( $par )
$subfunction = $par;
else
$subfunction = $wgRequest->getText( 'subfunction' );
2003-04-14 23:10:40 +00:00
if ( $subfunction == "disambiguations" ) return wfSpecialDisambiguations() ;
if ( $subfunction == "doubleredirects" ) return wfSpecialDoubleRedirects() ;
if ( $subfunction == "brokenredirects" ) return wfSpecialBrokenRedirects() ;
if ( $subfunction == "selflinks" ) return wfSpecialSelfLinks() ;
if ( $subfunction == "mispeelings" ) return wfSpecialMispeelings() ;
if ( $subfunction == "missinglanguagelinks" ) return wfSpecialMissingLanguageLinks() ;
if ( !is_null( $submitmll ) ) return wfSpecialMissingLanguageLinks() ;
2003-04-14 23:10:40 +00:00
$sk = $wgUser->getSkin();
$ns = $wgLang->getNamespaces() ;
$r = wfMsg("maintnancepagetext") ;
$r .= "<UL>\n" ;
#$r .= "<li>".getMPL("disambiguations")."</li>\n" ; # Doesn't work
2003-04-14 23:10:40 +00:00
$r .= "<li>".getMPL("doubleredirects")."</li>\n" ;
$r .= "<li>".getMPL("brokenredirects")."</li>\n" ;
#$r .= "<li>".getMPL("selflinks")."</li>\n" ; # Doesn't work
$r .= "<li>".getMPL("mispeelings")."</li>\n" ;
2003-04-14 23:10:40 +00:00
$r .= "<li>";
$l = getMPL("missinglanguagelinks");
$l = str_replace ( "</a>" , "" , $l ) ;
$l = str_replace ( "<a " , "<FORM method=post " , $l ) ;
$l = explode ( ">" , $l ) ;
$l = $l[0] ;
$r .= $l.">\n" ;
$r .= "<input type=submit name='submitmll' value='" ;
$r .= htmlspecialchars(wfMsg("missinglanguagelinksbutton"), ENT_QUOTES);
2003-04-14 23:10:40 +00:00
$r .= "'>\n" ;
$r .= "<select name=thelang>\n" ;
$a = $wgLang->getLanguageNames();
$ak = array_keys ( $a ) ;
foreach ( $ak AS $k ) {
if ( $k != $wgLanguageCode )
$r .= "<option value='{$k}'>{$a[$k]}</option>\n" ;
}
2003-04-14 23:10:40 +00:00
$r .= "</select>\n" ;
$r .= "</FORM>\n</li>" ;
$r .= "</UL>\n" ;
$wgOut->addHTML ( $r ) ;
}
2003-04-14 23:10:40 +00:00
function getMPL ( $x )
{
2003-04-14 23:10:40 +00:00
global $wgUser , $wgLang;
$sk = $wgUser->getSkin() ;
return $sk->makeKnownLink(sns().":Maintenance",wfMsg($x),"subfunction={$x}") ;
}
2003-04-14 23:10:40 +00:00
function getMaintenancePageBacklink( $subfunction )
{
global $wgUser , $wgLang;
2003-04-14 23:10:40 +00:00
$sk = $wgUser->getSkin() ;
$ns = $wgLang->getNamespaces() ;
$r = $sk->makeKnownLink (
$ns[-1].":Maintenance",
wfMsg("maintenancebacklink") ) ;
$t = wfMsg ( $subfunction ) ;
$s = "<table width=100% border=0><tr><td>";
$s .= "<h2>{$t}</h2></td><td align=right>";
$s .= "{$r}</td></tr></table>\n" ;
return $s ;
}
2003-04-14 23:10:40 +00:00
# Broken function
# Suggest deprecating this in favour of a Special:Whatlinkshere with prev/next links [TS]
2003-04-14 23:10:40 +00:00
function wfSpecialDisambiguations()
{
global $wgUser, $wgOut, $wgLang, $wgTitle;
$fname = "wfSpecialDisambiguations";
list( $limit, $offset ) = wfCheckLimits();
$dbr =& wfGetDB( DB_SLAVE );
extract( $dbr->tableNames( 'links', 'cur' ) );
2003-04-14 23:10:40 +00:00
$dp = $dbr->strencode( wfMsg("disambiguationspage") );
die( "wfSpecialDisambiguation is broken. Link tables have changed...\n" );
2003-04-14 23:10:40 +00:00
$sql = "SELECT la.l_from,la.l_to,"
. " lb.l_from AS source,lb.l_to AS dest,"
. " c.cur_id, c.cur_title AS dt"
. " FROM $links AS la, $links AS lb, $cur AS c, $cur AS d"
2003-04-14 23:10:40 +00:00
. " WHERE la.l_from='{$dp}'"
. " AND la.l_to=lb.l_to"
. " AND la.l_from<>lb.l_from"
. " AND c.cur_id=lb.l_to"
. " AND c.cur_namespace=0"
. " AND d.cur_title=lb.l_from"
. " AND d.cur_namespace=0"
. " LIMIT {$offset}, {$limit}";
$res = $dbr->query( $sql, $fname );
2003-04-14 23:10:40 +00:00
$sk = $wgUser->getSkin();
2003-11-15 13:56:14 +00:00
$top = "<p>".wfMsg( "disambiguationstext", $sk->makeKnownLink( $dp ) )."</p><br>\n";
$top = getMaintenancePageBacklink( "disambiguations" ) . $top;
2003-04-14 23:10:40 +00:00
$top .= wfShowingResults( $offset, $limit );
$wgOut->addHTML( "<p>{$top}\n" );
$sl = wfViewPrevNext( $offset, $limit, "REPLACETHIS" ) ;
$sl = str_replace ( "REPLACETHIS" , sns().":Maintenance&subfunction=disambiguations" , $sl ) ;
$wgOut->addHTML( "<br>{$sl}\n" );
$s = "<ol start=" . ( $offset + 1 ) . ">";
while ( $obj = $dbr->fetchObject( $res ) ) {
2003-04-14 23:10:40 +00:00
$l1 = $sk->makeKnownLink ( $obj->source , "" , "redirect=no" ) ;
$l2 = $sk->makeKnownLink ( $obj->dt ) ;
$l3 = $sk->makeBrokenLink ( $obj->source , "(".wfMsg("qbedit").")" , "redirect=no" ) ;
$s .= "<li>{$l1} {$l3} => {$l2}</li>\n" ;
}
$dbr->freeResult( $res );
2003-04-14 23:10:40 +00:00
$s .= "</ol>";
$wgOut->addHTML( $s );
$wgOut->addHTML( "<p>{$sl}\n" );
}
function wfSpecialDoubleRedirects()
{
global $wgUser, $wgOut, $wgLang, $wgTitle;
$fname = "wfSpecialDoubleRedirects";
list( $limit, $offset ) = wfCheckLimits();
$dbr =& wfGetDB( DB_SLAVE );
extract( $dbr->tableNames( 'cur', 'links' ) );
2003-04-14 23:10:40 +00:00
$sql = "SELECT ca.cur_namespace as ns_a, ca.cur_title as title_a," .
" cb.cur_namespace as ns_b, cb.cur_title as title_b," .
" cb.cur_text AS rt " .
"FROM $links,$cur AS ca,$cur AS cb ".
"WHERE ca.cur_is_redirect=1 AND cb.cur_is_redirect=1 AND l_to=cb.cur_id " .
" AND l_from=ca.cur_id LIMIT {$offset}, {$limit}" ;
2003-04-14 23:10:40 +00:00
$res = $dbr->query( $sql, $fname );
2003-04-14 23:10:40 +00:00
$top = getMaintenancePageBacklink( "doubleredirects" );
2003-04-14 23:10:40 +00:00
$top .= "<p>".wfMsg("doubleredirectstext")."</p><br>\n";
$top .= wfShowingResults( $offset, $limit );
$wgOut->addHTML( "<p>{$top}\n" );
$sl = wfViewPrevNext( $offset, $limit, "REPLACETHIS" ) ;
$sl = str_replace ( "REPLACETHIS" , sns().":Maintenance&subfunction=doubleredirects" , $sl ) ;
$wgOut->addHTML( "<br>{$sl}\n" );
$sk = $wgUser->getSkin();
$s = "<ol start=" . ( $offset + 1 ) . ">";
while ( $obj = $dbr->fetchObject( $res ) ) {
2003-04-14 23:10:40 +00:00
$n = explode ( "\n" , $obj->rt ) ;
$n = $n[0] ;
$sourceTitle = Title::makeTitle( $obj->ns_a, $obj->title_a );
$destTitle = Title::makeTitle( $obj->ns_b, $obj->title_b );
$l1 = $sk->makeKnownLinkObj( $sourceTitle , "" , "redirect=no" ) ;
$l2 = $sk->makeKnownLinkObj( $destTitle , "" , "redirect=no" ) ;
$l3 = $sk->makeBrokenLinkObj( $sourceTitle , "(".wfMsg("qbedit").")" , "redirect=no" ) ;
2003-04-14 23:10:40 +00:00
$s .= "<li>{$l1} {$l3} => {$l2} (\"{$n}\")</li>\n" ;
}
$dbr->freeResult( $res );
2003-04-14 23:10:40 +00:00
$s .= "</ol>";
$wgOut->addHTML( $s );
$wgOut->addHTML( "<p>{$sl}\n" );
}
function wfSpecialBrokenRedirects()
{
global $wgUser, $wgOut, $wgLang, $wgTitle;
$fname = "wfSpecialBrokenRedirects";
list( $limit, $offset ) = wfCheckLimits();
$dbr =& wfGetDB( DB_SLAVE );
extract( $dbr->tableNames( 'cur', 'brokenlinks' ) );
2003-04-14 23:10:40 +00:00
$sql = "SELECT bl_to,cur_title FROM $brokenlinks,$cur " .
"WHERE cur_is_redirect=1 AND cur_namespace=0 AND bl_from=cur_id " .
"LIMIT {$offset}, {$limit}" ;
2003-04-14 23:10:40 +00:00
$res = $dbr->query( $sql, $fname );
2003-04-14 23:10:40 +00:00
$top = getMaintenancePageBacklink( "brokenredirects" );
2003-04-14 23:10:40 +00:00
$top .= "<p>".wfMsg("brokenredirectstext")."</p><br>\n";
$top .= wfShowingResults( $offset, $limit );
$wgOut->addHTML( "<p>{$top}\n" );
$sl = wfViewPrevNext( $offset, $limit, "REPLACETHIS" ) ;
$sl = str_replace ( "REPLACETHIS" , sns().":Maintenance&subfunction=brokenredirects" , $sl ) ;
$wgOut->addHTML( "<br>{$sl}\n" );
$sk = $wgUser->getSkin();
$s = "<ol start=" . ( $offset + 1 ) . ">";
while ( $obj = $dbr->fetchObject( $res ) ) {
2003-04-14 23:10:40 +00:00
$l1 = $sk->makeKnownLink ( $obj->cur_title , "" , "redirect=no" ) ;
$l2 = $sk->makeBrokenLink ( $obj->cur_title , "(".wfMsg("qbedit").")" , "redirect=no" ) ;
$l3 = $sk->makeBrokenLink ( $obj->bl_to , "" , "redirect=no" ) ;
$s .= "<li>{$l1} {$l2} => {$l3}</li>\n" ;
}
$dbr->freeResult( $res );
2003-04-14 23:10:40 +00:00
$s .= "</ol>";
$wgOut->addHTML( $s );
$wgOut->addHTML( "<p>{$sl}\n" );
}
# This doesn't really work anymore, because self-links are now displayed as
# unlinked bold text, and are not entered into the link table.
2003-04-14 23:10:40 +00:00
function wfSpecialSelfLinks()
{
global $wgUser, $wgOut, $wgLang, $wgTitle;
$fname = "wfSpecialSelfLinks";
list( $limit, $offset ) = wfCheckLimits();
2003-04-14 23:10:40 +00:00
$sql = "SELECT cur_namespace,cur_title FROM cur,links " .
"WHERE l_from=l_to AND l_to=cur_id " .
"LIMIT {$offset}, {$limit}";
2003-04-14 23:10:40 +00:00
$res = wfQuery( $sql, DB_SLAVE, $fname );
2003-04-14 23:10:40 +00:00
$top = getMaintenancePageBacklink( "selflinks" );
2003-04-14 23:10:40 +00:00
$top .= "<p>".wfMsg("selflinkstext")."</p><br>\n";
$top .= wfShowingResults( $offset, $limit );
$wgOut->addHTML( "<p>{$top}\n" );
$sl = wfViewPrevNext( $offset, $limit, "REPLACETHIS" ) ;
$sl = str_replace ( "REPLACETHIS" , sns().":Maintenance&subfunction=selflinks" , $sl ) ;
$wgOut->addHTML( "<br>{$sl}\n" );
$sk = $wgUser->getSkin();
$s = "<ol start=" . ( $offset + 1 ) . ">";
while ( $obj = wfFetchObject( $res ) ) {
$title = Title::makeTitle( $obj->cur_namespace, $obj->cur_title );
$s .= "<li>".$sk->makeKnownLinkObj( $title )."</li>\n" ;
}
2003-04-14 23:10:40 +00:00
wfFreeResult( $res );
$s .= "</ol>";
$wgOut->addHTML( $s );
$wgOut->addHTML( "<p>{$sl}\n" );
}
function wfSpecialMispeelings ()
{
global $wgUser, $wgOut, $wgLang, $wgTitle;
$sk = $wgUser->getSkin();
$fname = "wfSpecialMispeelings";
list( $limit, $offset ) = wfCheckLimits();
$dbr =& wfGetDB( DB_SLAVE );
extract( $dbr->tableNames( 'cur', 'searchindex' ) );
# Determine page name
$ms = wfMsg ( "mispeelingspage" ) ;
$mss = str_replace ( " " , "_" , $ms );
$msp = $wgLang->getNsText(4).":".$ms ;
$msl = $sk->makeKnownLink ( $msp ) ;
# Load list from database
$l = $dbr->selectField( 'cur', 'cur_text', array( 'cur_title' => $mss, 'cur_namespace' => 4 ), $fname );
$l = explode ( "\n" , $l ) ;
$a = array () ;
foreach ( $l as $x )
if ( substr ( trim ( $x ) , 0 , 1 ) == "*" )
$a[] = strtolower ( trim ( substr ( trim ( $x ) , 1 ) ) );
asort ( $a ) ;
$cnt = 0 ;
$b = array () ;
foreach ( $a AS $x ) {
if ( $cnt < $offset+$limit && $x != "" ) {
$y = $x ;
$x = preg_replace( '/^(\S+).*$/', '$1', $x );
$sql = "SELECT DISTINCT cur_title FROM $cur,$searchindex WHERE cur_id=si_page AND ".
"cur_namespace=0 AND cur_is_redirect=0 AND " .
"(MATCH(si_text) AGAINST ('" . $dbr->strencode( $wgLang->stripForSearch( $x ) ) . "'))" ;
$res = $dbr->query( $sql, $fname );
while ( $obj = $dbr->fetchObject ( $res ) ) {
if ( $cnt >= $offset AND $cnt < $offset+$limit ) {
if ( $y != "" ) {
if ( count ( $b ) > 0 ) $b[] = "</OL>\n" ;
$b[] = "<H3>{$y}</H3>\n<OL start=".($cnt+1).">\n" ;
$y = "" ;
}
$b[] = "<li>".
$sk->makeKnownLink ( $obj->cur_title ).
" (".
$sk->makeBrokenLink ( $obj->cur_title , wfMsg ( "qbedit" ) ).
")</li>\n" ;
}
$cnt++ ;
}
}
}
$top = getMaintenancePageBacklink( "mispeelings" );
$top .= "<p>".wfMsg( "mispeelingstext", $msl )."</p><br>\n";
$top .= wfShowingResults( $offset, $limit );
$wgOut->addHTML( "<p>{$top}\n" );
$sl = wfViewPrevNext( $offset, $limit, "REPLACETHIS" ) ;
$sl = str_replace ( "REPLACETHIS" , sns().":Maintenance&subfunction=mispeelings" , $sl ) ;
$wgOut->addHTML( "<br>{$sl}\n" );
$s = implode ( "" , $b ) ;
if ( count ( $b ) > 0 ) $s .= "</ol>";
$wgOut->addHTML( $s );
$wgOut->addHTML( "<p>{$sl}\n" );
2003-04-14 23:10:40 +00:00
}
function wfSpecialMissingLanguageLinks()
{
global $wgUser, $wgOut, $wgLang, $wgTitle, $wgRequest;
2003-04-14 23:10:40 +00:00
$fname = "wfSpecialMissingLanguageLinks";
$thelang = $wgRequest->getText( 'thelang' );
2003-04-14 23:10:40 +00:00
if ( $thelang == "w" ) $thelang = "en" ; # Fix for international wikis
list( $limit, $offset ) = wfCheckLimits();
$dbr =& wfGetDB( DB_SLAVE );
$cur = $dbr->tableName( 'cur' );
2003-04-14 23:10:40 +00:00
$sql = "SELECT cur_title FROM $cur " .
"WHERE cur_namespace=0 AND cur_is_redirect=0 " .
"AND cur_title NOT LIKE '%/%' AND cur_text NOT LIKE '%[[{$thelang}:%' " .
"LIMIT {$offset}, {$limit}";
2003-04-14 23:10:40 +00:00
$res = $dbr->query( $sql, $fname );
2003-04-14 23:10:40 +00:00
2003-11-15 13:56:14 +00:00
$mll = wfMsg( "missinglanguagelinkstext", $wgLang->getLanguageName($thelang) );
2003-04-14 23:10:40 +00:00
$top = getMaintenancePageBacklink( "missinglanguagelinks" );
2003-04-14 23:10:40 +00:00
$top .= "<p>$mll</p><br>";
$top .= wfShowingResults( $offset, $limit );
$wgOut->addHTML( "<p>{$top}\n" );
$sl = wfViewPrevNext( $offset, $limit, "REPLACETHIS" ) ;
$sl = str_replace ( "REPLACETHIS" , sns().":Maintenance&subfunction=missinglanguagelinks&thelang={$thelang}" , $sl ) ;
$wgOut->addHTML( "<br>{$sl}\n" );
$sk = $wgUser->getSkin();
$s = "<ol start=" . ( $offset + 1 ) . ">";
while ( $obj = $dbr->fetchObject( $res ) )
2003-04-14 23:10:40 +00:00
$s .= "<li>".$sk->makeKnownLink ( $obj->cur_title )."</li>\n" ;
$dbr->freeResult( $res );
2003-04-14 23:10:40 +00:00
$s .= "</ol>";
$wgOut->addHTML( $s );
$wgOut->addHTML( "<p>{$sl}\n" );
}
?>