WebdavClient.java 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /* ownCloud Android client application
  2. * Copyright (C) 2011 Bartek Przybylski
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. */
  18. package eu.alefzero.webdav;
  19. import java.io.BufferedInputStream;
  20. import java.io.File;
  21. import java.io.FileOutputStream;
  22. import java.io.IOException;
  23. import org.apache.commons.httpclient.Credentials;
  24. import org.apache.commons.httpclient.HttpClient;
  25. import org.apache.commons.httpclient.HttpMethod;
  26. import org.apache.commons.httpclient.UsernamePasswordCredentials;
  27. import org.apache.commons.httpclient.auth.AuthScope;
  28. import org.apache.commons.httpclient.methods.HeadMethod;
  29. import org.apache.http.HttpHost;
  30. import org.apache.http.HttpResponse;
  31. import org.apache.http.HttpStatus;
  32. import org.apache.http.HttpVersion;
  33. import org.apache.http.client.methods.HttpGet;
  34. import org.apache.http.client.methods.HttpHead;
  35. import org.apache.http.client.methods.HttpPut;
  36. import org.apache.http.conn.ClientConnectionManager;
  37. import org.apache.http.conn.params.ConnManagerPNames;
  38. import org.apache.http.conn.params.ConnPerRouteBean;
  39. import org.apache.http.conn.scheme.PlainSocketFactory;
  40. import org.apache.http.conn.scheme.Scheme;
  41. import org.apache.http.conn.scheme.SchemeRegistry;
  42. import org.apache.http.conn.ssl.SSLSocketFactory;
  43. import org.apache.http.entity.FileEntity;
  44. import org.apache.http.impl.auth.BasicScheme;
  45. import org.apache.http.impl.client.DefaultHttpClient;
  46. import org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager;
  47. import org.apache.http.params.BasicHttpParams;
  48. import org.apache.http.params.HttpParams;
  49. import org.apache.http.params.HttpProtocolParams;
  50. import org.apache.http.protocol.BasicHttpContext;
  51. import eu.alefzero.owncloud.authenticator.EasySSLSocketFactory;
  52. import eu.alefzero.webdav.HttpMkCol;
  53. import android.net.Uri;
  54. import android.util.Log;
  55. public class WebdavClient extends HttpClient {
  56. private DefaultHttpClient mHttpClient;
  57. private BasicHttpContext mHttpContext;
  58. private HttpHost mTargetHost;
  59. private SchemeRegistry mSchemeRegistry;
  60. private Uri mUri;
  61. private Credentials mCredentials;
  62. final private static String TAG = "WebdavClient";
  63. public DefaultHttpClient getHttpClient() {
  64. return mHttpClient;
  65. }
  66. public HttpHost getTargetHost() {
  67. return mTargetHost;
  68. }
  69. public WebdavClient(Uri uri) {
  70. mUri = uri;
  71. mSchemeRegistry = new SchemeRegistry();
  72. setupHttpClient();
  73. }
  74. public void setCredentials(String username, String password) {
  75. // determine default port for http or https
  76. int targetPort = mTargetHost.getPort() == -1 ?
  77. ( mUri.getScheme().equals("https") ? 443 : 80)
  78. : mUri.getPort();
  79. getParams().setAuthenticationPreemptive(true);
  80. getState().setCredentials(AuthScope.ANY, getCredentials(username, password));
  81. }
  82. private Credentials getCredentials(String username, String password) {
  83. if (mCredentials == null)
  84. mCredentials = new UsernamePasswordCredentials(username, password);
  85. return mCredentials;
  86. }
  87. public void allowUnsignedCertificates() {
  88. // https
  89. mSchemeRegistry.register(new Scheme("https", new EasySSLSocketFactory(), 443));
  90. }
  91. public boolean downloadFile(String filepath, File targetPath) {
  92. HttpGet get = new HttpGet(mUri.toString() + filepath.replace(" ", "%20"));
  93. get.setHeader("Host", mUri.getHost());
  94. get.setHeader("User-Agent", "Android-ownCloud");
  95. try {
  96. HttpResponse response = mHttpClient.execute(mTargetHost, get, mHttpContext);
  97. if (response.getStatusLine().getStatusCode() != HttpStatus.SC_OK) {
  98. return false;
  99. }
  100. BufferedInputStream bis = new BufferedInputStream(response.getEntity().getContent());
  101. FileOutputStream fos = new FileOutputStream(targetPath);
  102. byte[] bytes = new byte[512];
  103. int readResult;
  104. while ((readResult = bis.read(bytes)) != -1) fos.write(bytes, 0, readResult);
  105. } catch (IOException e) {
  106. e.printStackTrace();
  107. return false;
  108. }
  109. return true;
  110. }
  111. public boolean putFile(String localFile,
  112. String remoteTarget,
  113. String contentType) {
  114. boolean result = true;
  115. HttpPut method = new HttpPut(mUri.toString() + remoteTarget.replace(" ", "%20"));
  116. method.setHeader("Content-type", contentType);
  117. method.setHeader("Host", mUri.getHost());
  118. method.setHeader("User-Agent", "Android-ownCloud");
  119. try {
  120. final FileEntity fileEntity = new FileEntity(new File(localFile), contentType);
  121. method.setEntity(fileEntity);
  122. Log.i(TAG, "executing:" + method.getRequestLine().toString());
  123. mHttpClient.execute(mTargetHost, method, mHttpContext);
  124. /*mHandler.post(new Runnable() {
  125. public void run() {
  126. Uploader.this.PartialupdateUpload(c.getString(c.getColumnIndex(Media.DATA)),
  127. c.getString(c.getColumnIndex(Media.DISPLAY_NAME)),
  128. mUploadPath + (mUploadPath.equals("/")?"":"/"),
  129. fileEntity.getContentType().getValue(),
  130. fileEntity.getContentLength()+"");
  131. }
  132. });
  133. Log.i(TAG, "Uploading, done");
  134. */
  135. Log.i(TAG, "Uploading, done");
  136. } catch (final Exception e) {
  137. Log.i(TAG, ""+e.getMessage());
  138. result = false;
  139. }
  140. return result;
  141. }
  142. public int tryToLogin() {
  143. int r = 0;
  144. HeadMethod head = new HeadMethod(mUri.toString());
  145. try {
  146. r = executeMethod(head);
  147. } catch (Exception e) {
  148. Log.e(TAG, "Error: " + e.getMessage());
  149. }
  150. return r;
  151. }
  152. public boolean createDirectory(String path) {
  153. HttpMkCol method = new HttpMkCol(mUri.toString() + path + "/");
  154. method.setHeader("User-Agent", "Android-ownCloud");
  155. try {
  156. mHttpClient.execute(mTargetHost, method, mHttpContext);
  157. Log.i(TAG, "Creating dir completed");
  158. } catch (final Exception e) {
  159. e.printStackTrace();
  160. return false;
  161. }
  162. return true;
  163. }
  164. private void setupHttpClient() {
  165. // http scheme
  166. mSchemeRegistry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
  167. mSchemeRegistry.register(new Scheme("https", SSLSocketFactory.getSocketFactory(), 443));
  168. HttpParams params = new BasicHttpParams();
  169. params.setParameter(ConnManagerPNames.MAX_TOTAL_CONNECTIONS, 30);
  170. params.setParameter(ConnManagerPNames.MAX_CONNECTIONS_PER_ROUTE, new ConnPerRouteBean(30));
  171. params.setParameter(HttpProtocolParams.USE_EXPECT_CONTINUE, false);
  172. HttpProtocolParams.setVersion(params, HttpVersion.HTTP_1_1);
  173. mHttpContext = new BasicHttpContext();
  174. ClientConnectionManager cm = new ThreadSafeClientConnManager(params, mSchemeRegistry);
  175. int port = mUri.getPort() == -1 ?
  176. mUri.getScheme().equals("https") ? 443 : 80
  177. : mUri.getPort();
  178. mTargetHost = new HttpHost(mUri.getHost(), port, mUri.getScheme());
  179. mHttpClient = new DefaultHttpClient(cm, params);
  180. }
  181. }