X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/a941af2ec2b720161977b0bb388ce21cdca4ebd4..8ec6915a58779eb43f1446100cb6fa477c206529:/src/eu/alefzero/owncloud/syncadapter/AbstractOwnCloudSyncAdapter.java
diff --git a/src/eu/alefzero/owncloud/syncadapter/AbstractOwnCloudSyncAdapter.java b/src/eu/alefzero/owncloud/syncadapter/AbstractOwnCloudSyncAdapter.java
index 3c1caf95..e4bacf29 100644
--- a/src/eu/alefzero/owncloud/syncadapter/AbstractOwnCloudSyncAdapter.java
+++ b/src/eu/alefzero/owncloud/syncadapter/AbstractOwnCloudSyncAdapter.java
@@ -15,8 +15,9 @@
* along with this program. If not, see .
*
*/
-package eu.alefzero.owncloud.syncadapter;
-
+
+package eu.alefzero.owncloud.syncadapter;
+
import java.io.IOException;
import java.net.UnknownHostException;
import java.util.Date;
@@ -25,8 +26,6 @@ import java.util.LinkedList;
import org.apache.http.HttpHost;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;
-import org.apache.http.auth.AuthScope;
-import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.conn.ConnectionKeepAliveStrategy;
import org.apache.http.impl.auth.BasicScheme;
@@ -46,143 +45,139 @@ import android.text.TextUtils;
import eu.alefzero.owncloud.authenticator.AccountAuthenticator;
import eu.alefzero.webdav.HttpPropFind;
import eu.alefzero.webdav.TreeNode;
-import eu.alefzero.webdav.TreeNode.NodeProperty;
+import eu.alefzero.webdav.WebdavClient;
import eu.alefzero.webdav.WebdavUtils;
-
-/**
- * Base SyncAdapter for OwnCloud
- * Designed to be subclassed for the concreete SyncAdapter, like ConcatsSync, CalendarSync, FileSync etc..
- *
- * @author sassman
- *
- */
-public abstract class AbstractOwnCloudSyncAdapter extends AbstractThreadedSyncAdapter {
-
- private AccountManager accountManager;
- private Account account;
- private ContentProviderClient contentProvider;
- private Date lastUpdated;
-
- private DefaultHttpClient client = null;
- private HttpHost host;
-
- public AbstractOwnCloudSyncAdapter(Context context, boolean autoInitialize) {
- super(context, autoInitialize);
- this.setAccountManager(AccountManager.get(context));
- }
-
- public AccountManager getAccountManager() {
- return accountManager;
- }
-
- public void setAccountManager(AccountManager accountManager) {
- this.accountManager = accountManager;
- }
-
- public Account getAccount() {
- return account;
- }
-
- public void setAccount(Account account) {
- this.account = account;
- }
-
- public ContentProviderClient getContentProvider() {
- return contentProvider;
- }
-
- public void setContentProvider(ContentProviderClient contentProvider) {
- this.contentProvider = contentProvider;
- }
-
- public Date getLastUpdated() {
- return lastUpdated;
- }
-
- public void setLastUpdated(Date lastUpdated) {
- this.lastUpdated = lastUpdated;
- }
-
- protected ConnectionKeepAliveStrategy getKeepAliveStrategy() {
- return new ConnectionKeepAliveStrategy() {
- public long getKeepAliveDuration(HttpResponse response, HttpContext context) {
- // TODO: change keep alive straategy basing on response: ie forbidden/not found/etc
- // should have keep alive 0
- // default return: 5s
- return 5 * 1000;
- }
- };
- }
-
- protected HttpPropFind getPropFindQuery() throws OperationCanceledException, AuthenticatorException, IOException {
- HttpPropFind query = new HttpPropFind(getUri().toString());
- query.setHeader("Content-type", "text/xml");
- query.setHeader("User-Agent", "Android-ownCloud");
- return query;
- }
-
- protected HttpResponse fireRawRequest(HttpRequest query) throws ClientProtocolException, OperationCanceledException, AuthenticatorException, IOException {
- BasicHttpContext httpContext = new BasicHttpContext();
- BasicScheme basicAuth = new BasicScheme();
- httpContext.setAttribute("preemptive-auth", basicAuth);
-
- HttpResponse response = getClient().execute(this.host, query, httpContext);
- return response;
- }
-
- protected TreeNode fireRequest(HttpRequest query) throws ClientProtocolException, OperationCanceledException, AuthenticatorException, IOException {
- HttpResponse response = fireRawRequest(query);
-
- TreeNode root = new TreeNode();
- root.setProperty(TreeNode.NodeProperty.NAME, "/");
- this.parseResponse(response, getUri(), getClient(), this.host, root.getChildList());
- return root;
- }
-
- protected Uri getUri() {
- return Uri.parse(this.getAccountManager().getUserData(getAccount(), AccountAuthenticator.KEY_OC_URL));
- }
-
- private DefaultHttpClient getClient() throws OperationCanceledException, AuthenticatorException, IOException {
- if(this.client == null) {
- String username = getAccount().name.split("@")[0];
- String password = this.getAccountManager().blockingGetAuthToken(getAccount(), AccountAuthenticator.AUTH_TOKEN_TYPE, true);
- if (this.getAccountManager().getUserData(getAccount(), AccountAuthenticator.KEY_OC_URL) == null) {
- throw new UnknownHostException();
- }
- Uri uri = getUri();
-
- int port = (uri.getPort() == -1) ? 80 : uri.getPort();
- this.client = new DefaultHttpClient();
- this.client.getCredentialsProvider().setCredentials(
- new AuthScope(uri.getHost(), port),
- new UsernamePasswordCredentials(username, password)
- );
- this.client.setKeepAliveStrategy(this.getKeepAliveStrategy());
- this.host = new HttpHost(uri.getHost(), port, (uri.getScheme() == "https") ? "https" : "http");
- }
-
- return this.client;
- }
-
- private void parseResponse(HttpResponse resp, Uri uri, DefaultHttpClient client, HttpHost targetHost, LinkedList insertList) throws IOException, OperationCanceledException, AuthenticatorException {
- boolean skipFirst = true;
- for (TreeNode n :WebdavUtils.parseResponseToNodes(resp.getEntity().getContent())) {
- String path = n.stripPathFromFilename(uri.getPath());
- if (skipFirst) {
- skipFirst = false;
- continue;
- }
- insertList.add(n);
-
- if (!TextUtils.isEmpty(n.getProperty(NodeProperty.NAME)) &&
- n.getProperty(NodeProperty.RESOURCE_TYPE).equals("DIR")) {
-
- HttpPropFind method = new HttpPropFind(uri.getPath() + path + n.getProperty(NodeProperty.NAME).replace(" ", "%20") + "/");
- HttpResponse response = fireRawRequest(method);
- parseResponse(response, uri, client, targetHost, n.getChildList());
- }
- }
- }
-
+import eu.alefzero.webdav.TreeNode.NodeProperty;
+
+/**
+ * Base SyncAdapter for OwnCloud
+ * Designed to be subclassed for the concreete SyncAdapter, like ConcatsSync, CalendarSync, FileSync etc..
+ *
+ * @author sassman
+ *
+ */
+public abstract class AbstractOwnCloudSyncAdapter extends AbstractThreadedSyncAdapter {
+
+ private AccountManager accountManager;
+ private Account account;
+ private ContentProviderClient contentProvider;
+ private Date lastUpdated;
+
+ private HttpHost mHost;
+ private WebdavClient mClient = null;
+
+ public AbstractOwnCloudSyncAdapter(Context context, boolean autoInitialize) {
+ super(context, autoInitialize);
+ this.setAccountManager(AccountManager.get(context));
+ }
+
+ public AccountManager getAccountManager() {
+ return accountManager;
+ }
+
+ public void setAccountManager(AccountManager accountManager) {
+ this.accountManager = accountManager;
+ }
+
+ public Account getAccount() {
+ return account;
+ }
+
+ public void setAccount(Account account) {
+ this.account = account;
+ }
+
+ public ContentProviderClient getContentProvider() {
+ return contentProvider;
+ }
+
+ public void setContentProvider(ContentProviderClient contentProvider) {
+ this.contentProvider = contentProvider;
+ }
+
+ public Date getLastUpdated() {
+ return lastUpdated;
+ }
+
+ public void setLastUpdated(Date lastUpdated) {
+ this.lastUpdated = lastUpdated;
+ }
+
+ protected ConnectionKeepAliveStrategy getKeepAliveStrategy() {
+ return new ConnectionKeepAliveStrategy() {
+ public long getKeepAliveDuration(HttpResponse response, HttpContext context) {
+ // TODO: change keep alive straategy basing on response: ie forbidden/not found/etc
+ // should have keep alive 0
+ // default return: 5s
+ return 5 * 1000;
+ }
+ };
+ }
+
+ protected HttpPropFind getPropFindQuery() throws OperationCanceledException, AuthenticatorException, IOException {
+ HttpPropFind query = new HttpPropFind(getUri().toString());
+ query.setHeader("Content-type", "text/xml");
+ query.setHeader("User-Agent", "Android-ownCloud");
+ return query;
+ }
+
+ protected HttpResponse fireRawRequest(HttpRequest query) throws ClientProtocolException, OperationCanceledException, AuthenticatorException, IOException {
+ BasicHttpContext httpContext = new BasicHttpContext();
+ BasicScheme basicAuth = new BasicScheme();
+ httpContext.setAttribute("preemptive-auth", basicAuth);
+
+ HttpResponse response = getClient().execute(mHost, query, httpContext);
+ return response;
+ }
+
+ protected TreeNode fireRequest(HttpRequest query) throws ClientProtocolException, OperationCanceledException, AuthenticatorException, IOException {
+ HttpResponse response = fireRawRequest(query);
+
+ TreeNode root = new TreeNode();
+ root.setProperty(TreeNode.NodeProperty.NAME, "/");
+ this.parseResponse(response, getUri(), getClient(), mHost, root.getChildList());
+ return root;
+ }
+
+ protected Uri getUri() {
+ return Uri.parse(this.getAccountManager().getUserData(getAccount(), AccountAuthenticator.KEY_OC_URL));
+ }
+
+ private DefaultHttpClient getClient() throws OperationCanceledException, AuthenticatorException, IOException {
+ if(mClient == null) {
+ String username = getAccount().name.split("@")[0];
+ String password = this.getAccountManager().blockingGetAuthToken(getAccount(), AccountAuthenticator.AUTH_TOKEN_TYPE, true);
+ if (this.getAccountManager().getUserData(getAccount(), AccountAuthenticator.KEY_OC_URL) == null) {
+ throw new UnknownHostException();
+ }
+ Uri uri = getUri();
+
+ mClient = new WebdavClient(uri);
+ mClient.setCredentials(username, password);
+ mClient.allowUnsignedCertificates();
+ mHost = mClient.getTargetHost();
+ }
+
+ return mClient.getHttpClient();
+ }
+
+ private void parseResponse(HttpResponse resp, Uri uri, DefaultHttpClient client, HttpHost targetHost, LinkedList insertList) throws IOException, OperationCanceledException, AuthenticatorException {
+ boolean skipFirst = true;
+ for (TreeNode n :WebdavUtils.parseResponseToNodes(resp.getEntity().getContent())) {
+ String path = n.stripPathFromFilename(uri.getPath());
+ if (skipFirst) {
+ skipFirst = false;
+ continue;
+ }
+ insertList.add(n);
+
+ if (!TextUtils.isEmpty(n.getProperty(NodeProperty.NAME)) &&
+ n.getProperty(NodeProperty.RESOURCE_TYPE).equals("DIR")) {
+
+ HttpPropFind method = new HttpPropFind(uri.getPath() + path + n.getProperty(NodeProperty.NAME).replace(" ", "%20") + "/");
+ HttpResponse response = fireRawRequest(method);
+ parseResponse(response, uri, client, targetHost, n.getChildList());
+ }
+ }
+ }
}
\ No newline at end of file