summaryrefslogtreecommitdiff
path: root/modules/blogapi
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-08-02 22:18:12 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-08-02 22:18:12 +0000
commite545feff3e989edee301975a890aae8794ab954a (patch)
treef2aadb4aacc9ba1846da46f5345fffb690ff9482 /modules/blogapi
parente5353cc4fe7c96fe8f4bae6c74af4919195507a5 (diff)
downloadbrdo-e545feff3e989edee301975a890aae8794ab954a.tar.gz
brdo-e545feff3e989edee301975a890aae8794ab954a.tar.bz2
- #28053: left-over blogapi bugs after xmlrpc library switch
Diffstat (limited to 'modules/blogapi')
-rw-r--r--modules/blogapi/blogapi.module43
1 files changed, 26 insertions, 17 deletions
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module
index 1f5eabef3..0db78efce 100644
--- a/modules/blogapi/blogapi.module
+++ b/modules/blogapi/blogapi.module
@@ -44,6 +44,11 @@ function blogapi_xmlrpc() {
array('boolean', 'string', 'string', 'string', 'string', 'string', 'boolean'),
t('Updates the information about an existing post.')),
array(
+ 'blogger.getPost',
+ 'blogapi_blogger_get_post',
+ array('struct', 'string', 'string', 'string', 'string'),
+ t('Returns information about a specific post.')),
+ array(
'blogger.deletePost',
'blogapi_blogger_delete_post',
array('boolean', 'string', 'string', 'string', 'string', 'boolean'),
@@ -129,7 +134,7 @@ function blogapi_xmlrpc() {
* Blogging API callback. Finds the URL of a user's blog.
*/
-function blogapi_blogger_get_users_blogs() {
+function blogapi_blogger_get_users_blogs($appid, $username, $password) {
$user = blogapi_validate_user($username, $password);
if ($user->uid) {
@@ -281,6 +286,20 @@ function blogapi_blogger_edit_post($appkey, $postid, $username, $password, $cont
}
/**
+ * Blogging API callback. Returns a specified blog node.
+ */
+function blogapi_blogger_get_post($appkey, $postid, $username, $password) {
+ $user = blogapi_validate_user($username, $password);
+ if (!$user->uid) {
+ return blogapi_error($user);
+ }
+
+ $node = node_load($postid);
+
+ return _blogapi_get_post($node, true);
+}
+
+/**
* Blogging API callback. Removes the specified blog node.
*/
function blogapi_blogger_delete_post($appkey, $postid, $username, $password, $content, $publish) {
@@ -321,18 +340,8 @@ function blogapi_metaweblog_edit_post($postid, $username, $password, $content, $
return blogapi_blogger_edit_post('0123456789ABCDEF', $postid, $username, $password, $content, $publish);
}
-/**
- * Blogging API callback. Returns a specified blog node.
- */
function blogapi_metaweblog_get_post($postid, $username, $password) {
- $user = blogapi_validate_user($username, $password);
- if (!$user->uid) {
- return blogapi_error($user);
- }
-
- $node = node_load($postid);
-
- return _blogapi_get_post($node, true);
+ return blogapi_blogger_get_post('01234567890ABCDEF', $postid, $username, $password);
}
/**
@@ -356,7 +365,7 @@ function blogapi_metaweblog_new_media_object($blogid, $username, $password, $fil
}
// Return the successful result.
- return array('url' => file_create_url($file));
+ return array('url' => file_create_url($file), 'struct');
}
/**
* Blogging API callback. Returns a list of the taxonomy terms that can be
@@ -381,7 +390,7 @@ function blogapi_metaweblog_get_category_list($blogid, $username, $password) {
return $categories;
}
-function blogai_metaweblog_get_recent_posts($blogid, $username, $password, $number_of_posts) {
+function blogapi_metaweblog_get_recent_posts($blogid, $username, $password, $number_of_posts) {
return blogapi_blogger_get_recent_posts('0123456789ABCDEF', $blogid, $username, $password, $number_of_posts, TRUE);
}
@@ -429,7 +438,7 @@ function blogapi_mt_set_post_categories($postid, $username, $password, $categori
$nid = $postid;
$terms = array();
foreach ($categories as $category) {
- $terms[] = $category['categoryId']->scalarval();
+ $terms[] = $category['categoryId'];
}
module_invoke('taxonomy', 'node_save', $nid, $terms);
return true;
@@ -505,7 +514,7 @@ function blogapi_validate_user($username, $password) {
global $user;
$user = user_authenticate($username, $password);
-
+
if ($user->uid) {
if (user_access('edit own blog', $user)) {
return $user;
@@ -660,7 +669,7 @@ function _blogapi_mt_extra(&$node, $struct) {
// dateCreated
if ($struct['dateCreated']) {
- $node->created = iso8601_decode($struct['dateCreated'], 1);
+ $node->created = mktime($struct['dateCreated']->hour, $struct['dateCreated']->minute, $struct['dateCreated']->second, $struct['dateCreated']->month, $struct['dateCreated']->day, $struct['dateCreated']->year);
}
if ($was_array) {