From 1f9074fcd1247fbcc4666060e28050b30dcbff89 Mon Sep 17 00:00:00 2001 From: michelvaldrighi Date: Mon, 24 May 2004 22:07:30 +0000 Subject: [PATCH] database-related functions such as wp_insert_post are now in wp-includes/functions-post.php git-svn-id: http://svn.automattic.com/wordpress/trunk@1359 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- xmlrpc.php | 126 ----------------------------------------------------- 1 file changed, 126 deletions(-) diff --git a/xmlrpc.php b/xmlrpc.php index 77e248fb75..0e1d5023bb 100644 --- a/xmlrpc.php +++ b/xmlrpc.php @@ -368,130 +368,4 @@ class wp_xmlrpc_server extends IXR_Server { $wp_xmlrpc_server = new wp_xmlrpc_server(); - - -/* functions that we ought to relocate - * and/or roll into a WP class as extension of wpdb - */ - -function wp_insert_post($postarr = array()) { - global $wpdb, $post_default_category; - - // 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); - - $sql = "INSERT INTO $wpdb->posts - (post_author, post_date, post_date_gmt, post_modified, post_modified_gmt, post_content, post_title, post_excerpt, post_category, post_status, post_name) - 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')"; - - $result = $wpdb->query($sql); - $post_ID = $wpdb->insert_id; - $blog_ID = (isset($blog_ID)) ? $blog_ID : 1; - - wp_set_post_cats($blog_ID, $post_ID, $post_category); - - // Return insert_id if we got a good result, otherwise return zero. - return $result ? $post_ID : 0; -} - - -function wp_set_post_cats($blogid = '1', $post_ID = 0, $post_categories = array()) { - global $wpdb; - // 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 - FROM $wpdb->post2cat - WHERE post_id = $post_ID"); - - if (!$old_categories) { - $old_categories = array(); - } else { - $old_categories = array_unique($old_categories); - } - - - $oldies = print_r($old_categories,1); - $newbies = print_r($post_categories,1); - - logio("O","Old: $oldies\nNew: $newbies\n"); - - // Delete any? - $delete_cats = array_diff($old_categories,$post_categories); - - logio("O","Delete: " . print_r($delete_cats,1)); - - if ($delete_cats) { - foreach ($delete_cats as $del) { - $wpdb->query(" - DELETE FROM $wpdb->post2cat - 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); - - logio("O","Add: " . print_r($add_cats,1)); - - if ($add_cats) { - foreach ($add_cats as $new_cat) { - $wpdb->query(" - INSERT INTO $wpdb->post2cat (post_id, category_id) - VALUES ($post_ID, $new_cat)"); - - logio("O","adding post/cat: $post_ID, $new_cat"); - } - } -} - - -function wp_get_post_cats($blogid = '1', $post_ID = 0) { - global $wpdb; - - $sql = "SELECT category_id - FROM $wpdb->post2cat - WHERE post_id = $post_ID - ORDER BY category_id"; - - $result = $wpdb->get_col($sql); - - return array_unique($result); -} - - - ?> \ No newline at end of file