2004-05-23 06:02:53 +02:00
< ? php
2006-01-13 20:19:09 +01:00
define ( 'XMLRPC_REQUEST' , true );
// Some browser-embedded clients send cookies. We don't want them.
$_COOKIE = array ();
2004-05-23 06:02:53 +02:00
# fix for mozBlog and other cases where '<?xml' isn't on the very first line
2006-01-30 22:19:44 +01:00
if ( isset ( $HTTP_RAW_POST_DATA ) )
$HTTP_RAW_POST_DATA = trim ( $HTTP_RAW_POST_DATA );
2004-05-23 06:02:53 +02:00
2004-09-18 19:03:08 +02:00
include ( './wp-config.php' );
2005-11-07 10:47:51 +01:00
if ( isset ( $_GET [ 'rsd' ] ) ) { // http://archipelago.phrasewise.com/rsd
2006-08-30 23:46:31 +02:00
header ( 'Content-type: text/xml; charset=' . get_option ( 'blog_charset' ), true );
2005-11-07 10:47:51 +01:00
?>
2006-08-30 23:46:31 +02:00
< ? php echo '<?xml version="1.0" encoding="' . get_option ( 'blog_charset' ) . '"?' . '>' ; ?>
2005-11-07 10:47:51 +01:00
< rsd version = " 1.0 " xmlns = " http://archipelago.phrasewise.com/rsd " >
< service >
< engineName > WordPress </ engineName >
< engineLink > http :// wordpress . org /</ engineLink >
< homePageLink >< ? php bloginfo_rss ( 'url' ) ?> </homePageLink>
< apis >
< api name = " Movable Type " blogID = " 1 " preferred = " true " apiLink = " <?php bloginfo_rss('url') ?>/xmlrpc.php " />
< api name = " MetaWeblog " blogID = " 1 " preferred = " false " apiLink = " <?php bloginfo_rss('url') ?>/xmlrpc.php " />
< api name = " Blogger " blogID = " 1 " preferred = " false " apiLink = " <?php bloginfo_rss('url') ?>/xmlrpc.php " />
</ apis >
</ service >
</ rsd >
< ? php
exit ;
}
2004-09-17 22:53:18 +02:00
include_once ( ABSPATH . WPINC . '/class-IXR.php' );
2004-05-23 06:02:53 +02:00
// Turn off all warnings and errors.
2004-09-17 22:53:18 +02:00
// error_reporting(0);
2004-05-23 06:02:53 +02:00
$post_default_title = " " ; // posts submitted via the xmlrpc interface get that title
2004-09-14 19:20:22 +02:00
$xmlrpc_logging = 0 ;
2004-05-23 06:02:53 +02:00
function logIO ( $io , $msg ) {
global $xmlrpc_logging ;
if ( $xmlrpc_logging ) {
2004-09-17 22:53:18 +02:00
$fp = fopen ( " ../xmlrpc.log " , " a+ " );
2004-05-23 06:02:53 +02:00
$date = gmdate ( " Y-m-d H:i:s " );
$iot = ( $io == " I " ) ? " Input: " : " Output: " ;
fwrite ( $fp , " \n \n " . $date . $iot . $msg );
fclose ( $fp );
}
return true ;
}
function starify ( $string ) {
$i = strlen ( $string );
return str_repeat ( '*' , $i );
}
2006-10-04 07:23:10 +02:00
if ( isset ( $HTTP_RAW_POST_DATA ) )
logIO ( " I " , $HTTP_RAW_POST_DATA );
2004-05-23 06:02:53 +02:00
2004-09-01 18:13:35 +02:00
2004-09-17 22:53:18 +02:00
class wp_xmlrpc_server extends IXR_Server {
function wp_xmlrpc_server () {
$this -> methods = array (
// Blogger API
'blogger.getUsersBlogs' => 'this:blogger_getUsersBlogs' ,
'blogger.getUserInfo' => 'this:blogger_getUserInfo' ,
'blogger.getPost' => 'this:blogger_getPost' ,
'blogger.getRecentPosts' => 'this:blogger_getRecentPosts' ,
'blogger.getTemplate' => 'this:blogger_getTemplate' ,
'blogger.setTemplate' => 'this:blogger_setTemplate' ,
'blogger.newPost' => 'this:blogger_newPost' ,
'blogger.editPost' => 'this:blogger_editPost' ,
'blogger.deletePost' => 'this:blogger_deletePost' ,
// MetaWeblog API (with MT extensions to structs)
'metaWeblog.newPost' => 'this:mw_newPost' ,
'metaWeblog.editPost' => 'this:mw_editPost' ,
'metaWeblog.getPost' => 'this:mw_getPost' ,
'metaWeblog.getRecentPosts' => 'this:mw_getRecentPosts' ,
'metaWeblog.getCategories' => 'this:mw_getCategories' ,
'metaWeblog.newMediaObject' => 'this:mw_newMediaObject' ,
// MetaWeblog API aliases for Blogger API
// see http://www.xmlrpc.com/stories/storyReader$2460
'metaWeblog.deletePost' => 'this:blogger_deletePost' ,
'metaWeblog.getTemplate' => 'this:blogger_getTemplate' ,
'metaWeblog.setTemplate' => 'this:blogger_setTemplate' ,
'metaWeblog.getUsersBlogs' => 'this:blogger_getUsersBlogs' ,
// MovableType API
'mt.getCategoryList' => 'this:mt_getCategoryList' ,
'mt.getRecentPostTitles' => 'this:mt_getRecentPostTitles' ,
'mt.getPostCategories' => 'this:mt_getPostCategories' ,
'mt.setPostCategories' => 'this:mt_setPostCategories' ,
'mt.supportedMethods' => 'this:mt_supportedMethods' ,
'mt.supportedTextFilters' => 'this:mt_supportedTextFilters' ,
'mt.getTrackbackPings' => 'this:mt_getTrackbackPings' ,
'mt.publishPost' => 'this:mt_publishPost' ,
// PingBack
'pingback.ping' => 'this:pingback_ping' ,
'pingback.extensions.getPingbacks' => 'this:pingback_extensions_getPingbacks' ,
'demo.sayHello' => 'this:sayHello' ,
'demo.addTwoNumbers' => 'this:addTwoNumbers'
);
2005-01-07 00:28:51 +01:00
$this -> methods = apply_filters ( 'xmlrpc_methods' , $this -> methods );
2004-09-17 22:53:18 +02:00
$this -> IXR_Server ( $this -> methods );
}
2004-05-23 06:02:53 +02:00
2004-09-17 22:53:18 +02:00
function sayHello ( $args ) {
return 'Hello!' ;
}
2004-05-23 06:02:53 +02:00
2004-09-17 22:53:18 +02:00
function addTwoNumbers ( $args ) {
$number1 = $args [ 0 ];
$number2 = $args [ 1 ];
return $number1 + $number2 ;
}
2004-05-23 06:02:53 +02:00
2004-09-17 22:53:18 +02:00
function login_pass_ok ( $user_login , $user_pass ) {
if ( ! user_pass_ok ( $user_login , $user_pass )) {
$this -> error = new IXR_Error ( 403 , 'Bad login/pass combination.' );
return false ;
}
return true ;
}
2004-05-23 06:02:53 +02:00
2005-06-29 00:16:27 +02:00
function escape ( & $array ) {
global $wpdb ;
2004-05-23 06:02:53 +02:00
2006-10-21 12:42:42 +02:00
foreach ( ( array ) $array as $k => $v ) {
2005-06-29 00:16:27 +02:00
if ( is_array ( $v )) {
$this -> escape ( $array [ $k ]);
2005-06-29 19:01:11 +02:00
} else if ( is_object ( $v )) {
//skip
2005-06-29 00:16:27 +02:00
} else {
$array [ $k ] = $wpdb -> escape ( $v );
}
}
}
2004-05-23 06:02:53 +02:00
2004-09-17 22:53:18 +02:00
/* Blogger API functions
* specs on http :// plant . blogger . com / api and http :// groups . yahoo . com / group / bloggerDev /
*/
2004-05-23 06:02:53 +02:00
2004-09-17 22:53:18 +02:00
/* blogger.getUsersBlogs will make more sense once we support multiple blogs */
function blogger_getUsersBlogs ( $args ) {
2004-05-23 06:02:53 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$user_login = $args [ 1 ];
$user_pass = $args [ 2 ];
2004-05-23 06:02:53 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-05-23 06:02:53 +02:00
2006-01-13 20:19:09 +01:00
set_current_user ( 0 , $user_login );
$is_admin = current_user_can ( 'level_8' );
2004-05-23 06:02:53 +02:00
2004-09-17 22:53:18 +02:00
$struct = array (
'isAdmin' => $is_admin ,
2006-08-30 23:46:31 +02:00
'url' => get_option ( 'home' ) . '/' ,
2004-09-17 22:53:18 +02:00
'blogid' => '1' ,
2006-08-30 23:46:31 +02:00
'blogName' => get_option ( 'blogname' )
2004-09-17 22:53:18 +02:00
);
2006-01-13 23:08:00 +01:00
2004-09-17 22:53:18 +02:00
return array ( $struct );
2004-05-23 06:02:53 +02:00
}
2004-09-17 22:53:18 +02:00
/* blogger.getUsersInfo gives your client some info about you, so you don't have to */
function blogger_getUserInfo ( $args ) {
2004-05-23 06:02:53 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$user_login = $args [ 1 ];
$user_pass = $args [ 2 ];
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
$user_data = get_userdatabylogin ( $user_login );
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
$struct = array (
2005-06-13 10:32:44 +02:00
'nickname' => $user_data -> nickname ,
2004-09-17 22:53:18 +02:00
'userid' => $user_data -> ID ,
'url' => $user_data -> user_url ,
'email' => $user_data -> user_email ,
2005-06-13 10:32:44 +02:00
'lastname' => $user_data -> last_name ,
'firstname' => $user_data -> first_name
2004-09-17 22:53:18 +02:00
);
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
return $struct ;
2004-09-17 22:48:43 +02:00
}
2004-05-23 06:02:53 +02:00
2004-09-17 22:53:18 +02:00
/* blogger.getPost ...gets a post */
function blogger_getPost ( $args ) {
2004-05-23 06:02:53 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$post_ID = $args [ 1 ];
$user_login = $args [ 2 ];
$user_pass = $args [ 3 ];
2004-05-23 06:02:53 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-05-23 06:02:53 +02:00
2004-09-17 22:53:18 +02:00
$user_data = get_userdatabylogin ( $user_login );
$post_data = wp_get_single_post ( $post_ID , ARRAY_A );
2004-05-23 06:02:53 +02:00
2006-06-06 07:04:41 +02:00
$categories = implode ( ',' , wp_get_post_categories ( $post_ID ));
2004-05-23 06:02:53 +02:00
2004-09-17 22:53:18 +02:00
$content = '<title>' . stripslashes ( $post_data [ 'post_title' ]) . '</title>' ;
$content .= '<category>' . $categories . '</category>' ;
$content .= stripslashes ( $post_data [ 'post_content' ]);
2004-05-23 06:02:53 +02:00
2004-09-17 22:53:18 +02:00
$struct = array (
'userid' => $post_data [ 'post_author' ],
'dateCreated' => new IXR_Date ( mysql2date ( 'Ymd\TH:i:s' , $post_data [ 'post_date' ])),
'content' => $content ,
'postid' => $post_data [ 'ID' ]
);
2004-05-23 06:02:53 +02:00
2004-09-17 22:53:18 +02:00
return $struct ;
2004-05-23 06:02:53 +02:00
}
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
/* blogger.getRecentPosts ...gets recent posts */
function blogger_getRecentPosts ( $args ) {
2004-05-23 17:46:43 +02:00
2004-09-17 22:53:18 +02:00
global $wpdb ;
2004-05-23 17:46:43 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$blog_ID = $args [ 1 ]; /* though we don't use it yet */
$user_login = $args [ 2 ];
$user_pass = $args [ 3 ];
$num_posts = $args [ 4 ];
2004-05-23 17:46:43 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-05-23 17:46:43 +02:00
2004-09-17 22:53:18 +02:00
$posts_list = wp_get_recent_posts ( $num_posts );
2004-05-23 17:46:43 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $posts_list ) {
$this -> error = new IXR_Error ( 500 , 'Either there are no posts, or something went wrong.' );
return $this -> error ;
}
2004-05-23 17:46:43 +02:00
2004-09-17 22:53:18 +02:00
foreach ( $posts_list as $entry ) {
$post_date = mysql2date ( 'Ymd\TH:i:s' , $entry [ 'post_date' ]);
2006-06-06 07:04:41 +02:00
$categories = implode ( ',' , wp_get_post_categories ( $entry [ 'ID' ]));
2004-05-23 17:46:43 +02:00
2004-12-13 15:55:13 +01:00
$content = '<title>' . stripslashes ( $entry [ 'post_title' ]) . '</title>' ;
2004-09-17 22:53:18 +02:00
$content .= '<category>' . $categories . '</category>' ;
$content .= stripslashes ( $entry [ 'post_content' ]);
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
$struct [] = array (
'userid' => $entry [ 'post_author' ],
'dateCreated' => new IXR_Date ( $post_date ),
'content' => $content ,
'postid' => $entry [ 'ID' ],
);
2004-05-23 17:46:43 +02:00
2004-09-17 22:53:18 +02:00
}
2004-05-23 17:46:43 +02:00
2004-09-17 22:53:18 +02:00
$recent_posts = array ();
for ( $j = 0 ; $j < count ( $struct ); $j ++ ) {
array_push ( $recent_posts , $struct [ $j ]);
}
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
return $recent_posts ;
2004-05-23 17:46:43 +02:00
}
2004-09-17 22:53:18 +02:00
/* blogger.getTemplate returns your blog_filename */
function blogger_getTemplate ( $args ) {
2004-05-23 17:46:43 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$blog_ID = $args [ 1 ];
$user_login = $args [ 2 ];
$user_pass = $args [ 3 ];
$template = $args [ 4 ]; /* could be 'main' or 'archiveIndex', but we don't use it */
2004-05-23 17:46:43 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-05-23 17:46:43 +02:00
2006-01-13 20:19:09 +01:00
set_current_user ( 0 , $user_login );
if ( ! current_user_can ( 'edit_themes' ) ) {
2005-07-15 03:24:08 +02:00
return new IXR_Error ( 401 , 'Sorry, this user can not edit the template.' );
2004-09-17 22:53:18 +02:00
}
2004-05-23 17:46:43 +02:00
2006-08-30 18:40:17 +02:00
/* warning: here we make the assumption that the weblog's URL is on the same server */
2006-08-30 23:46:31 +02:00
$filename = get_option ( 'home' ) . '/' ;
2005-11-11 02:21:28 +01:00
$filename = preg_replace ( '#https?://.+?/#' , $_SERVER [ 'DOCUMENT_ROOT' ] . '/' , $filename );
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
$f = fopen ( $filename , 'r' );
$content = fread ( $f , filesize ( $filename ));
fclose ( $f );
2004-05-23 17:46:43 +02:00
2004-09-17 22:53:18 +02:00
/* so it is actually editable with a windows/mac client */
// FIXME: (or delete me) do we really want to cater to bad clients at the expense of good ones by BEEPing up their line breaks? commented. $content = str_replace("\n", "\r\n", $content);
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
return $content ;
}
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
/* blogger.setTemplate updates the content of blog_filename */
function blogger_setTemplate ( $args ) {
2004-09-17 22:48:43 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$blog_ID = $args [ 1 ];
$user_login = $args [ 2 ];
$user_pass = $args [ 3 ];
$content = $args [ 4 ];
$template = $args [ 5 ]; /* could be 'main' or 'archiveIndex', but we don't use it */
2004-05-23 17:46:43 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-05-23 18:42:23 +02:00
2006-01-13 20:19:09 +01:00
set_current_user ( 0 , $user_login );
if ( ! current_user_can ( 'edit_themes' ) ) {
2005-07-15 03:24:08 +02:00
return new IXR_Error ( 401 , 'Sorry, this user can not edit the template.' );
2004-09-17 22:53:18 +02:00
}
2004-05-23 18:42:23 +02:00
2006-08-30 18:40:17 +02:00
/* warning: here we make the assumption that the weblog's URL is on the same server */
2006-08-30 23:46:31 +02:00
$filename = get_option ( 'home' ) . '/' ;
2005-11-11 02:21:28 +01:00
$filename = preg_replace ( '#https?://.+?/#' , $_SERVER [ 'DOCUMENT_ROOT' ] . '/' , $filename );
2004-05-23 18:42:23 +02:00
2004-09-17 22:53:18 +02:00
if ( $f = fopen ( $filename , 'w+' )) {
fwrite ( $f , $content );
fclose ( $f );
} else {
return new IXR_Error ( 500 , 'Either the file is not writable, or something wrong happened. The file has not been updated.' );
}
2004-05-23 18:42:23 +02:00
2004-09-17 22:53:18 +02:00
return true ;
}
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
/* blogger.newPost ...creates a new post */
function blogger_newPost ( $args ) {
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
global $wpdb ;
2004-09-17 22:48:43 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$blog_ID = $args [ 1 ]; /* though we don't use it yet */
$user_login = $args [ 2 ];
$user_pass = $args [ 3 ];
$content = $args [ 4 ];
$publish = $args [ 5 ];
2004-05-23 18:42:23 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2005-09-07 02:20:04 +02:00
$cap = ( $publish ) ? 'publish_posts' : 'edit_posts' ;
2006-01-13 20:19:09 +01:00
$user = set_current_user ( 0 , $user_login );
if ( ! current_user_can ( $cap ) )
2004-09-17 22:53:18 +02:00
return new IXR_Error ( 401 , 'Sorry, you can not post on this weblog or category.' );
2004-05-23 18:42:23 +02:00
2004-09-17 22:53:18 +02:00
$post_status = ( $publish ) ? 'publish' : 'draft' ;
2004-05-23 18:42:23 +02:00
2005-09-07 02:20:04 +02:00
$post_author = $user -> ID ;
2004-05-23 18:42:23 +02:00
2004-09-17 22:53:18 +02:00
$post_title = xmlrpc_getposttitle ( $content );
$post_category = xmlrpc_getpostcategory ( $content );
2005-10-20 18:38:07 +02:00
$post_content = xmlrpc_removepostdata ( $content );
2004-05-23 18:42:23 +02:00
2004-09-17 22:53:18 +02:00
$post_date = current_time ( 'mysql' );
$post_date_gmt = current_time ( 'mysql' , 1 );
2004-05-23 18:42:23 +02:00
2004-09-17 22:53:18 +02:00
$post_data = compact ( 'blog_ID' , 'post_author' , 'post_date' , 'post_date_gmt' , 'post_content' , 'post_title' , 'post_category' , 'post_status' );
2004-05-23 18:42:23 +02:00
2004-09-17 22:53:18 +02:00
$post_ID = wp_insert_post ( $post_data );
2004-05-23 18:42:23 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $post_ID ) {
return new IXR_Error ( 500 , 'Sorry, your entry could not be posted. Something wrong happened.' );
}
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
logIO ( 'O' , " Posted ! ID: $post_ID " );
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
return $post_ID ;
2004-05-23 18:42:23 +02:00
}
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
/* blogger.editPost ...edits a post */
function blogger_editPost ( $args ) {
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
global $wpdb ;
2004-08-25 17:24:09 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$post_ID = $args [ 1 ];
$user_login = $args [ 2 ];
$user_pass = $args [ 3 ];
2005-10-20 18:38:07 +02:00
$content = $args [ 4 ];
2004-09-17 22:53:18 +02:00
$publish = $args [ 5 ];
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
$actual_post = wp_get_single_post ( $post_ID , ARRAY_A );
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $actual_post ) {
return new IXR_Error ( 404 , 'Sorry, no such post.' );
}
2004-08-25 17:24:09 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $actual_post );
2006-01-13 20:19:09 +01:00
set_current_user ( 0 , $user_login );
if ( ! current_user_can ( 'edit_post' , $post_ID ) )
2004-09-17 22:53:18 +02:00
return new IXR_Error ( 401 , 'Sorry, you do not have the right to edit this post.' );
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
extract ( $actual_post );
2005-06-29 00:16:27 +02:00
2004-09-17 22:53:18 +02:00
$post_title = xmlrpc_getposttitle ( $content );
$post_category = xmlrpc_getpostcategory ( $content );
2005-10-20 18:38:07 +02:00
$post_content = xmlrpc_removepostdata ( $content );
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
$postdata = compact ( 'ID' , 'post_content' , 'post_title' , 'post_category' , 'post_status' , 'post_excerpt' );
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
$result = wp_update_post ( $postdata );
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $result ) {
return new IXR_Error ( 500 , 'For some strange yet very annoying reason, this post could not be edited.' );
}
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
return true ;
2004-08-25 17:24:09 +02:00
}
2004-09-17 22:53:18 +02:00
/* blogger.deletePost ...deletes a post */
function blogger_deletePost ( $args ) {
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
global $wpdb ;
2004-08-25 17:24:09 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$post_ID = $args [ 1 ];
$user_login = $args [ 2 ];
$user_pass = $args [ 3 ];
$publish = $args [ 4 ];
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
$actual_post = wp_get_single_post ( $post_ID , ARRAY_A );
2004-08-25 17:24:09 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $actual_post ) {
return new IXR_Error ( 404 , 'Sorry, no such post.' );
}
2004-08-25 18:28:20 +02:00
2006-01-13 20:19:09 +01:00
set_current_user ( 0 , $user_login );
if ( ! current_user_can ( 'edit_post' , $post_ID ) )
2004-09-17 22:53:18 +02:00
return new IXR_Error ( 401 , 'Sorry, you do not have the right to delete this post.' );
2004-08-25 18:28:20 +02:00
2004-09-17 22:53:18 +02:00
$result = wp_delete_post ( $post_ID );
2004-08-25 18:28:20 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $result ) {
return new IXR_Error ( 500 , 'For some strange yet very annoying reason, this post could not be deleted.' );
}
2004-08-25 18:28:20 +02:00
2004-09-17 22:53:18 +02:00
return true ;
2004-09-17 22:48:43 +02:00
}
2004-08-25 18:28:20 +02:00
2004-09-17 22:53:18 +02:00
/* MetaWeblog API functions
* specs on wherever Dave Winer wants them to be
*/
2004-09-14 19:20:22 +02:00
2004-09-17 22:53:18 +02:00
/* metaweblog.newPost creates a post */
function mw_newPost ( $args ) {
2004-08-25 18:28:20 +02:00
2005-06-18 21:21:37 +02:00
global $wpdb , $post_default_category ;
2004-08-25 18:28:20 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$blog_ID = $args [ 0 ]; // we will support this in the near future
$user_login = $args [ 1 ];
$user_pass = $args [ 2 ];
$content_struct = $args [ 3 ];
$publish = $args [ 4 ];
2004-08-25 18:28:20 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-08-25 18:28:20 +02:00
2006-01-13 20:19:09 +01:00
$user = set_current_user ( 0 , $user_login );
if ( ! current_user_can ( 'publish_posts' ) )
2004-09-17 22:53:18 +02:00
return new IXR_Error ( 401 , 'Sorry, you can not post on this weblog or category.' );
2004-08-25 18:28:20 +02:00
2005-09-07 02:20:04 +02:00
$post_author = $user -> ID ;
2004-08-25 18:28:20 +02:00
2004-09-17 22:53:18 +02:00
$post_title = $content_struct [ 'title' ];
2005-01-06 23:51:44 +01:00
$post_content = apply_filters ( 'content_save_pre' , $content_struct [ 'description' ] );
2004-09-17 22:53:18 +02:00
$post_status = $publish ? 'publish' : 'draft' ;
2004-08-25 18:28:20 +02:00
2004-09-17 22:53:18 +02:00
$post_excerpt = $content_struct [ 'mt_excerpt' ];
$post_more = $content_struct [ 'mt_text_more' ];
2004-08-25 18:28:20 +02:00
2004-09-17 22:53:18 +02:00
$comment_status = ( empty ( $content_struct [ 'mt_allow_comments' ])) ?
2006-08-30 23:46:31 +02:00
get_option ( 'default_comment_status' )
2004-09-17 22:53:18 +02:00
: $content_struct [ 'mt_allow_comments' ];
2004-08-25 18:28:20 +02:00
2004-09-17 22:53:18 +02:00
$ping_status = ( empty ( $content_struct [ 'mt_allow_pings' ])) ?
2006-08-30 23:46:31 +02:00
get_option ( 'default_ping_status' )
2004-09-17 22:53:18 +02:00
: $content_struct [ 'mt_allow_pings' ];
2004-08-25 18:28:20 +02:00
2004-09-17 22:53:18 +02:00
if ( $post_more ) {
$post_content = $post_content . " \n <!--more--> \n " . $post_more ;
}
2005-06-19 05:30:46 +02:00
$to_ping = $content_struct [ 'mt_tb_ping_urls' ];
2004-09-17 22:53:18 +02:00
// Do some timestamp voodoo
$dateCreatedd = $content_struct [ 'dateCreated' ];
2004-09-22 14:11:05 +02:00
if ( ! empty ( $dateCreatedd )) {
2004-09-18 20:10:16 +02:00
$dateCreated = $dateCreatedd -> getIso ();
2004-09-17 22:53:18 +02:00
$post_date = get_date_from_gmt ( iso8601_to_datetime ( $dateCreated ));
$post_date_gmt = iso8601_to_datetime ( $dateCreated , GMT );
} else {
$post_date = current_time ( 'mysql' );
$post_date_gmt = current_time ( 'mysql' , 1 );
}
$catnames = $content_struct [ 'categories' ];
2004-12-08 03:35:53 +01:00
logIO ( 'O' , 'Post cats: ' . printr ( $catnames , true ));
2004-09-17 22:53:18 +02:00
$post_category = array ();
2005-03-02 16:38:09 +01:00
if ( is_array ( $catnames )) {
2004-09-17 22:53:18 +02:00
foreach ( $catnames as $cat ) {
$post_category [] = get_cat_ID ( $cat );
}
2005-07-03 20:33:03 +02:00
}
2006-02-12 08:53:23 +01:00
2004-09-17 22:53:18 +02:00
// We've got all the data -- post it:
2005-06-19 05:30:46 +02:00
$postdata = compact ( 'post_author' , 'post_date' , 'post_date_gmt' , 'post_content' , 'post_title' , 'post_category' , 'post_status' , 'post_excerpt' , 'comment_status' , 'ping_status' , 'to_ping' );
2004-08-25 18:28:20 +02:00
2004-09-17 22:53:18 +02:00
$post_ID = wp_insert_post ( $postdata );
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $post_ID ) {
return new IXR_Error ( 500 , 'Sorry, your entry could not be posted. Something wrong happened.' );
}
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
logIO ( 'O' , " Posted ! ID: $post_ID " );
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
return strval ( $post_ID );
2004-08-25 18:28:20 +02:00
}
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
/* metaweblog.editPost ...edits a post */
function mw_editPost ( $args ) {
2004-08-25 18:28:20 +02:00
2005-06-18 21:21:37 +02:00
global $wpdb , $post_default_category ;
2004-08-25 18:28:20 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$post_ID = $args [ 0 ];
$user_login = $args [ 1 ];
$user_pass = $args [ 2 ];
$content_struct = $args [ 3 ];
$publish = $args [ 4 ];
2004-08-25 18:28:20 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-08-25 18:28:20 +02:00
2006-01-13 20:19:09 +01:00
set_current_user ( 0 , $user_login );
if ( ! current_user_can ( 'edit_post' , $post_ID ) )
2004-09-17 22:53:18 +02:00
return new IXR_Error ( 401 , 'Sorry, you can not edit this post.' );
2004-08-25 18:28:20 +02:00
2004-09-17 22:53:18 +02:00
$postdata = wp_get_single_post ( $post_ID , ARRAY_A );
extract ( $postdata );
2005-06-29 00:16:27 +02:00
$this -> escape ( $postdata );
2004-08-25 18:28:20 +02:00
2004-09-17 22:53:18 +02:00
$post_title = $content_struct [ 'title' ];
2005-01-06 23:51:44 +01:00
$post_content = apply_filters ( 'content_save_pre' , $content_struct [ 'description' ] );
2004-09-17 22:53:18 +02:00
$catnames = $content_struct [ 'categories' ];
2005-06-30 18:07:42 +02:00
$post_category = array ();
2006-02-12 08:53:23 +01:00
2005-03-02 16:38:09 +01:00
if ( is_array ( $catnames )) {
2004-09-17 22:53:18 +02:00
foreach ( $catnames as $cat ) {
$post_category [] = get_cat_ID ( $cat );
}
2005-07-03 20:33:03 +02:00
}
2004-09-17 22:53:18 +02:00
$post_excerpt = $content_struct [ 'mt_excerpt' ];
$post_more = $content_struct [ 'mt_text_more' ];
$post_status = $publish ? 'publish' : 'draft' ;
if ( $post_more ) {
$post_content = $post_content . " \n <!--more--> \n " . $post_more ;
}
2005-06-19 05:30:46 +02:00
$to_ping = $content_struct [ 'mt_tb_ping_urls' ];
2004-09-17 22:53:18 +02:00
$comment_status = ( empty ( $content_struct [ 'mt_allow_comments' ])) ?
2006-08-30 23:46:31 +02:00
get_option ( 'default_comment_status' )
2004-09-17 22:53:18 +02:00
: $content_struct [ 'mt_allow_comments' ];
$ping_status = ( empty ( $content_struct [ 'mt_allow_pings' ])) ?
2006-08-30 23:46:31 +02:00
get_option ( 'default_ping_status' )
2004-09-17 22:53:18 +02:00
: $content_struct [ 'mt_allow_pings' ];
// Do some timestamp voodoo
2004-09-22 14:11:05 +02:00
$dateCreatedd = $content_struct [ 'dateCreated' ];
if ( ! empty ( $dateCreatedd )) {
2004-09-18 20:10:16 +02:00
$dateCreated = $dateCreatedd -> getIso ();
2004-09-17 22:53:18 +02:00
$post_date = get_date_from_gmt ( iso8601_to_datetime ( $dateCreated ));
$post_date_gmt = iso8601_to_datetime ( $dateCreated , GMT );
} else {
$post_date = $postdata [ 'post_date' ];
$post_date_gmt = $postdata [ 'post_date_gmt' ];
}
// We've got all the data -- post it:
2005-06-19 05:30:46 +02:00
$newpost = compact ( 'ID' , 'post_content' , 'post_title' , 'post_category' , 'post_status' , 'post_excerpt' , 'comment_status' , 'ping_status' , 'post_date' , 'post_date_gmt' , 'to_ping' );
2004-09-17 22:53:18 +02:00
2005-06-19 05:30:46 +02:00
$result = wp_update_post ( $newpost );
if ( ! $result ) {
2004-09-17 22:53:18 +02:00
return new IXR_Error ( 500 , 'Sorry, your entry could not be edited. Something wrong happened.' );
}
logIO ( 'O' , " (MW) Edited ! ID: $post_ID " );
return true ;
2004-08-26 17:42:43 +02:00
}
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
/* metaweblog.getPost ...returns a post */
function mw_getPost ( $args ) {
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
global $wpdb ;
2004-08-26 17:42:43 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$post_ID = $args [ 0 ];
$user_login = $args [ 1 ];
$user_pass = $args [ 2 ];
2004-08-26 17:42:43 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-08-26 17:42:43 +02:00
2004-09-17 22:53:18 +02:00
$postdata = wp_get_single_post ( $post_ID , ARRAY_A );
2004-08-26 17:42:43 +02:00
2004-09-17 22:53:18 +02:00
if ( $postdata [ 'post_date' ] != '' ) {
2004-08-26 17:42:43 +02:00
2004-09-17 22:53:18 +02:00
$post_date = mysql2date ( 'Ymd\TH:i:s' , $postdata [ 'post_date' ]);
2004-08-26 17:42:43 +02:00
2004-09-17 22:53:18 +02:00
$categories = array ();
2006-06-06 07:04:41 +02:00
$catids = wp_get_post_categories ( $post_ID );
2004-09-17 22:53:18 +02:00
foreach ( $catids as $catid ) {
$categories [] = get_cat_name ( $catid );
}
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
$post = get_extended ( $postdata [ 'post_content' ]);
$link = post_permalink ( $postdata [ 'ID' ]);
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
$allow_comments = ( 'open' == $postdata [ 'comment_status' ]) ? 1 : 0 ;
$allow_pings = ( 'open' == $postdata [ 'ping_status' ]) ? 1 : 0 ;
2004-08-26 17:42:43 +02:00
2004-09-17 22:53:18 +02:00
$resp = array (
'dateCreated' => new IXR_Date ( $post_date ),
'userid' => $postdata [ 'post_author' ],
'postid' => $postdata [ 'ID' ],
'description' => $post [ 'main' ],
'title' => $postdata [ 'post_title' ],
'link' => $link ,
'permaLink' => $link ,
// commented out because no other tool seems to use this
// 'content' => $entry['post_content'],
'categories' => $categories ,
'mt_excerpt' => $postdata [ 'post_excerpt' ],
'mt_text_more' => $post [ 'extended' ],
'mt_allow_comments' => $allow_comments ,
'mt_allow_pings' => $allow_pings
);
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
return $resp ;
} else {
return new IXR_Error ( 404 , 'Sorry, no such post.' );
}
}
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
/* metaweblog.getRecentPosts ...returns recent posts */
function mw_getRecentPosts ( $args ) {
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$blog_ID = $args [ 0 ];
$user_login = $args [ 1 ];
$user_pass = $args [ 2 ];
$num_posts = $args [ 3 ];
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
$posts_list = wp_get_recent_posts ( $num_posts );
if ( ! $posts_list ) {
$this -> error = new IXR_Error ( 500 , 'Either there are no posts, or something went wrong.' );
return $this -> error ;
}
foreach ( $posts_list as $entry ) {
$post_date = mysql2date ( 'Ymd\TH:i:s' , $entry [ 'post_date' ]);
$categories = array ();
2006-06-06 07:04:41 +02:00
$catids = wp_get_post_categories ( $entry [ 'ID' ]);
2004-09-17 22:53:18 +02:00
foreach ( $catids as $catid ) {
$categories [] = get_cat_name ( $catid );
}
$post = get_extended ( $entry [ 'post_content' ]);
$link = post_permalink ( $entry [ 'ID' ]);
$allow_comments = ( 'open' == $entry [ 'comment_status' ]) ? 1 : 0 ;
$allow_pings = ( 'open' == $entry [ 'ping_status' ]) ? 1 : 0 ;
$struct [] = array (
'dateCreated' => new IXR_Date ( $post_date ),
'userid' => $entry [ 'post_author' ],
'postid' => $entry [ 'ID' ],
'description' => $post [ 'main' ],
'title' => $entry [ 'post_title' ],
'link' => $link ,
'permaLink' => $link ,
// commented out because no other tool seems to use this
// 'content' => $entry['post_content'],
'categories' => $categories ,
'mt_excerpt' => $entry [ 'post_excerpt' ],
'mt_text_more' => $post [ 'extended' ],
'mt_allow_comments' => $allow_comments ,
'mt_allow_pings' => $allow_pings
);
}
$recent_posts = array ();
for ( $j = 0 ; $j < count ( $struct ); $j ++ ) {
array_push ( $recent_posts , $struct [ $j ]);
}
return $recent_posts ;
}
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
/* metaweblog.getCategories ...returns the list of categories on a given weblog */
function mw_getCategories ( $args ) {
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
global $wpdb ;
2004-09-17 22:48:43 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$blog_ID = $args [ 0 ];
$user_login = $args [ 1 ];
$user_pass = $args [ 2 ];
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
$categories_struct = array ();
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
// FIXME: can we avoid using direct SQL there?
if ( $cats = $wpdb -> get_results ( " SELECT cat_ID,cat_name FROM $wpdb->categories " , ARRAY_A )) {
foreach ( $cats as $cat ) {
$struct [ 'categoryId' ] = $cat [ 'cat_ID' ];
$struct [ 'description' ] = $cat [ 'cat_name' ];
$struct [ 'categoryName' ] = $cat [ 'cat_name' ];
2005-02-15 11:04:29 +01:00
$struct [ 'htmlUrl' ] = wp_specialchars ( get_category_link ( $cat [ 'cat_ID' ]));
2004-12-12 21:41:19 +01:00
$struct [ 'rssUrl' ] = wp_specialchars ( get_category_rss_link ( false , $cat [ 'cat_ID' ], $cat [ 'cat_name' ]));
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
$categories_struct [] = $struct ;
}
}
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
return $categories_struct ;
2004-08-26 17:42:43 +02:00
}
2004-08-27 10:46:24 +02:00
2004-09-17 22:53:18 +02:00
/* metaweblog.newMediaObject uploads a file, following your settings */
function mw_newMediaObject ( $args ) {
2005-12-01 23:51:40 +01:00
// adapted from a patch by Johann Richard
// http://mycvs.org/archives/2004/06/30/file-upload-to-wordpress-in-ecto/
2004-09-17 22:53:18 +02:00
2005-06-30 02:12:18 +02:00
global $wpdb ;
2005-06-30 18:07:42 +02:00
2005-12-01 23:51:40 +01:00
$blog_ID = $wpdb -> escape ( $args [ 0 ]);
$user_login = $wpdb -> escape ( $args [ 1 ]);
2005-06-30 02:12:18 +02:00
$user_pass = $wpdb -> escape ( $args [ 2 ]);
2005-12-01 23:51:40 +01:00
$data = $args [ 3 ];
2004-09-17 22:53:18 +02:00
2005-12-01 23:51:40 +01:00
$name = $data [ 'name' ];
$type = $data [ 'type' ];
$bits = $data [ 'bits' ];
2004-09-17 22:53:18 +02:00
2005-12-01 23:51:40 +01:00
logIO ( 'O' , '(MW) Received ' . strlen ( $bits ) . ' bytes' );
2004-09-17 22:53:18 +02:00
2005-12-01 23:51:40 +01:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass ) )
return $this -> error ;
2004-09-17 22:53:18 +02:00
2006-01-13 20:19:09 +01:00
set_current_user ( 0 , $user_login );
if ( ! current_user_can ( 'upload_files' ) ) {
2005-12-01 23:51:40 +01:00
logIO ( 'O' , '(MW) User does not have upload_files capability' );
$this -> error = new IXR_Error ( 401 , 'You are not allowed to upload files to this site.' );
return $this -> error ;
}
2004-09-17 22:53:18 +02:00
2005-12-01 23:51:40 +01:00
$upload = wp_upload_bits ( $name , $type , $bits );
2005-12-29 03:07:10 +01:00
if ( ! empty ( $upload [ 'error' ]) ) {
2005-12-01 23:51:40 +01:00
logIO ( 'O' , '(MW) Could not write file ' . $name );
return new IXR_Error ( 500 , 'Could not write file ' . $name );
}
2006-02-12 08:53:23 +01:00
2005-12-01 23:51:40 +01:00
return array ( 'url' => $upload [ 'url' ]);
2004-08-27 10:46:24 +02:00
}
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
/* MovableType API functions
* specs on http :// www . movabletype . org / docs / mtmanual_programmatic . html
*/
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
/* mt.getRecentPostTitles ...returns recent posts' titles */
function mt_getRecentPostTitles ( $args ) {
2004-09-14 18:52:13 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$blog_ID = $args [ 0 ];
$user_login = $args [ 1 ];
$user_pass = $args [ 2 ];
$num_posts = $args [ 3 ];
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
$posts_list = wp_get_recent_posts ( $num_posts );
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $posts_list ) {
$this -> error = new IXR_Error ( 500 , 'Either there are no posts, or something went wrong.' );
return $this -> error ;
}
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
foreach ( $posts_list as $entry ) {
$post_date = mysql2date ( 'Ymd\TH:i:s' , $entry [ 'post_date' ]);
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
$struct [] = array (
'dateCreated' => new IXR_Date ( $post_date ),
'userid' => $entry [ 'post_author' ],
'postid' => $entry [ 'ID' ],
'title' => $entry [ 'post_title' ],
);
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
}
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
$recent_posts = array ();
for ( $j = 0 ; $j < count ( $struct ); $j ++ ) {
array_push ( $recent_posts , $struct [ $j ]);
}
return $recent_posts ;
2004-09-14 18:52:13 +02:00
}
2004-09-17 22:53:18 +02:00
/* mt.getCategoryList ...returns the list of categories on a given weblog */
function mt_getCategoryList ( $args ) {
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
global $wpdb ;
2004-09-14 18:52:13 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$blog_ID = $args [ 0 ];
$user_login = $args [ 1 ];
$user_pass = $args [ 2 ];
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
$categories_struct = array ();
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
// FIXME: can we avoid using direct SQL there?
if ( $cats = $wpdb -> get_results ( " SELECT cat_ID, cat_name FROM $wpdb->categories " , ARRAY_A )) {
foreach ( $cats as $cat ) {
$struct [ 'categoryId' ] = $cat [ 'cat_ID' ];
$struct [ 'categoryName' ] = $cat [ 'cat_name' ];
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
$categories_struct [] = $struct ;
}
}
2004-09-14 18:52:13 +02:00
2004-09-17 22:53:18 +02:00
return $categories_struct ;
2004-09-14 18:52:13 +02:00
}
2004-09-16 15:26:06 +02:00
2004-09-17 22:53:18 +02:00
/* mt.getPostCategories ...returns a post's categories */
function mt_getPostCategories ( $args ) {
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$post_ID = $args [ 0 ];
$user_login = $args [ 1 ];
$user_pass = $args [ 2 ];
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
$categories = array ();
2006-06-06 07:04:41 +02:00
$catids = wp_get_post_categories ( intval ( $post_ID ));
2004-09-17 22:53:18 +02:00
// first listed category will be the primary category
$isPrimary = true ;
foreach ( $catids as $catid ) {
$categories [] = array (
'categoryName' => get_cat_name ( $catid ),
'categoryId' => $catid ,
'isPrimary' => $isPrimary
);
$isPrimary = false ;
}
return $categories ;
2004-09-16 16:54:25 +02:00
}
2004-09-17 22:53:18 +02:00
/* mt.setPostCategories ...sets a post's categories */
function mt_setPostCategories ( $args ) {
2004-09-16 16:54:25 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$post_ID = $args [ 0 ];
$user_login = $args [ 1 ];
$user_pass = $args [ 2 ];
$categories = $args [ 3 ];
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-09-16 16:54:25 +02:00
2006-01-13 20:19:09 +01:00
set_current_user ( 0 , $user_login );
if ( ! current_user_can ( 'edit_post' , $post_ID ) )
2004-09-17 22:53:18 +02:00
return new IXR_Error ( 401 , 'Sorry, you can not edit this post.' );
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
foreach ( $categories as $cat ) {
$catids [] = $cat [ 'categoryId' ];
}
2006-02-12 08:53:23 +01:00
2006-06-06 07:04:41 +02:00
wp_set_post_categories ( $post_ID , $catids );
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
return true ;
}
2004-09-16 16:54:25 +02:00
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
/* mt.supportedMethods ...returns an array of methods supported by this server */
function mt_supportedMethods ( $args ) {
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
$supported_methods = array ();
foreach ( $this -> methods as $key => $value ) {
$supported_methods [] = $key ;
}
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
return $supported_methods ;
2004-09-16 16:54:25 +02:00
}
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
/* mt . supportedTextFilters ... returns an empty array because we don ' t
support per - post text filters yet */
function mt_supportedTextFilters ( $args ) {
return array ();
}
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
/* mt.getTrackbackPings ...returns trackbacks sent to a given post */
function mt_getTrackbackPings ( $args ) {
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
global $wpdb ;
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
$post_ID = intval ( $args );
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
$actual_post = wp_get_single_post ( $post_ID , ARRAY_A );
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $actual_post ) {
return new IXR_Error ( 404 , 'Sorry, no such post.' );
}
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
$comments = $wpdb -> get_results ( " SELECT comment_author_url, comment_content, comment_author_IP, comment_type FROM $wpdb->comments WHERE comment_post_ID = $post_ID " );
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $comments ) {
return array ();
}
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
$trackback_pings = array ();
foreach ( $comments as $comment ) {
2005-01-07 00:10:28 +01:00
if ( 'trackback' == $comment -> comment_type ) {
$content = $comment -> comment_content ;
2004-09-17 22:53:18 +02:00
$title = substr ( $content , 8 , ( strpos ( $content , '</strong>' ) - 8 ));
$trackback_pings [] = array (
'pingTitle' => $title ,
'pingURL' => $comment -> comment_author_url ,
'pingIP' => $comment -> comment_author_IP
);
2004-09-16 16:54:25 +02:00
}
2004-09-17 22:53:18 +02:00
}
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
return $trackback_pings ;
2004-09-16 16:54:25 +02:00
}
2004-09-17 22:53:18 +02:00
/* mt.publishPost ...sets a post's publish status to 'publish' */
function mt_publishPost ( $args ) {
2004-09-16 16:54:25 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$post_ID = $args [ 0 ];
$user_login = $args [ 1 ];
$user_pass = $args [ 2 ];
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
if ( ! $this -> login_pass_ok ( $user_login , $user_pass )) {
return $this -> error ;
}
2004-09-16 16:54:25 +02:00
2006-01-13 20:19:09 +01:00
set_current_user ( 0 , $user_login );
if ( ! current_user_can ( 'edit_post' , $post_ID ) )
2004-09-17 22:53:18 +02:00
return new IXR_Error ( 401 , 'Sorry, you can not edit this post.' );
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
$postdata = wp_get_single_post ( $post_ID , ARRAY_A );
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
$postdata [ 'post_status' ] = 'publish' ;
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
// retain old cats
2006-06-06 07:04:41 +02:00
$cats = wp_get_post_categories ( $post_ID );
2004-09-17 22:53:18 +02:00
$postdata [ 'post_category' ] = $cats ;
2005-06-29 00:16:27 +02:00
$this -> escape ( $postdata );
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
$result = wp_update_post ( $postdata );
2004-09-16 16:54:25 +02:00
2004-09-17 22:53:18 +02:00
return $result ;
}
2004-09-16 16:54:25 +02:00
2004-09-16 15:26:06 +02:00
2004-09-17 22:53:18 +02:00
/* PingBack functions
* specs on www . hixie . ch / specs / pingback / pingback
*/
2004-09-16 15:26:06 +02:00
2004-09-17 22:53:18 +02:00
/* pingback.ping gets a pingback and registers it */
function pingback_ping ( $args ) {
global $wpdb , $wp_version ;
2004-09-16 15:26:06 +02:00
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$pagelinkedfrom = $args [ 0 ];
$pagelinkedto = $args [ 1 ];
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
$title = '' ;
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
$pagelinkedfrom = str_replace ( '&' , '&' , $pagelinkedfrom );
$pagelinkedto = preg_replace ( '#&([^amp\;])#is' , '&$1' , $pagelinkedto );
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
$error_code = - 1 ;
2004-09-17 22:48:43 +02:00
2004-09-17 22:53:18 +02:00
// Check if the page linked to is in our site
2006-08-30 23:46:31 +02:00
$pos1 = strpos ( $pagelinkedto , str_replace ( array ( 'http://www.' , 'http://' , 'https://www.' , 'https://' ), '' , get_option ( 'home' )));
2005-06-04 12:15:36 +02:00
if ( ! $pos1 )
return new IXR_Error ( 0 , 'Is there no link to us?' );
2004-09-16 15:26:06 +02:00
// let's find which post is linked to
2004-09-17 22:53:18 +02:00
// FIXME: does url_to_postid() cover all these cases already?
// if so, then let's use it and drop the old code.
2004-09-16 15:26:06 +02:00
$urltest = parse_url ( $pagelinkedto );
if ( $post_ID = url_to_postid ( $pagelinkedto )) {
$way = 'url_to_postid()' ;
2004-09-17 22:53:18 +02:00
} elseif ( preg_match ( '#p/[0-9]{1,}#' , $urltest [ 'path' ], $match )) {
2004-09-16 15:26:06 +02:00
// the path defines the post_ID (archives/p/XXXX)
$blah = explode ( '/' , $match [ 0 ]);
$post_ID = $blah [ 1 ];
$way = 'from the path' ;
} elseif ( preg_match ( '#p=[0-9]{1,}#' , $urltest [ 'query' ], $match )) {
// the querystring defines the post_ID (?p=XXXX)
$blah = explode ( '=' , $match [ 0 ]);
$post_ID = $blah [ 1 ];
$way = 'from the querystring' ;
} elseif ( isset ( $urltest [ 'fragment' ])) {
// an #anchor is there, it's either...
if ( intval ( $urltest [ 'fragment' ])) {
// ...an integer #XXXX (simpliest case)
$post_ID = $urltest [ 'fragment' ];
$way = 'from the fragment (numeric)' ;
} elseif ( preg_match ( '/post-[0-9]+/' , $urltest [ 'fragment' ])) {
// ...a post id in the form 'post-###'
$post_ID = preg_replace ( '/[^0-9]+/' , '' , $urltest [ 'fragment' ]);
$way = 'from the fragment (post-###)' ;
} elseif ( is_string ( $urltest [ 'fragment' ])) {
// ...or a string #title, a little more complicated
2005-06-04 12:15:36 +02:00
$title = preg_replace ( '/[^a-z0-9]/i' , '.' , $urltest [ 'fragment' ]);
2004-09-16 15:26:06 +02:00
$sql = " SELECT ID FROM $wpdb->posts WHERE post_title RLIKE ' $title ' " ;
2004-09-17 22:53:18 +02:00
if ( ! ( $post_ID = $wpdb -> get_var ( $sql )) ) {
// returning unknown error '0' is better than die()ing
return new IXR_Error ( 0 , '' );
}
2004-09-16 15:26:06 +02:00
$way = 'from the fragment (title)' ;
}
} else {
// TODO: Attempt to extract a post ID from the given URL
2006-08-30 18:40:17 +02:00
return new IXR_Error ( 33 , 'The specified target URL cannot be used as a target. It either doesn\'t exist, or it is not a pingback-enabled resource.' );
2004-09-16 15:26:06 +02:00
}
2005-06-04 12:15:36 +02:00
$post_ID = ( int ) $post_ID ;
2004-09-16 15:26:06 +02:00
2006-08-30 18:40:17 +02:00
logIO ( " O " , " (PB) URL=' $pagelinkedto ' ID=' $post_ID ' Found=' $way ' " );
2004-09-16 15:26:06 +02:00
2005-06-30 18:07:42 +02:00
$post = get_post ( $post_ID );
2004-09-16 15:26:06 +02:00
2005-06-04 12:15:36 +02:00
if ( ! $post ) // Post_ID not found
2006-08-30 18:40:17 +02:00
return new IXR_Error ( 33 , 'The specified target URL cannot be used as a target. It either doesn\'t exist, or it is not a pingback-enabled resource.' );
2004-09-17 22:53:18 +02:00
2005-11-05 17:20:09 +01:00
if ( $post_ID == url_to_postid ( $pagelinkedfrom ) )
2006-08-30 18:40:17 +02:00
return new IXR_Error ( 0 , 'The source URL and the target URL cannot both point to the same resource.' );
2005-11-05 17:20:09 +01:00
2005-06-04 12:15:36 +02:00
// Check if pings are on
if ( 'closed' == $post -> ping_status )
2006-08-30 18:40:17 +02:00
return new IXR_Error ( 33 , 'The specified target URL cannot be used as a target. It either doesn\'t exist, or it is not a pingback-enabled resource.' );
2004-09-17 22:53:18 +02:00
// Let's check that the remote site didn't already pingback this entry
2004-12-12 19:27:31 +01:00
$result = $wpdb -> get_results ( " SELECT * FROM $wpdb->comments WHERE comment_post_ID = ' $post_ID ' AND comment_author_url = ' $pagelinkedfrom ' " );
2004-09-17 22:53:18 +02:00
2005-06-04 12:15:36 +02:00
if ( $wpdb -> num_rows ) // We already have a Pingback from this URL
2004-09-17 22:53:18 +02:00
return new IXR_Error ( 48 , 'The pingback has already been registered.' );
2004-09-16 15:26:06 +02:00
2004-09-17 22:53:18 +02:00
// very stupid, but gives time to the 'from' server to publish !
sleep ( 1 );
2004-09-16 15:26:06 +02:00
2004-09-17 22:53:18 +02:00
// Let's check the remote site
2005-05-03 09:52:11 +02:00
$linea = wp_remote_fopen ( $pagelinkedfrom );
if ( ! $linea )
2006-08-30 18:40:17 +02:00
return new IXR_Error ( 16 , 'The source URL does not exist.' );
2004-09-16 17:20:39 +02:00
2004-09-17 22:53:18 +02:00
// Work around bug in strip_tags():
2005-06-04 12:15:36 +02:00
$linea = str_replace ( '<!DOC' , '<DOC' , $linea );
$linea = preg_replace ( '/[\s\r\n\t]+/' , ' ' , $linea ); // normalize spaces
$linea = preg_replace ( " / <(h1|h2|h3|h4|h5|h6|p|th|td|li|dt|dd|pre|caption|input|textarea|button|body)[^>]*>/ " , " \n \n " , $linea );
2004-09-17 22:53:18 +02:00
2005-06-04 12:15:36 +02:00
preg_match ( '|<title>([^<]*?)</title>|is' , $linea , $matchtitle );
$title = $matchtitle [ 1 ];
if ( empty ( $title ) )
return new IXR_Error ( 32 , 'We cannot find a title on that page.' );
2004-09-17 22:53:18 +02:00
2005-06-04 12:15:36 +02:00
$linea = strip_tags ( $linea , '<a>' ); // just keep the tag we need
2004-09-17 22:53:18 +02:00
2005-06-04 12:15:36 +02:00
$p = explode ( " \n \n " , $linea );
2006-02-12 08:53:23 +01:00
2005-06-04 12:15:36 +02:00
$sem_regexp_pb = " /( \\ /| \\ \ | \ *| \ ?| \ +| \ .| \ ^| \\ $ | \ (| \ )| \ [| \ ]| \ || \ { | \ })/ " ;
$sem_regexp_fix = " \\ \\ $ 1 " ;
$link = preg_replace ( $sem_regexp_pb , $sem_regexp_fix , $pagelinkedfrom );
2006-02-12 08:53:23 +01:00
2005-06-04 12:15:36 +02:00
$finished = false ;
foreach ( $p as $para ) {
if ( $finished )
continue ;
if ( strstr ( $para , $pagelinkedto ) ) {
$context = preg_replace ( " /.*<a[^>]+ " . $link . " [^>]*>([^>]+)< \ /a>.*/ " , " $ 1 " , $para );
$excerpt = strip_tags ( $para );
$excerpt = trim ( $excerpt );
$use = preg_quote ( $context );
$excerpt = preg_replace ( " |.*? \ s(. { 0,100} $use . { 0,100}) \ s|s " , " $ 1 " , $excerpt );
$finished = true ;
}
2004-09-17 22:53:18 +02:00
}
2005-08-03 02:30:40 +02:00
if ( empty ( $context ) ) // URL pattern not found
2006-08-30 18:40:17 +02:00
return new IXR_Error ( 17 , 'The source URL does not contain a link to the target URL, and so cannot be used as a source.' );
2005-08-03 02:30:40 +02:00
2004-09-17 22:53:18 +02:00
$pagelinkedfrom = preg_replace ( '#&([^amp\;])#is' , '&$1' , $pagelinkedfrom );
2005-06-04 12:15:36 +02:00
$context = '[...] ' . wp_specialchars ( $excerpt ) . ' [...]' ;
2004-09-17 22:53:18 +02:00
$original_pagelinkedfrom = $pagelinkedfrom ;
2005-07-05 22:47:22 +02:00
$pagelinkedfrom = $wpdb -> escape ( $pagelinkedfrom );
2004-09-17 22:53:18 +02:00
$original_title = $title ;
2006-07-27 00:18:36 +02:00
$comment_post_ID = ( int ) $post_ID ;
2004-09-22 21:45:29 +02:00
$comment_author = $title ;
2006-07-27 00:18:36 +02:00
$this -> escape ( $comment_author );
2004-09-22 21:45:29 +02:00
$comment_author_url = $pagelinkedfrom ;
$comment_content = $context ;
2006-07-27 00:18:36 +02:00
$this -> escape ( $comment_content );
2004-09-22 21:45:29 +02:00
$comment_type = 'pingback' ;
2004-09-17 22:53:18 +02:00
2004-09-22 21:45:29 +02:00
$commentdata = compact ( 'comment_post_ID' , 'comment_author' , 'comment_author_url' , 'comment_content' , 'comment_type' );
2004-09-27 14:42:36 +02:00
wp_new_comment ( $commentdata );
2004-12-16 03:57:05 +01:00
do_action ( 'pingback_post' , $wpdb -> insert_id );
2006-02-12 08:53:23 +01:00
2004-09-17 22:53:18 +02:00
return " Pingback from $pagelinkedfrom to $pagelinkedto registered. Keep the web talking! :-) " ;
}
/* pingback . extensions . getPingbacks returns an array of URLs
that pingbacked the given URL
specs on http :// www . aquarionics . com / misc / archives / blogite / 0198. html */
function pingback_extensions_getPingbacks ( $args ) {
global $wpdb ;
2005-06-29 00:16:27 +02:00
$this -> escape ( $args );
2004-09-17 22:53:18 +02:00
$url = $args ;
$post_ID = url_to_postid ( $url );
if ( ! $post_ID ) {
// We aren't sure that the resource is available and/or pingback enabled
2006-08-30 18:40:17 +02:00
return new IXR_Error ( 33 , 'The specified target URL cannot be used as a target. It either doesn\'t exist, or it is not a pingback-enabled resource.' );
2004-09-17 22:53:18 +02:00
}
$actual_post = wp_get_single_post ( $post_ID , ARRAY_A );
if ( ! $actual_post ) {
// No such post = resource not found
2006-08-30 18:40:17 +02:00
return new IXR_Error ( 32 , 'The specified target URL does not exist.' );
2004-09-17 22:53:18 +02:00
}
$comments = $wpdb -> get_results ( " SELECT comment_author_url, comment_content, comment_author_IP, comment_type FROM $wpdb->comments WHERE comment_post_ID = $post_ID " );
if ( ! $comments ) {
return array ();
}
$pingbacks = array ();
foreach ( $comments as $comment ) {
2005-01-07 00:10:28 +01:00
if ( 'pingback' == $comment -> comment_type )
2004-09-17 22:53:18 +02:00
$pingbacks [] = $comment -> comment_author_url ;
2004-09-16 17:20:39 +02:00
}
2004-09-17 22:53:18 +02:00
return $pingbacks ;
2004-09-16 17:20:39 +02:00
}
2004-05-23 18:42:23 +02:00
}
2004-05-23 06:02:53 +02:00
2004-09-17 22:53:18 +02:00
$wp_xmlrpc_server = new wp_xmlrpc_server ();
2006-01-13 20:19:09 +01:00
?>