2003-12-11 01:22:36 +01:00
|
|
|
<?php
|
|
|
|
require(dirname(__FILE__) . '/wp-config.php');
|
2003-12-22 04:10:54 +01:00
|
|
|
|
|
|
|
// trackback is done by a POST
|
|
|
|
$request_array = 'HTTP_POST_VARS';
|
|
|
|
$tb_id = explode('/', $HTTP_SERVER_VARS['REQUEST_URI']);
|
|
|
|
$tb_id = intval($tb_id[count($tb_id)-1]);
|
|
|
|
$tb_url = $HTTP_POST_VARS['url'];
|
|
|
|
$title = $HTTP_POST_VARS['title'];
|
|
|
|
$excerpt = $HTTP_POST_VARS['excerpt'];
|
|
|
|
$blog_name = $HTTP_POST_VARS['blog_name'];
|
|
|
|
|
2004-02-05 21:55:50 +01:00
|
|
|
require('wp-blog-header.php');
|
|
|
|
|
|
|
|
if ( (($p != '') && ($p != 'all')) || ($name != '') ) {
|
|
|
|
$tb_id = $posts[0]->ID;
|
|
|
|
}
|
2003-12-22 04:10:54 +01:00
|
|
|
|
|
|
|
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));
|
2003-12-11 01:22:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((strlen(''.$tb_id)) && (empty($HTTP_GET_VARS['__mode'])) && (strlen(''.$tb_url))) {
|
|
|
|
|
|
|
|
@header('Content-Type: text/xml');
|
|
|
|
|
2004-03-01 07:13:32 +01:00
|
|
|
if (!get_settings('use_trackback'))
|
2003-12-11 01:22:36 +01:00
|
|
|
trackback_response(1, 'Sorry, this weblog does not allow you to trackback its posts.');
|
|
|
|
|
|
|
|
$pingstatus = $wpdb->get_var("SELECT ping_status FROM $tableposts WHERE ID = $tb_id");
|
|
|
|
|
|
|
|
if ('closed' == $pingstatus)
|
|
|
|
trackback_response(1, 'Sorry, trackbacks are closed for this item.');
|
|
|
|
|
|
|
|
$tb_url = addslashes($tb_url);
|
|
|
|
$title = strip_tags($title);
|
|
|
|
$title = (strlen($title) > 255) ? substr($title, 0, 252).'...' : $title;
|
|
|
|
$excerpt = strip_tags($excerpt);
|
|
|
|
$excerpt = (strlen($excerpt) > 255) ? substr($excerpt, 0, 252).'...' : $excerpt;
|
|
|
|
$blog_name = htmlspecialchars($blog_name);
|
|
|
|
$blog_name = (strlen($blog_name) > 255) ? substr($blog_name, 0, 252).'...' : $blog_name;
|
|
|
|
|
|
|
|
$comment = '<trackback />';
|
|
|
|
$comment .= "<strong>$title</strong>\n$excerpt";
|
|
|
|
|
2003-12-22 03:46:40 +01:00
|
|
|
$author = addslashes(stripslashes(stripslashes($blog_name)));
|
2003-12-11 01:22:36 +01:00
|
|
|
$email = '';
|
|
|
|
$original_comment = $comment;
|
|
|
|
$comment_post_ID = $tb_id;
|
|
|
|
|
|
|
|
$user_ip = $HTTP_SERVER_VARS['REMOTE_ADDR'];
|
|
|
|
$user_domain = gethostbyaddr($user_ip);
|
|
|
|
$time_difference = get_settings('time_difference');
|
2004-03-25 03:39:16 +01:00
|
|
|
$now = current_time('mysql');
|
|
|
|
$now_gmt = current_time('mysql', 1);
|
2003-12-11 01:22:36 +01:00
|
|
|
|
|
|
|
$comment = convert_chars($comment);
|
|
|
|
$comment = format_to_post($comment);
|
|
|
|
|
|
|
|
$comment_author = $author;
|
|
|
|
$comment_author_email = $email;
|
|
|
|
$comment_author_url = $tb_url;
|
|
|
|
|
|
|
|
$author = addslashes($author);
|
|
|
|
|
|
|
|
$comment_moderation = get_settings('comment_moderation');
|
|
|
|
$moderation_notify = get_settings('moderation_notify');
|
|
|
|
|
2004-03-21 09:31:33 +01:00
|
|
|
if(check_comment($author, $email, $url, $comment, $user_ip)) {
|
2003-12-11 01:22:36 +01:00
|
|
|
$approved = 1;
|
2004-03-21 09:31:33 +01:00
|
|
|
} else {
|
|
|
|
$approved = 0;
|
2003-12-11 01:22:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$result = $wpdb->query("INSERT INTO $tablecomments
|
2004-03-25 03:39:16 +01:00
|
|
|
(comment_post_ID, comment_author, comment_author_email, comment_author_url, comment_author_IP, comment_date, comment_date_gmt, comment_content, comment_approved)
|
2003-12-11 01:22:36 +01:00
|
|
|
VALUES
|
2004-03-25 03:39:16 +01:00
|
|
|
('$comment_post_ID', '$author', '$email', '$tb_url', '$user_ip', '$now', '$now_gmt', '$comment', '$approved')
|
2003-12-11 01:22:36 +01:00
|
|
|
");
|
|
|
|
|
|
|
|
if (!$result) {
|
2004-03-01 20:55:45 +01:00
|
|
|
die ("There is an error with the database, it can't store your comment...<br />Please contact the webmaster.");
|
2003-12-11 01:22:36 +01:00
|
|
|
} else {
|
|
|
|
$comment_ID = $wpdb->get_var('SELECT last_insert_id()');
|
2004-03-01 07:13:32 +01:00
|
|
|
if (get_settings('comments_notify'))
|
2003-12-11 01:22:36 +01:00
|
|
|
wp_notify_postauthor($comment_ID, 'trackback');
|
|
|
|
trackback_response(0);
|
2004-03-25 21:18:20 +01:00
|
|
|
do_action('trackback_post', $comment_ID);
|
2003-12-11 01:22:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|