2003-04-14 23:10:40 +00:00
|
|
|
<?
|
|
|
|
|
# Global functions used everywhere
|
|
|
|
|
|
|
|
|
|
$wgNumberOfArticles = -1; # Unset
|
|
|
|
|
$wgTotalViews = -1;
|
|
|
|
|
$wgTotalEdits = -1;
|
|
|
|
|
|
|
|
|
|
global $IP;
|
|
|
|
|
include_once( "$IP/DatabaseFunctions.php" );
|
|
|
|
|
include_once( "$IP/UpdateClasses.php" );
|
|
|
|
|
include_once( "$IP/LogPage.php" );
|
|
|
|
|
|
|
|
|
|
# PHP 4.1+ has array_key_exists, PHP 4.0.6 has key_exists instead, and earlier
|
|
|
|
|
# versions of PHP have neither. So we roll our own. Note that this
|
|
|
|
|
# function will return false even for keys that exist but whose associated
|
|
|
|
|
# value is NULL.
|
|
|
|
|
#
|
|
|
|
|
if ( phpversion() == "4.0.6" ) {
|
|
|
|
|
function array_key_exists( $k, $a ) {
|
|
|
|
|
return key_exists( $k, $a );
|
|
|
|
|
}
|
|
|
|
|
} else if (phpversion() < "4.1") {
|
|
|
|
|
function array_key_exists( $k, $a ) {
|
|
|
|
|
return isset($a[$k]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$wgRandomSeeded = false;
|
|
|
|
|
|
|
|
|
|
function wfSeedRandom()
|
|
|
|
|
{
|
|
|
|
|
global $wgRandomSeeded;
|
|
|
|
|
|
|
|
|
|
if ( ! $wgRandomSeeded ) {
|
2003-06-03 21:27:06 +00:00
|
|
|
$seed = hexdec(substr(md5(microtime()),-8)) & 0x7fffffff;
|
|
|
|
|
mt_srand( $seed );
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgRandomSeeded = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfLocalUrl( $a, $q = "" )
|
|
|
|
|
{
|
|
|
|
|
global $wgServer, $wgScript, $wgArticlePath;
|
|
|
|
|
|
|
|
|
|
$a = str_replace( " ", "_", $a );
|
|
|
|
|
#$a = wfUrlencode( $a ); # This stuff is _already_ URL-encoded.
|
|
|
|
|
|
|
|
|
|
if ( "" == $a ) {
|
|
|
|
|
if( "" == $q ) {
|
2003-05-15 20:44:55 +00:00
|
|
|
$a = $wgScript;
|
2003-04-14 23:10:40 +00:00
|
|
|
} else {
|
2003-05-15 20:44:55 +00:00
|
|
|
$a = "{$wgScript}?{$q}";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
} else if ( "" == $q ) {
|
|
|
|
|
$a = str_replace( "$1", $a, $wgArticlePath );
|
|
|
|
|
} else {
|
2003-05-15 20:44:55 +00:00
|
|
|
$a = "{$wgScript}?title={$a}&{$q}";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
return $a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfLocalUrlE( $a, $q = "" )
|
|
|
|
|
{
|
|
|
|
|
return wfEscapeHTML( wfLocalUrl( $a, $q ) );
|
|
|
|
|
}
|
|
|
|
|
|
2003-06-23 07:01:42 +00:00
|
|
|
function wfFullUrl( $a, $q = "" ) {
|
|
|
|
|
global $wgServer;
|
2003-06-23 07:53:08 +00:00
|
|
|
return $wgServer . wfLocalUrl( $a, $q );
|
2003-06-23 07:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfFullUrlE( $a, $q = "" ) {
|
|
|
|
|
return wfEscapeHTML( wfFullUrl( $a, $q ) );
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function wfImageUrl( $img )
|
|
|
|
|
{
|
|
|
|
|
global $wgUploadPath;
|
|
|
|
|
|
|
|
|
|
$nt = Title::newFromText( $img );
|
|
|
|
|
$name = $nt->getDBkey();
|
|
|
|
|
$hash = md5( $name );
|
|
|
|
|
|
|
|
|
|
$url = "{$wgUploadPath}/" . $hash{0} . "/" .
|
|
|
|
|
substr( $hash, 0, 2 ) . "/{$name}";
|
|
|
|
|
return wfUrlencode( $url );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfImageArchiveUrl( $name )
|
|
|
|
|
{
|
|
|
|
|
global $wgUploadPath;
|
|
|
|
|
|
|
|
|
|
$hash = md5( substr( $name, 15) );
|
|
|
|
|
$url = "{$wgUploadPath}/archive/" . $hash{0} . "/" .
|
|
|
|
|
substr( $hash, 0, 2 ) . "/{$name}";
|
|
|
|
|
return $url;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfUrlencode ( $s )
|
|
|
|
|
{
|
|
|
|
|
$ulink = urlencode( $s );
|
|
|
|
|
$ulink = preg_replace( "/%3[Aa]/", ":", $ulink );
|
|
|
|
|
$ulink = preg_replace( "/%2[Ff]/", "/", $ulink );
|
|
|
|
|
return $ulink;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfUtf8Sequence($codepoint) {
|
|
|
|
|
if($codepoint < 0x80) return chr($codepoint);
|
|
|
|
|
if($codepoint < 0x800) return chr($codepoint >> 6 & 0x3f | 0xc0) .
|
|
|
|
|
chr($codepoint & 0x3f | 0x80);
|
|
|
|
|
if($codepoint < 0x10000) return chr($codepoint >> 12 & 0x0f | 0xe0) .
|
|
|
|
|
chr($codepoint >> 6 & 0x3f | 0x80) .
|
|
|
|
|
chr($codepoint & 0x3f | 0x80);
|
|
|
|
|
if($codepoint < 0x100000) return chr($codepoint >> 18 & 0x07 | 0xf0) . # Double-check this
|
|
|
|
|
chr($codepoint >> 12 & 0x3f | 0x80) .
|
|
|
|
|
chr($codepoint >> 6 & 0x3f | 0x80) .
|
|
|
|
|
chr($codepoint & 0x3f | 0x80);
|
|
|
|
|
# Doesn't yet handle outside the BMP
|
|
|
|
|
return "&#$codepoint;";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfMungeToUtf8($string) {
|
|
|
|
|
global $wgInputEncoding; # This is debatable
|
|
|
|
|
#$string = iconv($wgInputEncoding, "UTF-8", $string);
|
|
|
|
|
$string = preg_replace ( '/&#([0-9]+);/e', 'wfUtf8Sequence($1)', $string );
|
|
|
|
|
$string = preg_replace ( '/&#x([0-9a-f]+);/ie', 'wfUtf8Sequence(0x$1)', $string );
|
|
|
|
|
# Should also do named entities here
|
|
|
|
|
return $string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfDebug( $text, $logonly = false )
|
|
|
|
|
{
|
2003-07-10 04:54:22 +00:00
|
|
|
global $wgOut, $wgDebugLogFile, $wgDebugComments;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-07-10 04:54:22 +00:00
|
|
|
if ( $wgDebugComments && !$logonly ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->debug( $text );
|
|
|
|
|
}
|
|
|
|
|
if ( "" != $wgDebugLogFile ) {
|
|
|
|
|
error_log( $text, 3, $wgDebugLogFile );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfReadOnly()
|
|
|
|
|
{
|
|
|
|
|
global $wgReadOnlyFile;
|
|
|
|
|
|
|
|
|
|
if ( "" == $wgReadOnlyFile ) { return false; }
|
|
|
|
|
return is_file( $wgReadOnlyFile );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$wgReplacementKeys = array( "$1", "$2", "$3", "$4", "$5", "$6", "$7", "$8", "$9" );
|
2003-09-21 13:10:10 +00:00
|
|
|
|
|
|
|
|
function wfMsg( $key ) {
|
|
|
|
|
$args = func_get_args();
|
|
|
|
|
if ( count( $args ) ) {
|
|
|
|
|
array_shift( $args );
|
|
|
|
|
}
|
|
|
|
|
return wfMsgReal( $key, $args, true );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfMsgNoDB( $key ) {
|
|
|
|
|
$args = func_get_args();
|
|
|
|
|
if ( count( $args ) ) {
|
|
|
|
|
array_shift( $args );
|
|
|
|
|
}
|
|
|
|
|
return wfMsgReal( $key, $args, false );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfMsgReal( $key, $args, $useDB ) {
|
|
|
|
|
global $wgLang, $wgReplacementKeys, $wgMemc, $wgDBname;
|
2003-10-21 13:01:49 +00:00
|
|
|
global $wgUseDatabaseMessages, $wgUseMemCached, $wgOut;
|
|
|
|
|
global $wgAllMessagesEn;
|
|
|
|
|
|
2003-09-21 13:10:10 +00:00
|
|
|
$fname = "wfMsg";
|
2003-10-20 13:39:40 +00:00
|
|
|
wfProfileIn( $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-10-21 13:01:49 +00:00
|
|
|
static $messageCache = false;
|
|
|
|
|
$memcKey = "$wgDBname:messages";
|
|
|
|
|
$fname = "wfMsg";
|
|
|
|
|
$message = false;
|
|
|
|
|
|
|
|
|
|
# newFromText is too slow!
|
|
|
|
|
$title = ucfirst( $key );
|
|
|
|
|
if ( $messageCache ) {
|
|
|
|
|
$message = $messageCache[$title];
|
|
|
|
|
} elseif ( !$wgUseDatabaseMessages || !$useDB ) {
|
2003-09-21 13:10:10 +00:00
|
|
|
$message = $wgLang->getMessage( $key );
|
|
|
|
|
}
|
|
|
|
|
|
2003-10-21 13:01:49 +00:00
|
|
|
if ( !$message && $wgUseMemCached ) {
|
|
|
|
|
# Try memcached
|
|
|
|
|
if ( !$messageCache ) {
|
|
|
|
|
$messageCache = $wgMemc->get( $memcKey );
|
2003-09-21 13:10:10 +00:00
|
|
|
}
|
2003-10-21 13:01:49 +00:00
|
|
|
|
|
|
|
|
# If there's nothing in memcached, load all the messages from the database
|
|
|
|
|
if ( !$messageCache ) {
|
|
|
|
|
# Other threads don't need to load the messages if another thread is doing it.
|
|
|
|
|
$wgMemc->set( $memcKey, "loading", time() + 60 );
|
|
|
|
|
|
|
|
|
|
$sql = "SELECT cur_title,cur_text FROM cur WHERE cur_namespace=" . NS_MEDIAWIKI;
|
|
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
|
|
|
|
for ( $row = wfFetchObject( $res ); $row; $row = wfFetchObject( $res ) ) {
|
|
|
|
|
$messageCache[$row->cur_title] = $row->cur_text;
|
|
|
|
|
}
|
|
|
|
|
# Save in memcached
|
|
|
|
|
$wgMemc->set( $memcKey, $messageCache, time() + 3600 );
|
|
|
|
|
}
|
|
|
|
|
if ( is_array( $messageCache ) && array_key_exists( $title, $messageCache ) ) {
|
|
|
|
|
$message = $messageCache[$title];
|
|
|
|
|
}
|
2003-09-21 13:10:10 +00:00
|
|
|
}
|
|
|
|
|
|
2003-10-21 13:01:49 +00:00
|
|
|
# If there was no MemCached, load each message from the DB individually
|
|
|
|
|
if ( !$message ) {
|
2003-09-21 13:10:10 +00:00
|
|
|
if ( $useDB ) {
|
|
|
|
|
$sql = "SELECT cur_text FROM cur WHERE cur_namespace=" . NS_MEDIAWIKI .
|
|
|
|
|
" AND cur_title='$title'";
|
|
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
|
|
|
|
|
|
|
|
|
if ( wfNumRows( $res ) ) {
|
|
|
|
|
$obj = wfFetchObject( $res );
|
|
|
|
|
$message = $obj->cur_text;
|
|
|
|
|
wfFreeResult( $res );
|
2003-08-30 07:12:38 +00:00
|
|
|
}
|
2003-09-21 13:10:10 +00:00
|
|
|
}
|
2003-08-30 07:12:38 +00:00
|
|
|
}
|
2003-09-21 13:10:10 +00:00
|
|
|
|
|
|
|
|
# Finally, try the array in $wgLang
|
2003-10-21 13:01:49 +00:00
|
|
|
if ( !$message ) {
|
2003-09-21 13:10:10 +00:00
|
|
|
$message = $wgLang->getMessage( $key );
|
2003-10-21 13:01:49 +00:00
|
|
|
}
|
2003-09-21 13:10:10 +00:00
|
|
|
|
|
|
|
|
# Replace arguments
|
|
|
|
|
if( count( $args ) ) {
|
|
|
|
|
$message = str_replace( $wgReplacementKeys, $args, $message );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2003-10-20 13:39:40 +00:00
|
|
|
wfProfileOut( $fname );
|
2003-10-21 13:01:49 +00:00
|
|
|
if ( !$message ) {
|
2003-10-20 13:39:40 +00:00
|
|
|
# Failed, message not translated
|
2003-07-02 06:22:03 +00:00
|
|
|
return "<$key>";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2003-08-30 07:12:38 +00:00
|
|
|
return $message;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfCleanFormFields( $fields )
|
|
|
|
|
{
|
|
|
|
|
global $HTTP_POST_VARS;
|
|
|
|
|
global $wgInputEncoding, $wgOutputEncoding, $wgEditEncoding, $wgLang;
|
|
|
|
|
|
|
|
|
|
if ( get_magic_quotes_gpc() ) {
|
|
|
|
|
foreach ( $fields as $fname ) {
|
|
|
|
|
if ( isset( $HTTP_POST_VARS[$fname] ) ) {
|
|
|
|
|
$HTTP_POST_VARS[$fname] = stripslashes(
|
|
|
|
|
$HTTP_POST_VARS[$fname] );
|
|
|
|
|
}
|
|
|
|
|
global ${$fname};
|
|
|
|
|
if ( isset( ${$fname} ) ) {
|
|
|
|
|
${$fname} = stripslashes( ${$fname} );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$enc = $wgOutputEncoding;
|
|
|
|
|
if( $wgEditEncoding != "") $enc = $wgEditEncoding;
|
|
|
|
|
if ( $enc != $wgInputEncoding ) {
|
|
|
|
|
foreach ( $fields as $fname ) {
|
|
|
|
|
if ( isset( $HTTP_POST_VARS[$fname] ) ) {
|
|
|
|
|
$HTTP_POST_VARS[$fname] = $wgLang->iconv(
|
|
|
|
|
$wgOutputEncoding, $wgInputEncoding,
|
|
|
|
|
$HTTP_POST_VARS[$fname] );
|
|
|
|
|
}
|
|
|
|
|
global ${$fname};
|
|
|
|
|
if ( isset( ${$fname} ) ) {
|
|
|
|
|
${$fname} = $wgLang->iconv(
|
|
|
|
|
$enc, $wgInputEncoding, ${$fname} );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfMungeQuotes( $in )
|
|
|
|
|
{
|
|
|
|
|
$out = str_replace( "%", "%25", $in );
|
|
|
|
|
$out = str_replace( "'", "%27", $out );
|
|
|
|
|
$out = str_replace( "\"", "%22", $out );
|
|
|
|
|
return $out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfDemungeQuotes( $in )
|
|
|
|
|
{
|
|
|
|
|
$out = str_replace( "%22", "\"", $in );
|
|
|
|
|
$out = str_replace( "%27", "'", $out );
|
|
|
|
|
$out = str_replace( "%25", "%", $out );
|
|
|
|
|
return $out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfCleanQueryVar( $var )
|
|
|
|
|
{
|
|
|
|
|
global $wgLang;
|
|
|
|
|
if ( get_magic_quotes_gpc() ) {
|
|
|
|
|
$var = stripslashes( $var );
|
|
|
|
|
}
|
|
|
|
|
return $wgLang->recodeInput( $var );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfSpecialPage()
|
|
|
|
|
{
|
|
|
|
|
global $wgUser, $wgOut, $wgTitle, $wgLang;
|
|
|
|
|
|
2003-07-02 06:22:03 +00:00
|
|
|
/* FIXME: this list probably shouldn't be language-specific, per se */
|
2003-04-14 23:10:40 +00:00
|
|
|
$validSP = $wgLang->getValidSpecialPages();
|
|
|
|
|
$sysopSP = $wgLang->getSysopSpecialPages();
|
|
|
|
|
$devSP = $wgLang->getDeveloperSpecialPages();
|
|
|
|
|
|
|
|
|
|
$wgOut->setArticleFlag( false );
|
|
|
|
|
$wgOut->setRobotpolicy( "noindex,follow" );
|
|
|
|
|
|
2003-07-02 06:22:03 +00:00
|
|
|
$par = NULL;
|
|
|
|
|
list($t, $par) = split( "/", $wgTitle->getDBkey(), 2 );
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( array_key_exists( $t, $validSP ) ||
|
|
|
|
|
( $wgUser->isSysop() && array_key_exists( $t, $sysopSP ) ) ||
|
|
|
|
|
( $wgUser->isDeveloper() && array_key_exists( $t, $devSP ) ) ) {
|
2003-07-02 06:22:03 +00:00
|
|
|
if($par !== NULL)
|
|
|
|
|
$wgTitle = Title::makeTitle( Namespace::getSpecial(), $t );
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgOut->setPageTitle( wfMsg( strtolower( $wgTitle->getText() ) ) );
|
|
|
|
|
|
|
|
|
|
$inc = "Special" . $t . ".php";
|
|
|
|
|
include_once( $inc );
|
|
|
|
|
$call = "wfSpecial" . $t;
|
2003-07-02 06:22:03 +00:00
|
|
|
$call( $par );
|
2003-04-14 23:10:40 +00:00
|
|
|
} else if ( array_key_exists( $t, $sysopSP ) ) {
|
|
|
|
|
$wgOut->sysopRequired();
|
|
|
|
|
} else if ( array_key_exists( $t, $devSP ) ) {
|
|
|
|
|
$wgOut->developerRequired();
|
|
|
|
|
} else {
|
|
|
|
|
$wgOut->errorpage( "nosuchspecialpage", "nospecialpagetext" );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfSearch( $s )
|
|
|
|
|
{
|
|
|
|
|
$se = new SearchEngine( wfCleanQueryVar( $s ) );
|
|
|
|
|
$se->showResults();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfGo( $s )
|
|
|
|
|
{ # pick the nearest match
|
|
|
|
|
$se = new SearchEngine( wfCleanQueryVar( $s ) );
|
|
|
|
|
$se->goResult();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfNumberOfArticles()
|
|
|
|
|
{
|
|
|
|
|
global $wgNumberOfArticles;
|
|
|
|
|
|
|
|
|
|
wfLoadSiteStats();
|
|
|
|
|
return $wgNumberOfArticles;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* private */ function wfLoadSiteStats()
|
|
|
|
|
{
|
|
|
|
|
global $wgNumberOfArticles, $wgTotalViews, $wgTotalEdits;
|
|
|
|
|
if ( -1 != $wgNumberOfArticles ) return;
|
|
|
|
|
|
|
|
|
|
$sql = "SELECT ss_total_views, ss_total_edits, ss_good_articles " .
|
|
|
|
|
"FROM site_stats WHERE ss_row_id=1";
|
2003-09-20 02:30:00 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ, "wfLoadSiteStats" );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
if ( 0 == wfNumRows( $res ) ) { return; }
|
|
|
|
|
else {
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
$wgTotalViews = $s->ss_total_views;
|
|
|
|
|
$wgTotalEdits = $s->ss_total_edits;
|
|
|
|
|
$wgNumberOfArticles = $s->ss_good_articles;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfEscapeHTML( $in )
|
|
|
|
|
{
|
|
|
|
|
return str_replace(
|
|
|
|
|
array( "&", "\"", ">", "<" ),
|
|
|
|
|
array( "&", """, ">", "<" ),
|
|
|
|
|
$in );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfEscapeHTMLTagsOnly( $in ) {
|
|
|
|
|
return str_replace(
|
|
|
|
|
array( "\"", ">", "<" ),
|
|
|
|
|
array( """, ">", "<" ),
|
|
|
|
|
$in );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfUnescapeHTML( $in )
|
|
|
|
|
{
|
|
|
|
|
$in = str_replace( "<", "<", $in );
|
|
|
|
|
$in = str_replace( ">", ">", $in );
|
|
|
|
|
$in = str_replace( """, "\"", $in );
|
|
|
|
|
$in = str_replace( "&", "&", $in );
|
|
|
|
|
return $in;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfImageDir( $fname )
|
|
|
|
|
{
|
|
|
|
|
global $wgUploadDirectory;
|
|
|
|
|
|
|
|
|
|
$hash = md5( $fname );
|
|
|
|
|
$oldumask = umask(0);
|
|
|
|
|
$dest = $wgUploadDirectory . "/" . $hash{0};
|
|
|
|
|
if ( ! is_dir( $dest ) ) { mkdir( $dest, 0777 ); }
|
|
|
|
|
$dest .= "/" . substr( $hash, 0, 2 );
|
|
|
|
|
if ( ! is_dir( $dest ) ) { mkdir( $dest, 0777 ); }
|
|
|
|
|
|
|
|
|
|
umask( $oldumask );
|
|
|
|
|
return $dest;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfImageArchiveDir( $fname )
|
|
|
|
|
{
|
|
|
|
|
global $wgUploadDirectory;
|
|
|
|
|
|
|
|
|
|
$hash = md5( $fname );
|
|
|
|
|
$oldumask = umask(0);
|
|
|
|
|
$archive = "{$wgUploadDirectory}/archive";
|
|
|
|
|
if ( ! is_dir( $archive ) ) { mkdir( $archive, 0777 ); }
|
|
|
|
|
$archive .= "/" . $hash{0};
|
|
|
|
|
if ( ! is_dir( $archive ) ) { mkdir( $archive, 0777 ); }
|
|
|
|
|
$archive .= "/" . substr( $hash, 0, 2 );
|
|
|
|
|
if ( ! is_dir( $archive ) ) { mkdir( $archive, 0777 ); }
|
|
|
|
|
|
|
|
|
|
umask( $oldumask );
|
|
|
|
|
return $archive;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfRecordUpload( $name, $oldver, $size, $desc )
|
|
|
|
|
{
|
|
|
|
|
global $wgUser, $wgLang, $wgTitle, $wgOut, $wgDeferredUpdateList;
|
2003-09-17 13:48:08 +00:00
|
|
|
global $wgUseCopyrightUpload , $wpUploadCopyStatus , $wpUploadSource ;
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$fname = "wfRecordUpload";
|
|
|
|
|
|
|
|
|
|
$sql = "SELECT img_name,img_size,img_timestamp,img_description,img_user," .
|
|
|
|
|
"img_user_text FROM image WHERE img_name='" . wfStrencode( $name ) . "'";
|
2003-09-20 02:30:00 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
2003-08-30 06:21:34 +00:00
|
|
|
$now = wfTimestampNow();
|
|
|
|
|
$won = wfInvertTimestamp( $now );
|
|
|
|
|
|
2003-09-17 13:48:08 +00:00
|
|
|
if ( $wgUseCopyrightUpload )
|
|
|
|
|
{
|
|
|
|
|
$textdesc = "== " . wfMsg ( "filedesc" ) . " ==\n" . $desc . "\n" .
|
|
|
|
|
"== " . wfMsg ( "filestatus" ) . " ==\n" . $wpUploadCopyStatus . "\n" .
|
|
|
|
|
"== " . wfMsg ( "filesource" ) . " ==\n" . $wpUploadSource ;
|
|
|
|
|
}
|
|
|
|
|
else $textdesc = $desc ;
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( 0 == wfNumRows( $res ) ) {
|
|
|
|
|
$sql = "INSERT INTO image (img_name,img_size,img_timestamp," .
|
|
|
|
|
"img_description,img_user,img_user_text) VALUES ('" .
|
2003-08-30 06:21:34 +00:00
|
|
|
wfStrencode( $name ) . "',{$size},'{$now}','" .
|
2003-04-14 23:10:40 +00:00
|
|
|
wfStrencode( $desc ) . "', '" . $wgUser->getID() .
|
|
|
|
|
"', '" . wfStrencode( $wgUser->getName() ) . "')";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$sql = "SELECT cur_id,cur_text FROM cur WHERE cur_namespace=" .
|
|
|
|
|
Namespace::getImage() . " AND cur_title='" .
|
|
|
|
|
wfStrencode( $name ) . "'";
|
2003-09-20 02:30:00 +00:00
|
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( 0 == wfNumRows( $res ) ) {
|
|
|
|
|
$common =
|
|
|
|
|
Namespace::getImage() . ",'" .
|
|
|
|
|
wfStrencode( $name ) . "','" .
|
|
|
|
|
wfStrencode( $desc ) . "','" . $wgUser->getID() . "','" .
|
|
|
|
|
wfStrencode( $wgUser->getName() ) . "','" . $now .
|
|
|
|
|
"',1";
|
|
|
|
|
$sql = "INSERT INTO cur (cur_namespace,cur_title," .
|
|
|
|
|
"cur_comment,cur_user,cur_user_text,cur_timestamp,cur_is_new," .
|
2003-08-30 06:21:34 +00:00
|
|
|
"cur_text,inverse_timestamp,cur_touched) VALUES (" .
|
2003-04-14 23:10:40 +00:00
|
|
|
$common .
|
2003-09-17 13:48:08 +00:00
|
|
|
",'" . wfStrencode( $textdesc ) . "','{$won}','{$now}')";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
$id = wfInsertId() or 0; # We should throw an error instead
|
|
|
|
|
$sql = "INSERT INTO recentchanges (rc_namespace,rc_title,
|
|
|
|
|
rc_comment,rc_user,rc_user_text,rc_timestamp,rc_new,
|
|
|
|
|
rc_cur_id,rc_cur_time) VALUES ({$common},{$id},'{$now}')";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
$u = new SearchUpdate( $id, $name, $desc );
|
|
|
|
|
$u->doUpdate();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
|
|
|
|
|
$sql = "INSERT INTO oldimage (oi_name,oi_archive_name,oi_size," .
|
|
|
|
|
"oi_timestamp,oi_description,oi_user,oi_user_text) VALUES ('" .
|
|
|
|
|
wfStrencode( $s->img_name ) . "','" .
|
|
|
|
|
wfStrencode( $oldver ) .
|
|
|
|
|
"',{$s->img_size},'{$s->img_timestamp}','" .
|
|
|
|
|
wfStrencode( $s->img_description ) . "','" .
|
|
|
|
|
wfStrencode( $s->img_user ) . "','" .
|
|
|
|
|
wfStrencode( $s->img_user_text) . "')";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$sql = "UPDATE image SET img_size={$size}," .
|
2003-06-30 01:33:16 +00:00
|
|
|
"img_timestamp='" . wfTimestampNow() . "',img_user='" .
|
2003-04-14 23:10:40 +00:00
|
|
|
$wgUser->getID() . "',img_user_text='" .
|
|
|
|
|
wfStrencode( $wgUser->getName() ) . "', img_description='" .
|
|
|
|
|
wfStrencode( $desc ) . "' WHERE img_name='" .
|
|
|
|
|
wfStrencode( $name ) . "'";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-08-30 06:21:34 +00:00
|
|
|
|
|
|
|
|
$sql = "UPDATE cur SET cur_touched='{$now}' WHERE cur_namespace=" .
|
|
|
|
|
Namespace::getImage() . " AND cur_title='" .
|
|
|
|
|
wfStrencode( $name ) . "'";
|
2003-09-20 02:30:00 +00:00
|
|
|
wfQuery( $sql, DB_WRITE, $fname );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$log = new LogPage( wfMsg( "uploadlogpage" ), wfMsg( "uploadlogpagetext" ) );
|
|
|
|
|
$da = str_replace( "$1", "[[:" . $wgLang->getNsText(
|
|
|
|
|
Namespace::getImage() ) . ":{$name}|{$name}]]",
|
|
|
|
|
wfMsg( "uploadedimage" ) );
|
|
|
|
|
$ta = str_replace( "$1", $name, wfMsg( "uploadedimage" ) );
|
|
|
|
|
$log->addEntry( $da, $desc, $ta );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Some generic result counters, pulled out of SearchEngine */
|
|
|
|
|
|
|
|
|
|
function wfShowingResults( $offset, $limit )
|
|
|
|
|
{
|
|
|
|
|
$top = str_replace( "$1", $limit, wfMsg( "showingresults" ) );
|
|
|
|
|
$top = str_replace( "$2", $offset+1, $top );
|
|
|
|
|
return $top;
|
|
|
|
|
}
|
|
|
|
|
|
2003-05-20 06:15:20 +00:00
|
|
|
function wfShowingResultsNum( $offset, $limit, $num )
|
|
|
|
|
{
|
|
|
|
|
$top = str_replace( "$1", $limit, wfMsg( "showingresultsnum" ) );
|
|
|
|
|
$top = str_replace( "$2", $offset+1, $top );
|
|
|
|
|
$top = str_replace( "$3", $num, $top );
|
|
|
|
|
return $top;
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function wfViewPrevNext( $offset, $limit, $link, $query = "" )
|
|
|
|
|
{
|
|
|
|
|
global $wgUser;
|
|
|
|
|
$prev = str_replace( "$1", $limit, wfMsg( "prevn" ) );
|
|
|
|
|
$next = str_replace( "$1", $limit, wfMsg( "nextn" ) );
|
|
|
|
|
|
|
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
|
if ( 0 != $offset ) {
|
|
|
|
|
$po = $offset - $limit;
|
|
|
|
|
if ( $po < 0 ) { $po = 0; }
|
|
|
|
|
$q = "limit={$limit}&offset={$po}";
|
|
|
|
|
if ( "" != $query ) { $q .= "&{$query}"; }
|
|
|
|
|
$plink = "<a href=\"" . wfLocalUrlE( $link, $q ) . "\">{$prev}</a>";
|
|
|
|
|
} else { $plink = $prev; }
|
|
|
|
|
|
|
|
|
|
$no = $offset + $limit;
|
|
|
|
|
$q = "limit={$limit}&offset={$no}";
|
|
|
|
|
if ( "" != $query ) { $q .= "&{$query}"; }
|
|
|
|
|
|
|
|
|
|
$nlink = "<a href=\"" . wfLocalUrlE( $link, $q ) . "\">{$next}</a>";
|
|
|
|
|
$nums = wfNumLink( $offset, 20, $link , $query ) . " | " .
|
|
|
|
|
wfNumLink( $offset, 50, $link, $query ) . " | " .
|
|
|
|
|
wfNumLink( $offset, 100, $link, $query ) . " | " .
|
|
|
|
|
wfNumLink( $offset, 250, $link, $query ) . " | " .
|
|
|
|
|
wfNumLink( $offset, 500, $link, $query );
|
|
|
|
|
|
|
|
|
|
$sl = str_replace( "$1", $plink, wfMsg( "viewprevnext" ) );
|
|
|
|
|
$sl = str_replace( "$2", $nlink, $sl );
|
|
|
|
|
$sl = str_replace( "$3", $nums, $sl );
|
|
|
|
|
return $sl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wfNumLink( $offset, $limit, $link, $query = "" )
|
|
|
|
|
{
|
|
|
|
|
global $wgUser;
|
|
|
|
|
if ( "" == $query ) { $q = ""; }
|
|
|
|
|
else { $q = "{$query}&"; }
|
|
|
|
|
$q .= "limit={$limit}&offset={$offset}";
|
|
|
|
|
|
|
|
|
|
$s = "<a href=\"" . wfLocalUrlE( $link, $q ) . "\">{$limit}</a>";
|
|
|
|
|
return $s;
|
|
|
|
|
}
|
|
|
|
|
|
2003-05-20 09:30:40 +00:00
|
|
|
function wfClientAcceptsGzip() {
|
|
|
|
|
global $wgUseGzip;
|
|
|
|
|
if( $wgUseGzip ) {
|
|
|
|
|
# FIXME: we may want to blacklist some broken browsers
|
|
|
|
|
if( preg_match(
|
|
|
|
|
'/\bgzip(?:;(q)=([0-9]+(?:\.[0-9]+)))?\b/',
|
|
|
|
|
$_SERVER["HTTP_ACCEPT_ENCODING"],
|
|
|
|
|
$m ) ) {
|
|
|
|
|
if( ( $m[1] == "q" ) && ( $m[2] == 0 ) ) return false;
|
|
|
|
|
wfDebug( " accepts gzip\n" );
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2003-06-03 08:44:50 +00:00
|
|
|
# Yay, more global functions!
|
|
|
|
|
function wfCheckLimits( $deflimit = 50, $optionname = "rclimit" ) {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
|
|
|
|
|
$limit = (int)$_REQUEST['limit'];
|
|
|
|
|
if( $limit < 0 ) $limit = 0;
|
|
|
|
|
if( ( $limit == 0 ) && ( $optionname != "" ) ) {
|
|
|
|
|
$limit = (int)$wgUser->getOption( $optionname );
|
|
|
|
|
}
|
|
|
|
|
if( $limit <= 0 ) $limit = $deflimit;
|
|
|
|
|
if( $limit > 5000 ) $limit = 5000; # We have *some* limits...
|
|
|
|
|
|
|
|
|
|
$offset = (int)$_REQUEST['offset'];
|
|
|
|
|
$offset = (int)$offset;
|
|
|
|
|
if( $offset < 0 ) $offset = 0;
|
|
|
|
|
if( $offset > 65000 ) $offset = 65000; # do we need a max? what?
|
|
|
|
|
|
|
|
|
|
return array( $limit, $offset );
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-21 13:10:10 +00:00
|
|
|
# Used in OutputPage::replaceVariables and Article:pstPass2
|
|
|
|
|
function replaceMsgVar( $matches ) {
|
|
|
|
|
return wfMsg( $matches[1] );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function replaceMsgVarNw( $matches ) {
|
|
|
|
|
$text = htmlspecialchars( wfMsg( $matches[1] ) );
|
|
|
|
|
return $text;
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
?>
|