X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/99d52af203f63a5dd3d43626f569ac88c5ac9b14..5a22c7e79f1a53ccdbae04327e6ac500f3676a67:/src/com/owncloud/android/files/services/InstantUploadService.java diff --git a/src/com/owncloud/android/files/services/InstantUploadService.java b/src/com/owncloud/android/files/services/InstantUploadService.java index a0b5b779..8ec0a8d0 100644 --- a/src/com/owncloud/android/files/services/InstantUploadService.java +++ b/src/com/owncloud/android/files/services/InstantUploadService.java @@ -1,9 +1,10 @@ /* ownCloud Android client application * Copyright (C) 2012 Bartek Przybylski + * Copyright (C) 2012-2013 ownCloud Inc. * * 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 + * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, @@ -18,26 +19,18 @@ package com.owncloud.android.files.services; -import java.io.IOException; import java.util.HashMap; import java.util.LinkedList; import java.util.List; -import org.apache.commons.httpclient.HttpException; -import org.apache.jackrabbit.webdav.client.methods.MkColMethod; - -import com.owncloud.android.AccountUtils; -import com.owncloud.android.authenticator.AccountAuthenticator; -import com.owncloud.android.utils.OwnCloudClientUtils; -import com.owncloud.android.utils.OwnCloudVersion; +import com.owncloud.android.Log_OC; +import com.owncloud.android.network.OwnCloudClientUtils; import eu.alefzero.webdav.WebdavClient; import android.accounts.Account; -import android.accounts.AccountManager; import android.app.Service; import android.content.Intent; -import android.net.Uri; import android.os.IBinder; import android.util.Log; @@ -48,23 +41,23 @@ public class InstantUploadService extends Service { public static String KEY_MIME_TYPE = "KEY_MIMETYPE"; public static String KEY_DISPLAY_NAME = "KEY_FILENAME"; public static String KEY_ACCOUNT = "KEY_ACCOUNT"; - + private static String TAG = "InstantUploadService"; - private static String INSTANT_UPLOAD_DIR = "/InstantUpload"; + // TODO make it configurable over the settings dialog + public static String INSTANT_UPLOAD_DIR = "/InstantUpload"; private UploaderRunnable mUploaderRunnable; - + @Override public IBinder onBind(Intent arg0) { return null; } - + @Override public int onStartCommand(Intent intent, int flags, int startId) { - if (intent == null || - !intent.hasExtra(KEY_ACCOUNT) || !intent.hasExtra(KEY_DISPLAY_NAME) || - !intent.hasExtra(KEY_FILE_PATH) || !intent.hasExtra(KEY_FILE_SIZE) || - !intent.hasExtra(KEY_MIME_TYPE)) { - Log.w(TAG, "Not all required information was provided, abording"); + if (intent == null || !intent.hasExtra(KEY_ACCOUNT) || !intent.hasExtra(KEY_DISPLAY_NAME) + || !intent.hasExtra(KEY_FILE_PATH) || !intent.hasExtra(KEY_FILE_SIZE) + || !intent.hasExtra(KEY_MIME_TYPE)) { + Log_OC.w(TAG, "Not all required information was provided, abording"); return Service.START_NOT_STICKY; } @@ -82,7 +75,7 @@ public class InstantUploadService extends Service { // starting new thread for new download doesnt seems like a good idea // maybe some thread pool or single background thread would be better - Log.d(TAG, "Starting instant upload thread"); + Log_OC.d(TAG, "Starting instant upload thread"); new Thread(mUploaderRunnable).start(); return Service.START_STICKY; @@ -136,10 +129,12 @@ public class InstantUploadService extends Service { WebdavClient wdc = OwnCloudClientUtils.createOwnCloudClient(account, getApplicationContext()); - int status = 0; - wdc.createDirectory(INSTANT_UPLOAD_DIR); - Log.e(TAG, "mkcol returned " + status); - wdc.putFile(filepath, INSTANT_UPLOAD_DIR + "/" + filename, mimetype); + wdc.createDirectory(INSTANT_UPLOAD_DIR); // fail could just mean that it already exists; put will be tried anyway + try { + wdc.putFile(filepath, INSTANT_UPLOAD_DIR + "/" + filename, mimetype); + } catch (Exception e) { + // nothing to do; this service is deprecated, indeed + } } } }