/* * XmlRpcClientFactory.java * StockPlay - Fabriek voor het aanmaken van XmlRPC clients. * * Copyright (c) 2010 StockPlay development team * All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ package com.kapti.client; import com.kapti.client.user.User; import com.kapti.exceptions.NotLoggedInException; import java.net.MalformedURLException; import java.net.URL; import java.util.ResourceBundle; import java.util.logging.Level; import org.apache.log4j.Logger; import org.apache.xmlrpc.XmlRpcException; import org.apache.xmlrpc.client.XmlRpcClient; import org.apache.xmlrpc.client.XmlRpcClientConfigImpl; /** * * \brief Fabriek voor het aanmaken van XmlRPC clients. * */ public class SPClientFactory { static Logger logger = Logger.getLogger(SPClientFactory.class); private static String sessionID = null; private static final ResourceBundle settings = ResourceBundle.getBundle("com/kapti/client/settings"); private static String serverURL = settings.getString("server"); public static String getSessionID() { return sessionID; } public static void setSessionID(String sessionid) { SPClientFactory.sessionID = sessionid; } public static String getServerURL() { return serverURL; } public static void setServerURL(String serverURL) { SPClientFactory.serverURL = serverURL; } public static XmlRpcClient getPrivateClient() throws NotLoggedInException { if (sessionID == null) { throw new NotLoggedInException("No sessionID found!"); } try { XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl(); config.setServerURL(new URL(serverURL)); config.setGzipCompressing(settings.getString("gzip").equals("1")); config.setGzipRequesting(settings.getString("gzip").equals("1")); config.setEnabledForExtensions(true); config.setBasicUserName(sessionID); XmlRpcClient client = new XmlRpcClient(); client.setConfig(config); return client; } catch (MalformedURLException ex) { logger.error("Error while creating XML-RPC-client", ex); return null; } } public static XmlRpcClient getPublicClient() { try { XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl(); config.setServerURL(new URL(serverURL)); config.setGzipCompressing(settings.getString("gzip").equals("1")); config.setGzipRequesting(settings.getString("gzip").equals("1")); config.setEnabledForExtensions(true); XmlRpcClient client = new XmlRpcClient(); client.setConfig(config); return client; } catch (MalformedURLException ex) { logger.error("Error while creating XML-RPC-client", ex); return null; } } public static boolean checkConnectivity() { try { XmlRpcClient client = getPublicClient(); return (Integer) client.execute("User.Hello", new Object[]{"Administration", 1}) == 1; } catch (XmlRpcException ex) { java.util.logging.Logger.getLogger(SPClientFactory.class.getName()).log(Level.SEVERE, null, ex); return false; } } }