wiki.techinc.nl/trackback.php

67 lines
1.2 KiB
PHP
Raw Normal View History

2005-07-23 05:47:25 +00:00
<?php
/**
* Provide functions to handle article trackbacks.
* @package MediaWiki
* @subpackage SpecialPage
*/
require_once( './includes/WebStart.php' );
2005-07-23 05:47:25 +00:00
require_once('DatabaseFunctions.php');
/**
*
*/
function XMLsuccess() {
echo "
<?xml version=\"1.0\" encoding=\"utf-8\"?>
<response>
<error>0</error>
</response>
";
exit;
}
function XMLerror($err = "Invalid request.") {
header("HTTP/1.0 400 Bad Request");
echo "
<?xml version=\"1.0\" encoding=\"utf-8\"?>
<response>
<error>1</error>
<message>Invalid request: $err</message>
</response>
";
exit;
}
if (!$wgUseTrackbacks)
XMLerror("Trackbacks are disabled.");
if ( !isset($_POST['url'])
|| !isset($_POST['blog_name'])
|| !isset($_REQUEST['article']))
XMLerror("Required field not specified");
$dbw =& wfGetDB(DB_MASTER);
$tbtitle = $_POST['title'];
$tbex = $_POST['excerpt'];
$tburl = $_POST['url'];
$tbname = $_POST['blog_name'];
$tbarticle = $_REQUEST['article'];
$title = Title::newFromText($tbarticle);
if (!$title->exists())
XMLerror("Specified article does not exist.");
$dbw->insert('trackbacks', array(
2005-07-23 06:30:26 +00:00
'tb_page' => $title->getArticleID(),
'tb_title' => $tbtitle,
'tb_url' => $tburl,
'tb_ex' => $tbex,
'tb_name' => $tbname
2005-07-23 05:47:25 +00:00
));
XMLsuccess();
exit;
2006-03-07 13:32:27 +00:00
?>