2004-05-24 03:34:57 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**** DB Functions ****/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* generic function for inserting data into the posts table.
|
|
|
|
*/
|
|
|
|
function wp_insert_post($postarr = array()) {
|
2004-05-24 10:22:18 +02:00
|
|
|
global $wpdb, $post_default_category;
|
2004-05-24 03:34:57 +02:00
|
|
|
|
|
|
|
// export array as variables
|
|
|
|
extract($postarr);
|
|
|
|
|
|
|
|
// Do some escapes for safety
|
|
|
|
$post_title = $wpdb->escape($post_title);
|
|
|
|
$post_name = sanitize_title($post_title);
|
|
|
|
$post_excerpt = $wpdb->escape($post_excerpt);
|
|
|
|
$post_content = $wpdb->escape($post_content);
|
|
|
|
$post_author = (int) $post_author;
|
|
|
|
|
|
|
|
// Make sure we set a valid category
|
|
|
|
if (0 == count($post_category) || !is_array($post_category)) {
|
|
|
|
$post_category = array($post_default_category);
|
|
|
|
}
|
|
|
|
|
|
|
|
$post_cat = $post_category[0];
|
|
|
|
|
|
|
|
if (empty($post_date))
|
|
|
|
$post_date = current_time('mysql');
|
|
|
|
// Make sure we have a good gmt date:
|
|
|
|
if (empty($post_date_gmt))
|
|
|
|
$post_date_gmt = get_gmt_from_date($post_date);
|
2004-09-04 08:44:58 +02:00
|
|
|
if (empty($comment_status))
|
|
|
|
$comment_status = get_settings('default_comment_status');
|
|
|
|
if (empty($ping_status))
|
|
|
|
$ping_status = get_settings('default_ping_status');
|
2004-05-24 03:34:57 +02:00
|
|
|
|
2004-05-24 10:22:18 +02:00
|
|
|
$sql = "INSERT INTO $wpdb->posts
|
2004-09-04 08:44:58 +02:00
|
|
|
(post_author, post_date, post_date_gmt, post_modified, post_modified_gmt, post_content, post_title, post_excerpt, post_category, post_status, post_name, comment_status, ping_status)
|
|
|
|
VALUES ('$post_author', '$post_date', '$post_date_gmt', '$post_date', '$post_date_gmt', '$post_content', '$post_title', '$post_excerpt', '$post_cat', '$post_status', '$post_name', '$comment_status', '$ping_status')";
|
2004-05-24 03:34:57 +02:00
|
|
|
|
|
|
|
$result = $wpdb->query($sql);
|
|
|
|
$post_ID = $wpdb->insert_id;
|
2004-09-05 04:03:51 +02:00
|
|
|
|
|
|
|
// Set GUID
|
|
|
|
$wpdb->query("UPDATE $wpdb->posts SET guid = '" . get_permalink($post_ID) . "' WHERE ID = '$post_ID'");
|
2004-05-24 03:34:57 +02:00
|
|
|
|
2004-09-05 04:03:51 +02:00
|
|
|
wp_set_post_cats('', $post_ID, $post_category);
|
2004-05-24 03:34:57 +02:00
|
|
|
|
|
|
|
if ($post_status == 'publish') {
|
|
|
|
do_action('publish_post', $post_ID);
|
|
|
|
}
|
|
|
|
|
2004-09-05 04:03:51 +02:00
|
|
|
pingback($content, $post_ID);
|
|
|
|
|
2004-05-24 03:34:57 +02:00
|
|
|
// Return insert_id if we got a good result, otherwise return zero.
|
|
|
|
return $result ? $post_ID : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
function wp_get_single_post($postid = 0, $mode = OBJECT) {
|
2004-05-24 10:22:18 +02:00
|
|
|
global $wpdb;
|
2004-05-24 03:34:57 +02:00
|
|
|
|
2004-05-24 10:22:18 +02:00
|
|
|
$sql = "SELECT * FROM $wpdb->posts WHERE ID=$postid";
|
2004-05-24 03:34:57 +02:00
|
|
|
$result = $wpdb->get_row($sql, $mode);
|
|
|
|
|
|
|
|
// Set categories
|
|
|
|
$result['post_category'] = wp_get_post_cats('',$postid);
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
function wp_get_recent_posts($num = 10) {
|
2004-05-24 10:22:18 +02:00
|
|
|
global $wpdb;
|
2004-05-24 03:34:57 +02:00
|
|
|
|
|
|
|
// Set the limit clause, if we got a limit
|
|
|
|
if ($num) {
|
|
|
|
$limit = "LIMIT $num";
|
|
|
|
}
|
|
|
|
|
2004-05-24 10:22:18 +02:00
|
|
|
$sql = "SELECT * FROM $wpdb->posts ORDER BY post_date DESC $limit";
|
2004-05-24 03:34:57 +02:00
|
|
|
$result = $wpdb->get_results($sql,ARRAY_A);
|
|
|
|
|
|
|
|
return $result?$result:array();
|
|
|
|
}
|
|
|
|
|
|
|
|
function wp_update_post($postarr = array()) {
|
2004-05-24 10:22:18 +02:00
|
|
|
global $wpdb;
|
2004-05-24 03:34:57 +02:00
|
|
|
|
|
|
|
// First get all of the original fields
|
|
|
|
extract(wp_get_single_post($postarr['ID'],ARRAY_A));
|
|
|
|
|
|
|
|
// Now overwrite any changed values being passed in
|
|
|
|
extract($postarr);
|
|
|
|
|
|
|
|
// Make sure we set a valid category
|
|
|
|
if (0 == count($post_category) || !is_array($post_category)) {
|
|
|
|
$post_category = array($post_default_category);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do some escapes for safety
|
|
|
|
$post_title = $wpdb->escape($post_title);
|
|
|
|
$post_excerpt = $wpdb->escape($post_excerpt);
|
|
|
|
$post_content = $wpdb->escape($post_content);
|
|
|
|
|
|
|
|
$post_modified = current_time('mysql');
|
|
|
|
$post_modified_gmt = current_time('mysql', 1);
|
|
|
|
|
2004-05-24 10:22:18 +02:00
|
|
|
$sql = "UPDATE $wpdb->posts
|
2004-05-24 03:34:57 +02:00
|
|
|
SET post_content = '$post_content',
|
|
|
|
post_title = '$post_title',
|
|
|
|
post_category = $post_category[0],
|
|
|
|
post_status = '$post_status',
|
|
|
|
post_date = '$post_date',
|
|
|
|
post_date_gmt = '$post_date_gmt',
|
|
|
|
post_modified = '$post_modified',
|
|
|
|
post_modified_gmt = '$post_modified_gmt',
|
|
|
|
post_excerpt = '$post_excerpt',
|
|
|
|
ping_status = '$ping_status',
|
|
|
|
comment_status = '$comment_status'
|
|
|
|
WHERE ID = $ID";
|
|
|
|
|
|
|
|
$result = $wpdb->query($sql);
|
|
|
|
|
|
|
|
wp_set_post_cats('',$ID,$post_category);
|
|
|
|
|
|
|
|
return $wpdb->rows_affected;
|
|
|
|
}
|
|
|
|
|
|
|
|
function wp_get_post_cats($blogid = '1', $post_ID = 0) {
|
2004-05-24 10:22:18 +02:00
|
|
|
global $wpdb;
|
2004-05-24 03:34:57 +02:00
|
|
|
|
|
|
|
$sql = "SELECT category_id
|
2004-05-24 10:22:18 +02:00
|
|
|
FROM $wpdb->post2cat
|
2004-05-24 03:34:57 +02:00
|
|
|
WHERE post_id = $post_ID
|
|
|
|
ORDER BY category_id";
|
|
|
|
|
|
|
|
$result = $wpdb->get_col($sql);
|
|
|
|
|
|
|
|
return array_unique($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
function wp_set_post_cats($blogid = '1', $post_ID = 0, $post_categories = array()) {
|
2004-05-24 10:22:18 +02:00
|
|
|
global $wpdb;
|
2004-05-24 03:34:57 +02:00
|
|
|
// If $post_categories isn't already an array, make it one:
|
|
|
|
if (!is_array($post_categories)) {
|
|
|
|
if (!$post_categories) {
|
|
|
|
$post_categories = 1;
|
|
|
|
}
|
|
|
|
$post_categories = array($post_categories);
|
|
|
|
}
|
|
|
|
|
|
|
|
$post_categories = array_unique($post_categories);
|
|
|
|
|
|
|
|
// First the old categories
|
|
|
|
$old_categories = $wpdb->get_col("
|
|
|
|
SELECT category_id
|
2004-05-24 10:22:18 +02:00
|
|
|
FROM $wpdb->post2cat
|
2004-05-24 03:34:57 +02:00
|
|
|
WHERE post_id = $post_ID");
|
|
|
|
|
|
|
|
if (!$old_categories) {
|
|
|
|
$old_categories = array();
|
|
|
|
} else {
|
|
|
|
$old_categories = array_unique($old_categories);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-11 18:49:52 +02:00
|
|
|
$oldies = printr($old_categories,1);
|
|
|
|
$newbies = printr($post_categories,1);
|
2004-05-24 03:34:57 +02:00
|
|
|
|
|
|
|
logio("O","Old: $oldies\nNew: $newbies\n");
|
|
|
|
|
|
|
|
// Delete any?
|
|
|
|
$delete_cats = array_diff($old_categories,$post_categories);
|
|
|
|
|
2004-10-11 18:49:52 +02:00
|
|
|
logio("O","Delete: " . printr($delete_cats,1));
|
2004-05-24 03:34:57 +02:00
|
|
|
|
|
|
|
if ($delete_cats) {
|
|
|
|
foreach ($delete_cats as $del) {
|
|
|
|
$wpdb->query("
|
2004-05-24 10:22:18 +02:00
|
|
|
DELETE FROM $wpdb->post2cat
|
2004-05-24 03:34:57 +02:00
|
|
|
WHERE category_id = $del
|
|
|
|
AND post_id = $post_ID
|
|
|
|
");
|
|
|
|
|
|
|
|
logio("O","deleting post/cat: $post_ID, $del");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add any?
|
|
|
|
$add_cats = array_diff($post_categories, $old_categories);
|
|
|
|
|
2004-10-11 18:49:52 +02:00
|
|
|
logio("O","Add: " . printr($add_cats,1));
|
2004-05-24 03:34:57 +02:00
|
|
|
|
|
|
|
if ($add_cats) {
|
|
|
|
foreach ($add_cats as $new_cat) {
|
|
|
|
$wpdb->query("
|
2004-05-24 10:22:18 +02:00
|
|
|
INSERT INTO $wpdb->post2cat (post_id, category_id)
|
2004-05-24 03:34:57 +02:00
|
|
|
VALUES ($post_ID, $new_cat)");
|
|
|
|
|
|
|
|
logio("O","adding post/cat: $post_ID, $new_cat");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // wp_set_post_cats()
|
|
|
|
|
|
|
|
function wp_delete_post($postid = 0) {
|
2004-05-24 10:22:18 +02:00
|
|
|
global $wpdb;
|
2004-05-24 03:34:57 +02:00
|
|
|
|
2004-05-24 10:22:18 +02:00
|
|
|
$sql = "DELETE FROM $wpdb->post2cat WHERE post_id = $postid";
|
2004-05-24 03:34:57 +02:00
|
|
|
$wpdb->query($sql);
|
|
|
|
|
2004-05-24 10:22:18 +02:00
|
|
|
$sql = "DELETE FROM $wpdb->posts WHERE ID = $postid";
|
2004-05-24 03:34:57 +02:00
|
|
|
|
|
|
|
$wpdb->query($sql);
|
|
|
|
|
|
|
|
$result = $wpdb->rows_affected;
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**** /DB Functions ****/
|
|
|
|
|
|
|
|
/**** Misc ****/
|
|
|
|
|
|
|
|
// get permalink from post ID
|
2004-09-05 02:24:28 +02:00
|
|
|
function post_permalink($post_id = 0, $mode = '') { // $mode legacy
|
|
|
|
return get_permalink($post_id);
|
2004-05-24 03:34:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the name of a category from its ID
|
|
|
|
function get_cat_name($cat_id) {
|
2004-05-24 10:22:18 +02:00
|
|
|
global $wpdb;
|
2004-05-24 03:34:57 +02:00
|
|
|
|
|
|
|
$cat_id -= 0; // force numeric
|
2004-05-24 10:22:18 +02:00
|
|
|
$name = $wpdb->get_var("SELECT cat_name FROM $wpdb->categories WHERE cat_ID=$cat_id");
|
2004-05-24 03:34:57 +02:00
|
|
|
|
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the ID of a category from its name
|
|
|
|
function get_cat_ID($cat_name='General') {
|
2004-05-24 10:22:18 +02:00
|
|
|
global $wpdb;
|
2004-05-24 03:34:57 +02:00
|
|
|
|
2004-05-24 10:22:18 +02:00
|
|
|
$cid = $wpdb->get_var("SELECT cat_ID FROM $wpdb->categories WHERE cat_name='$cat_name'");
|
2004-05-24 03:34:57 +02:00
|
|
|
|
|
|
|
return $cid?$cid:1; // default to cat 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get author's preferred display name
|
|
|
|
function get_author_name($auth_id) {
|
|
|
|
$authordata = get_userdata($auth_id);
|
|
|
|
|
|
|
|
switch($authordata["user_idmode"]) {
|
|
|
|
case "nickname":
|
|
|
|
$authorname = $authordata["user_nickname"];
|
|
|
|
|
|
|
|
case "login":
|
|
|
|
$authorname = $authordata["user_login"];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "firstname":
|
|
|
|
$authorname = $authordata["user_firstname"];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "lastname":
|
|
|
|
$authorname = $authordata["user_lastname"];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "namefl":
|
|
|
|
$authorname = $authordata["user_firstname"]." ".$authordata["user_lastname"];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "namelf":
|
|
|
|
$authorname = $authordata["user_lastname"]." ".$authordata["user_firstname"];
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
$authorname = $authordata["user_nickname"];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $authorname;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get extended entry info (<!--more-->)
|
|
|
|
function get_extended($post) {
|
|
|
|
list($main,$extended) = explode('<!--more-->',$post);
|
|
|
|
|
|
|
|
// Strip leading and trailing whitespace
|
|
|
|
$main = preg_replace('/^[\s]*(.*)[\s]*$/','\\1',$main);
|
|
|
|
$extended = preg_replace('/^[\s]*(.*)[\s]*$/','\\1',$extended);
|
|
|
|
|
|
|
|
return array('main' => $main, 'extended' => $extended);
|
|
|
|
}
|
|
|
|
|
|
|
|
// do trackbacks for a list of urls
|
|
|
|
// borrowed from edit.php
|
|
|
|
// accepts a comma-separated list of trackback urls and a post id
|
|
|
|
function trackback_url_list($tb_list, $post_id) {
|
|
|
|
if (!empty($tb_list)) {
|
|
|
|
// get post data
|
|
|
|
$postdata = wp_get_single_post($post_id, ARRAY_A);
|
|
|
|
|
|
|
|
// import postdata as variables
|
|
|
|
extract($postdata);
|
|
|
|
|
|
|
|
// form an excerpt
|
|
|
|
$excerpt = strip_tags($post_excerpt?$post_excerpt:$post_content);
|
|
|
|
|
|
|
|
if (strlen($excerpt) > 255) {
|
2004-08-25 16:22:39 +02:00
|
|
|
$excerpt = substr($excerpt,0,252) . '...';
|
2004-05-24 03:34:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$trackback_urls = explode(',', $tb_list);
|
|
|
|
foreach($trackback_urls as $tb_url) {
|
|
|
|
$tb_url = trim($tb_url);
|
|
|
|
trackback($tb_url, stripslashes($post_title), $excerpt, $post_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-25 17:12:10 +02:00
|
|
|
|
|
|
|
// query user capabilities
|
2004-10-15 18:20:25 +02:00
|
|
|
// rather simplistic. shall evolve with future permission system overhaul
|
|
|
|
// $blog_id and $category_id are there for future usage
|
2004-08-25 17:12:10 +02:00
|
|
|
|
2004-10-15 18:20:25 +02:00
|
|
|
/* returns true if $user_id can create a new post */
|
2004-09-09 17:54:03 +02:00
|
|
|
function user_can_create_post($user_id, $blog_id = 1, $category_id = 'None') {
|
|
|
|
$author_data = get_userdata($user_id);
|
|
|
|
return ($author_data->user_level > 1);
|
|
|
|
}
|
|
|
|
|
2004-10-15 18:20:25 +02:00
|
|
|
/* returns true if $user_id can create a new post */
|
|
|
|
function user_can_create_draft($user_id, $blog_id = 1, $category_id = 'None') {
|
|
|
|
$author_data = get_userdata($user_id);
|
|
|
|
return ($author_data->user_level >= 1);
|
|
|
|
}
|
2004-09-09 17:54:03 +02:00
|
|
|
|
2004-10-15 18:20:25 +02:00
|
|
|
/* returns true if $user_id can edit $post_id */
|
2004-08-25 17:12:10 +02:00
|
|
|
function user_can_edit_post($user_id, $post_id, $blog_id = 1) {
|
|
|
|
$author_data = get_userdata($user_id);
|
|
|
|
$post_data = get_postdata($post_id);
|
|
|
|
$post_author_data = get_userdata($post_data['Author_ID']);
|
|
|
|
|
|
|
|
if ( ($user_id == $post_author_data->ID)
|
|
|
|
|| ($author_data->user_level > $post_author_data->user_level) ) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-15 18:20:25 +02:00
|
|
|
/* returns true if $user_id can delete $post_id */
|
2004-08-25 17:12:10 +02:00
|
|
|
function user_can_delete_post($user_id, $post_id, $blog_id = 1) {
|
|
|
|
// right now if one can edit, one can delete
|
|
|
|
return user_can_edit_post($user_id, $post_id, $blog_id);
|
|
|
|
}
|
|
|
|
|
2004-10-15 18:20:25 +02:00
|
|
|
/* returns true if $user_id can set new posts' dates on $blog_id */
|
|
|
|
function user_can_set_post_date($user_id, $blog_id = 1, $category_id = 'None') {
|
|
|
|
$author_data = get_userdata($user_id);
|
|
|
|
return (($author_data->user_level > 4) && user_can_create_post($user_id, $blog_id, $category_id));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* returns true if $user_id can edit $post_id's date */
|
|
|
|
function user_can_edit_post_date($user_id, $post_id, $blog_id = 1) {
|
|
|
|
$author_data = get_userdata($user_id);
|
|
|
|
return (($author_data->user_level > 4) && user_can_edit_post($user_id, $post_id, $blog_id));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* returns true if $user_id can edit $post_id's comments */
|
|
|
|
function user_can_edit_post_comments($user_id, $post_id, $blog_id = 1) {
|
|
|
|
// right now if one can edit a post, one can edit comments made on it
|
|
|
|
return user_can_edit_post($user_id, $post_id, $blog_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* returns true if $user_id can delete $post_id's comments */
|
|
|
|
function user_can_delete_post_comments($user_id, $post_id, $blog_id = 1) {
|
|
|
|
// right now if one can edit comments, one can delete comments
|
|
|
|
return user_can_edit_post_comments($user_id, $post_id, $blog_id);
|
|
|
|
}
|
|
|
|
|
2004-11-18 20:40:36 +01:00
|
|
|
function user_can_edit_user($user_id, $other_user) {
|
|
|
|
$user = get_userdata($user_id);
|
|
|
|
$other = get_userdata($other_user);
|
|
|
|
if ( $user->user_level > $other->user_level || $user->user_level > 8 || $user->ID == $other->ID )
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2004-10-15 18:20:25 +02:00
|
|
|
|
2004-09-07 04:34:12 +02:00
|
|
|
function wp_new_comment($commentdata) {
|
|
|
|
global $wpdb;
|
|
|
|
extract($commentdata);
|
|
|
|
|
2004-09-22 21:44:35 +02:00
|
|
|
$comment_post_ID = (int) $comment_post_ID;
|
2004-09-07 04:34:12 +02:00
|
|
|
|
|
|
|
$comment_author = strip_tags($comment_author);
|
|
|
|
$comment_author = htmlspecialchars($comment_author);
|
|
|
|
|
|
|
|
$comment_author_email = preg_replace('/[^a-z+_.@-]/i', '', $comment_author_email);
|
|
|
|
|
|
|
|
$comment_author_url = strip_tags($comment_author_url);
|
|
|
|
$comment_author_url = htmlspecialchars($comment_author_url);
|
|
|
|
|
|
|
|
$comment_content = apply_filters('comment_content_presave', $comment_content);
|
|
|
|
|
|
|
|
$user_ip = addslashes($_SERVER['REMOTE_ADDR']);
|
|
|
|
$user_domain = addslashes( gethostbyaddr($user_ip) );
|
|
|
|
$now = current_time('mysql');
|
|
|
|
$now_gmt = current_time('mysql', 1);
|
|
|
|
$user_agent = addslashes($_SERVER['HTTP_USER_AGENT']);
|
|
|
|
|
2004-09-27 13:45:15 +02:00
|
|
|
if ( (!isset($comment_type)) || (($comment_type != 'trackback') && ($comment_type != 'pingback')) ) {
|
|
|
|
$comment_type = '';
|
|
|
|
}
|
|
|
|
|
2004-09-07 04:34:12 +02:00
|
|
|
// Simple flood-protection
|
|
|
|
if ( $lasttime = $wpdb->get_var("SELECT comment_date FROM $wpdb->comments WHERE comment_author_IP = '$user_ip' ORDER BY comment_date DESC LIMIT 1") ) {
|
|
|
|
$time_lastcomment= mysql2date('U', $lasttime);
|
|
|
|
$time_newcomment= mysql2date('U', $now);
|
|
|
|
if ( ($time_newcomment - $time_lastcomment) < 15 )
|
|
|
|
die( __('Sorry, you can only post a new comment once every 15 seconds. Slow down cowboy.') );
|
|
|
|
}
|
|
|
|
|
2004-09-22 21:44:35 +02:00
|
|
|
if( check_comment($comment_author, $comment_author_email, $comment_author_url, $comment_content, $user_ip, $user_agent) )
|
2004-09-07 04:34:12 +02:00
|
|
|
$approved = 1;
|
|
|
|
else
|
|
|
|
$approved = 0;
|
|
|
|
|
|
|
|
$result = $wpdb->query("INSERT INTO $wpdb->comments
|
2004-09-27 13:45:15 +02:00
|
|
|
(comment_post_ID, comment_author, comment_author_email, comment_author_url, comment_author_IP, comment_date, comment_date_gmt, comment_content, comment_approved, comment_agent, comment_type)
|
2004-09-07 04:34:12 +02:00
|
|
|
VALUES
|
2004-09-27 13:45:15 +02:00
|
|
|
('$comment_post_ID', '$comment_author', '$comment_author_email', '$comment_author_url', '$user_ip', '$now', '$now_gmt', '$comment_content', '$approved', '$user_agent', '$comment_type')
|
2004-09-07 04:34:12 +02:00
|
|
|
");
|
|
|
|
|
|
|
|
if ( get_option('comments_notify') )
|
|
|
|
wp_notify_postauthor($wpdb->insert_id, $comment_type);
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2004-10-14 09:26:41 +02:00
|
|
|
function do_trackbacks($post_id) {
|
|
|
|
global $wpdb;
|
|
|
|
|
|
|
|
$post = $wpdb->get_row("SELECT * FROM $wpdb->posts WHERE ID = $post_id");
|
|
|
|
$to_ping = get_to_ping($post_id);
|
|
|
|
$pinged = get_pung($post_id);
|
|
|
|
$content = strip_tags($post->post_content);
|
|
|
|
$excerpt = strip_tags($post->post_excerpt);
|
|
|
|
$post_title = strip_tags($post->post_title);
|
|
|
|
|
|
|
|
if ( $excerpt )
|
|
|
|
$excerpt = substr($excerpt, 0, 252) . '...';
|
|
|
|
else
|
|
|
|
$excerpt = substr($content, 0, 252) . '...';
|
|
|
|
|
|
|
|
if ($to_ping) : foreach ($to_ping as $tb_ping) :
|
|
|
|
$tb_ping = trim($tb_ping);
|
|
|
|
if ( !in_array($tb_ping, $pinged) )
|
|
|
|
trackback($tb_ping, $post_title, $excerpt, $post_id);
|
|
|
|
endforeach; endif;
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_pung($post_id) { // Get URIs already pung for a post
|
|
|
|
global $wpdb;
|
|
|
|
$pung = $wpdb->get_var("SELECT pinged FROM $wpdb->posts WHERE ID = $post_id");
|
|
|
|
$pung = trim($pung);
|
|
|
|
$pung = preg_split('/\s/', $pung);
|
|
|
|
return $pung;
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_to_ping($post_id) { // Get any URIs in the todo list
|
|
|
|
global $wpdb;
|
|
|
|
$to_ping = $wpdb->get_var("SELECT to_ping FROM $wpdb->posts WHERE ID = $post_id");
|
|
|
|
$to_ping = trim($to_ping);
|
|
|
|
$to_ping = preg_split('/\s/', $to_ping);
|
|
|
|
return $to_ping;
|
|
|
|
}
|
|
|
|
|
|
|
|
function add_ping($post_id, $uri) { // Add a URI to those already pung
|
|
|
|
global $wpdb;
|
|
|
|
$pung = $wpdb->get_var("SELECT pinged FROM $wpdb->posts WHERE ID = $post_id");
|
|
|
|
$pung = trim($pung);
|
|
|
|
$pung = preg_split('/\s/', $pung);
|
|
|
|
$pung[] = $uri;
|
|
|
|
$new = implode("\n", $pung);
|
|
|
|
return $wpdb->query("UPDATE $wpdb->posts SET pinged = '$new' WHERE ID = $post_id");
|
|
|
|
}
|
|
|
|
|
2004-05-24 03:34:57 +02:00
|
|
|
?>
|