Files
WordPress/wp-trackback.php
T

91 lines
2.7 KiB
PHP
Raw Normal View History

2003-12-11 00:22:36 +00:00
<?php
2004-12-16 02:57:05 +00:00
require_once( dirname(__FILE__) . '/wp-config.php' );
2004-09-18 22:47:43 +00:00
2004-12-16 02:57:05 +00:00
if ( empty($doing_trackback) ) {
$doing_trackback = true;
require_once('wp-blog-header.php');
2004-09-18 22:47:43 +00:00
}
2004-09-07 02:34:12 +00:00
function trackback_response($error = 0, $error_message = '') {
header('Content-Type: text/xml; charset=' . get_option('blog_charset') );
if ($error) {
echo '<?xml version="1.0" encoding="utf-8"?'.">\n";
echo "<response>\n";
echo "<error>1</error>\n";
echo "<message>$error_message</message>\n";
echo "</response>";
2004-09-23 12:27:52 +00:00
die();
2004-09-07 02:34:12 +00:00
} else {
echo '<?xml version="1.0" encoding="utf-8"?'.">\n";
echo "<response>\n";
echo "<error>0</error>\n";
echo "</response>";
}
}
// trackback is done by a POST
$request_array = 'HTTP_POST_VARS';
2004-12-16 02:57:05 +00:00
2004-09-07 02:34:12 +00:00
if (!$tb_id) {
$tb_id = explode('/', $_SERVER['REQUEST_URI']);
$tb_id = intval($tb_id[count($tb_id)-1]);
}
2004-12-16 02:57:05 +00:00
$tb_url = $_POST['url'];
$title = $_POST['title'];
$excerpt = $_POST['excerpt'];
$blog_name = $_POST['blog_name'];
2004-12-16 02:57:05 +00:00
$charset = $_POST['charset'];
if ($charset)
$charset = strtoupper( trim($charset) );
else
$charset = 'auto';
2004-12-16 02:57:05 +00:00
if ( function_exists('mb_convert_encoding') ) { // For international trackbacks
$title = mb_convert_encoding($title, get_settings('blog_charset'), $charset);
$excerpt = mb_convert_encoding($excerpt, get_settings('blog_charset'), $charset);
$blog_name = mb_convert_encoding($blog_name, get_settings('blog_charset'), $charset);
}
2004-09-07 02:34:12 +00:00
if ( is_single() )
2004-02-05 20:55:50 +00:00
$tb_id = $posts[0]->ID;
2004-09-07 02:34:12 +00:00
2004-12-16 02:57:05 +00:00
if ( !$tb_id )
2004-09-07 02:34:12 +00:00
trackback_response(1, 'I really need an ID for this to work.');
if (empty($title) && empty($tb_url) && empty($blog_name)) {
// If it doesn't look like a trackback at all...
header('Location: ' . get_permalink($tb_id));
2004-09-07 02:34:12 +00:00
exit;
2003-12-11 00:22:36 +00:00
}
2004-09-07 02:34:12 +00:00
if ( !empty($tb_url) && !empty($title) && !empty($tb_url) ) {
header('Content-Type: text/xml; charset=' . get_option('blog_charset') );
2003-12-11 00:22:36 +00:00
$pingstatus = $wpdb->get_var("SELECT ping_status FROM $wpdb->posts WHERE ID = $tb_id");
2003-12-11 00:22:36 +00:00
2004-12-16 02:57:05 +00:00
if ('open' != $pingstatus)
2003-12-11 00:22:36 +00:00
trackback_response(1, 'Sorry, trackbacks are closed for this item.');
$title = wp_specialchars( strip_tags( $title ) );
2004-09-07 02:34:12 +00:00
$title = (strlen($title) > 250) ? substr($title, 0, 250) . '...' : $title;
2003-12-11 00:22:36 +00:00
$excerpt = strip_tags($excerpt);
2004-09-07 02:34:12 +00:00
$excerpt = (strlen($excerpt) > 255) ? substr($excerpt, 0, 252) . '...' : $excerpt;
2003-12-11 00:22:36 +00:00
2004-09-22 19:44:35 +00:00
$comment_post_ID = $tb_id;
$comment_author = $blog_name;
2004-09-07 02:34:12 +00:00
$comment_author_email = '';
2003-12-11 00:22:36 +00:00
$comment_author_url = $tb_url;
2004-09-07 02:34:12 +00:00
$comment_content = "<strong>$title</strong>\n\n$excerpt";
$comment_type = 'trackback';
2003-12-11 00:22:36 +00:00
2004-09-22 19:44:35 +00:00
$commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type');
2003-12-11 00:22:36 +00:00
2004-09-07 02:34:12 +00:00
wp_new_comment($commentdata);
2003-12-11 00:22:36 +00:00
2004-09-07 02:34:12 +00:00
trackback_response(0);
do_action('trackback_post', $wpdb->insert_id);
2003-12-11 00:22:36 +00:00
}
?>