serval-dna/java/org/servalproject/servaldna/ServalDClient.java

89 lines
3.3 KiB
Java
Raw Normal View History

2014-06-11 07:51:08 +00:00
/**
* Copyright (C) 2014 Serval Project Inc.
*
* This file is part of Serval Software (http://www.servalproject.org)
*
* Serval Software 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 source code 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 source code; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.servalproject.servaldna;
import org.servalproject.codec.Base64;
import org.servalproject.servaldna.meshms.MeshMSConversationList;
import org.servalproject.servaldna.meshms.MeshMSException;
import org.servalproject.servaldna.meshms.MeshMSMessageList;
2014-06-11 07:51:08 +00:00
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.HttpURLConnection;
2014-06-11 07:51:08 +00:00
import java.net.URL;
import java.net.URLConnection;
public class ServalDClient implements ServalDHttpConnectionFactory
{
private final int httpPort;
private final String restfulUsername;
private final String restfulPassword;
2014-06-11 07:51:08 +00:00
public ServalDClient(int httpPort, String restfulUsername, String restfulPassword) throws ServalDInterfaceException {
if (httpPort < 1 || httpPort > 65535)
throw new ServalDInterfaceException("invalid HTTP port number: " + httpPort);
if (restfulUsername == null)
throw new ServalDInterfaceException("invalid HTTP username");
if (restfulPassword == null)
throw new ServalDInterfaceException("invalid HTTP password");
this.httpPort = httpPort;
this.restfulUsername = restfulUsername;
this.restfulPassword = restfulPassword;
2014-06-11 07:51:08 +00:00
}
2014-06-17 06:34:30 +00:00
public MeshMSConversationList meshmsListConversations(SubscriberId sid) throws ServalDInterfaceException, IOException, MeshMSException
2014-06-11 07:51:08 +00:00
{
MeshMSConversationList list = new MeshMSConversationList(this, sid);
list.connect();
return list;
}
2014-06-17 06:34:30 +00:00
public MeshMSMessageList meshmsListMessages(SubscriberId sid1, SubscriberId sid2) throws IOException, ServalDInterfaceException, MeshMSException
{
MeshMSMessageList list = new MeshMSMessageList(this, sid1, sid2);
list.connect();
return list;
}
2014-06-11 07:51:08 +00:00
// interface ServalDHttpConnectionFactory
public HttpURLConnection newServalDHttpConnection(String path) throws ServalDInterfaceException, IOException
{
URL url = new URL("http", "localhost", httpPort, path);
URLConnection uconn = url.openConnection();
HttpURLConnection conn;
try {
conn = (HttpURLConnection) uconn;
}
catch (ClassCastException e) {
throw new ServalDInterfaceException("URL.openConnection() returned a " + uconn.getClass().getName() + ", expecting a HttpURLConnection", e);
}
conn.setAllowUserInteraction(false);
try {
conn.addRequestProperty("Authorization", "Basic " + Base64.encode((restfulUsername + ":" + restfulPassword).getBytes("US-ASCII")));
}
catch (UnsupportedEncodingException e) {
throw new ServalDInterfaceException("invalid RESTful password", e);
}
return conn;
}
}