/Uis', '', $post->post_content); // get any tags and make them hashtags $post_tags = get_the_tags($post_id); if ($post_tags) { foreach($post_tags as $tag) { $tag_string .= "#" . $tag->name . " "; } } $message_id = site_url() . '/' . $post_id; if (isset($tag_string)) { $message .= "
$tag_string"; } $bbcode = xpost_to_html2bbcode($message); $url = $seed_location . '/api/statuses/update'; $headers = array('Authorization' => 'Basic '.base64_encode("$user_name:$password")); $body = array( 'title' => xpost_to_html2bbcode($post->post_title), 'status' => $bbcode, 'source' => 'WordPress', 'namespace' => 'wordpress', 'remote_id' => $message_id, 'permalink' => $post->guid ); if($channel) $body['channel'] = $channel; // post: $request = new WP_Http; $result = $request->request($url , array( 'method' => 'POST', 'body' => $body, 'headers' => $headers)); } } } function post_to_red_delete_post($post_id) { $post = get_post($post_id); // if meta has been set if ((get_post_meta($post_id, "post_to_red", true) == '1') || (get_post_meta($post_id, "post_from_red", true) == '1')) { $user_name = post_to_red_get_acct_name(); $password = post_to_red_get_password(); $seed_location = post_to_red_get_seed_location(); $channel = post_to_red_get_channel_name(); if ((isset($user_name)) && (isset($password)) && (isset($seed_location))) { $message_id = site_url() . '/' . $post_id; $url = $seed_location . '/api/statuses/destroy'; $headers = array('Authorization' => 'Basic '.base64_encode("$user_name:$password")); $body = array( 'namespace' => 'wordpress', 'remote_id' => $message_id, ); if($channel) $body['channel'] = $channel; // post: $request = new WP_Http; $result = $request->request($url , array( 'method' => 'POST', 'body' => $body, 'headers' => $headers)); } } } function post_to_red_displayAdminContent() { $seed_url = post_to_red_get_seed_location(); $password = post_to_red_get_password(); $user_acct = post_to_red_get_acct_name(); $channel = post_to_red_get_channel_name(); // debug... // echo "seed location: $seed_url
"; // echo "password: $password
"; // echo "user_acct: $user_acct
"; echo <<

CrossPost to Red Matrix

This plugin allows you to cross post to your Red Matrix channel.

Configuration

Enter the login details of your Red Matrix account

  Password:   Red Matrix URL:   Optional channel nickname:  

EOF; if(isset($_POST['submit'])) { echo "
Settings Saved!
"; } } function post_to_red_post_checkbox() { add_meta_box( 'post_to_red_meta_box_id', 'Cross Post to Red Matrix', 'post_to_red_post_meta_content', 'post', 'normal', 'default' ); } function post_to_red_post_meta_content($post_id) { wp_nonce_field(plugin_basename( __FILE__ ), 'post_to_red_nonce'); echo ' Cross post?'; } function post_to_red_post_field_data($post_id) { // check if this isn't an auto save if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return; // security check if((! array_key_exists('post_to_red_nonce', $_POST)) || (!wp_verify_nonce( $_POST['post_to_red_nonce'], plugin_basename( __FILE__ )))) return; // now store data in custom fields based on checkboxes selected if (isset($_POST['post_to_red'])) { update_post_meta($post_id, 'post_to_red', '1'); } } function post_to_red_display_admin_page() { if ((isset($_REQUEST["post_to_red_acct_name"])) && (isset($_REQUEST["post_to_red_password"]))) { $password = $_REQUEST["post_to_red_password"]; $red_url = $_REQUEST["post_to_red_url"]; update_option('post_to_red_acct_name', $_REQUEST["post_to_red_acct_name"]); update_option('post_to_red_channel_name', $channelname); update_option('post_to_red_seed_location', $red_url); update_option('post_to_red_password', $password); } post_to_red_displayAdminContent(); } function post_to_red_settings_link($links) { $settings_link = 'Settings'; array_unshift($links, $settings_link); return $links; } function post_to_red_admin() { add_options_page("Crosspost to redmatrix", "Crosspost to redmatrix", "manage_options", "xpost-to-redmatrix", "post_to_red_display_admin_page"); } register_deactivation_hook( __FILE__, 'post_to_red_deactivate' ); add_filter("plugin_action_links_$plugin", "post_to_red_settings_link"); add_action("admin_menu", "post_to_red_admin"); add_action('publish_post', 'post_to_red_post'); add_action('add_meta_boxes', 'post_to_red_post_checkbox'); add_action('save_post', 'post_to_red_post_field_data'); add_action('before_delete_post', 'post_to_red_delete_post'); add_filter('xmlrpc_methods', 'red_xmlrpc_methods'); function red_xmlrpc_methods($methods) { $methods['red.Comment'] = 'red_comment'; return $methods; } function red_comment($args) { global $wp_xmlrpc_server; $wp_xmlrpc_server->escape( $args ); $blog_id = $args[0]; $username = $args[1]; $password = $args[2]; $post = $args[3]; $content_struct = $args[4]; if ( ! $user = $wp_xmlrpc_server->login( $username, $password ) ) return $wp_xmlrpc_server->error; if ( is_numeric($post) ) $post_id = absint($post); else $post_id = url_to_postid($post); if ( ! $post_id ) return new IXR_Error( 404, __( 'Invalid post ID.' ) ); if ( ! get_post($post_id) ) return new IXR_Error( 404, __( 'Invalid post ID.' ) ); $comment['comment_post_ID'] = $post_id; $comment['comment_author'] = ''; if ( isset($content_struct['author']) ) $comment['comment_author'] = $content_struct['author']; $comment['comment_author_email'] = ''; if ( isset($content_struct['author_email']) ) $comment['comment_author_email'] = $content_struct['author_email']; $comment['comment_author_url'] = ''; if ( isset($content_struct['author_url']) ) $comment['comment_author_url'] = $content_struct['author_url']; $comment['user_ID'] = 0; if ( get_option('require_name_email') ) { if ( 6 > strlen($comment['comment_author_email']) || '' == $comment['comment_author'] ) return new IXR_Error( 403, __( 'Comment author name and email are required' ) ); elseif ( !is_email($comment['comment_author_email']) ) return new IXR_Error( 403, __( 'A valid email address is required' ) ); } if(isset($content_struct['comment_id'])) { $comment['comment_ID'] = intval($content_struct['comment_id']); $edit = true; } $comment['comment_post_ID'] = $post_id; $comment['comment_parent'] = isset($content_struct['comment_parent']) ? absint($content_struct['comment_parent']) : 0; $comment['comment_content'] = isset($content_struct['content']) ? $content_struct['content'] : null; do_action('xmlrpc_call', 'red.Comment'); if($edit) { $result = wp_update_comment($comment); $comment_ID = $comment['comment_ID']; } else { $comment_ID = wp_new_comment( $comment ); if($comment_ID) wp_set_comment_status($comment_ID,'approve'); } do_action( 'xmlrpc_call_success_red_Comment', $comment_ID, $args ); return $comment_ID; } // from: // http://www.docgate.com/tutorial/php/how-to-convert-html-to-bbcode-with-php-script.html function xpost_to_html2bbcode($text) { $htmltags = array( '/\(.*?)\<\/b\>/is', '/\(.*?)\<\/i\>/is', '/\(.*?)\<\/u\>/is', '/\(.*?)\<\/ul\>/is', '/\(.*?)\<\/li\>/is', '/\/is', // some smiley '/\/is', '/\/is', // some smiley '/\