⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bloggerapihandler.java

📁 pebble-blog 博客源码博客源码博客源码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * Copyright (c) 2003-2006, Simon Brown * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * *   - Redistributions of source code must retain the above copyright *     notice, this list of conditions and the following disclaimer. * *   - Redistributions in binary form must reproduce the above copyright *     notice, this list of conditions and the following disclaimer in *     the documentation and/or other materials provided with the *     distribution. * *   - Neither the name of Pebble nor the names of its contributors may *     be used to endorse or promote products derived from this software *     without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */package net.sourceforge.pebble.webservice;import net.sourceforge.pebble.domain.*;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;import org.apache.xmlrpc.XmlRpcException;import java.util.*;/** * A handler for the Blogger API (accessed via XML-RPC). * * @author    Simon Brown */public class BloggerAPIHandler extends AbstractAPIHandler {  static final String URL = "url";  static final String BLOG_ID = "blogid";  static final String BLOG_NAME = "blogName";  static final String DATE_CREATED = "dateCreated";  static final String USER_ID = "userId";  static final String POST_ID = "postid";  static final String CONTENT = "content";  static final String TITLE_START_DELIMITER = "<title>";  static final String TITLE_END_DELIMITER = "</title>";  static final String CATEGORY_START_DELIMITER = "<category>";  static final String CATEGORY_END_DELIMITER = "</category>";  static final char BLOG_ID_SEPARATOR = '/';  /** the log used by this class */  private static Log log = LogFactory.getLog(BloggerAPIHandler.class);  /**   * Gets information about the user logging in.   *   * @param appkey    the client application key (ignored)   * @param username  the username used for logging in via XML-RPC   * @param password  the password used for logging in via XML-RPC   * @return  a Hashtable containing user information   * @throws XmlRpcException    if something goes wrong, including an authentication error   */  public Hashtable getUserInfo(String appkey, String username, String password) throws XmlRpcException {    log.debug("BloggerAPI.getUserInfo(" +        appkey + ", " +        username + ", " +        "********)");    authenticate((Blog)null, username, password);    Hashtable ht = new Hashtable();    ht.put("userid", username);    return ht;  }  /**   * Gets a list of the blogs that the specified user can edit. Pabble   * only has the concept of a single blog.   *   * @param appkey    the client application key (ignored)   * @param username  the username used for logging in via XML-RPC   * @param password  the password used for logging in via XML-RPC   * @return  a Vector of Hashtables (an array of structs) representing blogs   * @throws XmlRpcException    if something goes wrong, including an authentication error   */  public Vector getUsersBlogs(String appkey, String username, String password) throws XmlRpcException {    log.debug("BloggerAPI.getUsersBlogs(" +        appkey + ", " +        username + ", " +        "********)");    Collection<Blog> blogs = BlogManager.getInstance().getBlogs();    Vector usersBlogs = new Vector();    for (Blog blog : blogs) {      try {        authenticate(blog, username, password);        Hashtable blogInfo = new Hashtable();        blogInfo.put(URL, blog.getUrl());        blogInfo.put(BLOG_ID, blog.getId());        blogInfo.put(BLOG_NAME, blog.getName());        usersBlogs.add(blogInfo);      } catch (XmlRpcAuthenticationException xmlrpcae) {        // do nothing - means that they didn't authenticate against the blog      }    }    return usersBlogs;  }  /**   * Gets a list of the recent blog entries.   *   * @param appkey    the client application key (ignored)   * @param blogid    the ID of the blog (ignored)   * @param username  the username used for logging in via XML-RPC   * @param password  the password used for logging in via XML-RPC   * @param numberOfPosts   the number of posts to get   * @return  a Vector of Hashtables (an array of structs) representing blog entries   * @throws XmlRpcException    if something goes wrong, including an authentication error   */  public Vector getRecentPosts(String appkey, String blogid, String username, String password, int numberOfPosts) throws XmlRpcException {    log.debug("BloggerAPI.getRecentPosts(" +        appkey + ", " +        blogid + ", " +        username + ", " +        "********)");    Blog blog = getBlogWithBlogId(blogid);    authenticate(blog, username, password);    Vector posts = new Vector();    Collection coll = blog.getRecentBlogEntries(numberOfPosts);    Iterator it = coll.iterator();    BlogEntry entry;    while (it.hasNext()) {      entry = (BlogEntry)it.next();      posts.add(adaptBlogEntry(entry));    }    return posts;  }  /**   * Gets an individual blog entry.   *   * @param appkey    the client application key (ignored)   * @param postid    the ID of the blog (ignored)   * @param username  the username used for logging in via XML-RPC   * @param password  the password used for logging in via XML-RPC   * @return  a Hashtable representing a blog entry   * @throws XmlRpcException    if something goes wrong, including an authentication error   */  public Hashtable getPost(String appkey, String postid, String username, String password) throws XmlRpcException {    log.debug("BloggerAPI.getPost(" +        appkey + ", " +        postid + ", " +        username + ", " +        "********)");    Blog blog = getBlogWithPostId(postid);    postid = getPostId(postid);    authenticate(blog, username, password);    BlogService service = new BlogService();    BlogEntry entry = null;    try {      entry = service.getBlogEntry(blog, postid);    } catch (BlogServiceException e) {      throw new XmlRpcException(0, "Blog entry with ID of " + postid + " was not found.");    }    if (entry != null) {      return adaptBlogEntry(entry);    } else {      throw new XmlRpcException(0, "Blog entry with ID of " + postid + " was not found.");    }  }  /**   * Creates a new blog entry.   *   * @param appkey    the client application key (ignored)   * @param blogid    the ID of the blog (ignored)   * @param username  the username used for logging in via XML-RPC   * @param password  the password used for logging in via XML-RPC   * @param content   the content of the new blog entry   * @param publish   a flag to indicate whether the entry should be published   * @return  a String representing the ID of the new blog entry   * @throws XmlRpcException    if something goes wrong, including an authentication error   */  public String newPost(String appkey, String blogid, String username, String password, String content, boolean publish) throws XmlRpcException {    log.debug("BloggerAPI.newPost(" +        appkey + ", " +        blogid + ", " +        username + ", " +        "********, " +        content + ", " +        publish + ")");    try {      Blog blog = getBlogWithBlogId(blogid);      authenticate(blog, username, password);      BlogEntry blogEntry = new BlogEntry(blog);      populateEntry(blogEntry, content, username);      blogEntry.setPublished(publish);      BlogService service = new BlogService();      service.putBlogEntry(blogEntry);      return formatPostId(blogid, blogEntry.getId());    } catch (BlogServiceException be) {      throw new XmlRpcException(0, be.getMessage());    }  }  /**   * Edits an existing blog entry.   *   * @param appkey    the client application key (ignored)   * @param postid    the ID of the blog entry to be edited   * @param username  the username used for logging in via XML-RPC   * @param password  the password used for logging in via XML-RPC

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -