FileUploader.java 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012 Bartek Przybylski
  3. * Copyright (C) 2012-2013 ownCloud Inc.
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2,
  7. * as published by the Free Software Foundation.
  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 com.owncloud.android.files.services;
  19. import java.io.File;
  20. import java.io.IOException;
  21. import java.util.AbstractList;
  22. import java.util.HashMap;
  23. import java.util.Iterator;
  24. import java.util.Map;
  25. import java.util.Vector;
  26. import java.util.concurrent.ConcurrentHashMap;
  27. import java.util.concurrent.ConcurrentMap;
  28. import android.accounts.Account;
  29. import android.accounts.AccountManager;
  30. import android.accounts.AccountsException;
  31. import android.app.NotificationManager;
  32. import android.app.PendingIntent;
  33. import android.app.Service;
  34. import android.content.Intent;
  35. import android.os.Binder;
  36. import android.os.Handler;
  37. import android.os.HandlerThread;
  38. import android.os.IBinder;
  39. import android.os.Looper;
  40. import android.os.Message;
  41. import android.os.Process;
  42. import android.support.v4.app.NotificationCompat;
  43. import android.webkit.MimeTypeMap;
  44. import com.owncloud.android.R;
  45. import com.owncloud.android.authentication.AccountUtils;
  46. import com.owncloud.android.authentication.AuthenticatorActivity;
  47. import com.owncloud.android.datamodel.FileDataStorageManager;
  48. import com.owncloud.android.datamodel.OCFile;
  49. import com.owncloud.android.db.DbHandler;
  50. import com.owncloud.android.lib.common.OwnCloudAccount;
  51. import com.owncloud.android.lib.common.OwnCloudClient;
  52. import com.owncloud.android.lib.common.OwnCloudClientManagerFactory;
  53. import com.owncloud.android.lib.common.accounts.AccountUtils.Constants;
  54. import com.owncloud.android.lib.common.network.OnDatatransferProgressListener;
  55. import com.owncloud.android.lib.common.operations.RemoteOperation;
  56. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  57. import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
  58. import com.owncloud.android.lib.common.utils.Log_OC;
  59. import com.owncloud.android.lib.resources.files.ExistenceCheckRemoteOperation;
  60. import com.owncloud.android.lib.resources.files.FileUtils;
  61. import com.owncloud.android.lib.resources.files.ReadRemoteFileOperation;
  62. import com.owncloud.android.lib.resources.files.RemoteFile;
  63. import com.owncloud.android.lib.resources.status.OwnCloudVersion;
  64. import com.owncloud.android.notifications.NotificationBuilderWithProgressBar;
  65. import com.owncloud.android.notifications.NotificationDelayer;
  66. import com.owncloud.android.operations.CreateFolderOperation;
  67. import com.owncloud.android.operations.UploadFileOperation;
  68. import com.owncloud.android.operations.common.SyncOperation;
  69. import com.owncloud.android.ui.activity.FileActivity;
  70. import com.owncloud.android.ui.activity.FileDisplayActivity;
  71. import com.owncloud.android.utils.ErrorMessageAdapter;
  72. public class FileUploader extends Service {
  73. private static final String UPLOAD_FINISH_MESSAGE = "UPLOAD_FINISH";
  74. public static final String EXTRA_UPLOAD_RESULT = "RESULT";
  75. public static final String EXTRA_REMOTE_PATH = "REMOTE_PATH";
  76. public static final String EXTRA_OLD_REMOTE_PATH = "OLD_REMOTE_PATH";
  77. public static final String EXTRA_OLD_FILE_PATH = "OLD_FILE_PATH";
  78. public static final String ACCOUNT_NAME = "ACCOUNT_NAME";
  79. public static final String KEY_FILE = "FILE";
  80. public static final String KEY_LOCAL_FILE = "LOCAL_FILE";
  81. public static final String KEY_REMOTE_FILE = "REMOTE_FILE";
  82. public static final String KEY_MIME_TYPE = "MIME_TYPE";
  83. public static final String KEY_ACCOUNT = "ACCOUNT";
  84. public static final String KEY_UPLOAD_TYPE = "UPLOAD_TYPE";
  85. public static final String KEY_FORCE_OVERWRITE = "KEY_FORCE_OVERWRITE";
  86. public static final String KEY_INSTANT_UPLOAD = "INSTANT_UPLOAD";
  87. public static final String KEY_LOCAL_BEHAVIOUR = "BEHAVIOUR";
  88. public static final int LOCAL_BEHAVIOUR_COPY = 0;
  89. public static final int LOCAL_BEHAVIOUR_MOVE = 1;
  90. public static final int LOCAL_BEHAVIOUR_FORGET = 2;
  91. public static final int UPLOAD_SINGLE_FILE = 0;
  92. public static final int UPLOAD_MULTIPLE_FILES = 1;
  93. private static final String TAG = FileUploader.class.getSimpleName();
  94. private Looper mServiceLooper;
  95. private ServiceHandler mServiceHandler;
  96. private IBinder mBinder;
  97. private OwnCloudClient mUploadClient = null;
  98. private Account mLastAccount = null;
  99. private FileDataStorageManager mStorageManager;
  100. private ConcurrentMap<String, UploadFileOperation> mPendingUploads = new ConcurrentHashMap<String, UploadFileOperation>();
  101. private UploadFileOperation mCurrentUpload = null;
  102. private NotificationManager mNotificationManager;
  103. private NotificationCompat.Builder mNotificationBuilder;
  104. private int mLastPercent;
  105. public static String getUploadFinishMessage() {
  106. return FileUploader.class.getName().toString() + UPLOAD_FINISH_MESSAGE;
  107. }
  108. /**
  109. * Builds a key for mPendingUploads from the account and file to upload
  110. *
  111. * @param account Account where the file to upload is stored
  112. * @param file File to upload
  113. */
  114. private String buildRemoteName(Account account, OCFile file) {
  115. return account.name + file.getRemotePath();
  116. }
  117. private String buildRemoteName(Account account, String remotePath) {
  118. return account.name + remotePath;
  119. }
  120. /**
  121. * Checks if an ownCloud server version should support chunked uploads.
  122. *
  123. * @param version OwnCloud version instance corresponding to an ownCloud
  124. * server.
  125. * @return 'True' if the ownCloud server with version supports chunked
  126. * uploads.
  127. */
  128. private static boolean chunkedUploadIsSupported(OwnCloudVersion version) {
  129. return (version != null && version.compareTo(OwnCloudVersion.owncloud_v4_5) >= 0);
  130. }
  131. /**
  132. * Service initialization
  133. */
  134. @Override
  135. public void onCreate() {
  136. super.onCreate();
  137. Log_OC.i(TAG, "mPendingUploads size:" + mPendingUploads.size());
  138. mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  139. HandlerThread thread = new HandlerThread("FileUploaderThread", Process.THREAD_PRIORITY_BACKGROUND);
  140. thread.start();
  141. mServiceLooper = thread.getLooper();
  142. mServiceHandler = new ServiceHandler(mServiceLooper, this);
  143. mBinder = new FileUploaderBinder();
  144. }
  145. /**
  146. * Entry point to add one or several files to the queue of uploads.
  147. *
  148. * New uploads are added calling to startService(), resulting in a call to
  149. * this method. This ensures the service will keep on working although the
  150. * caller activity goes away.
  151. */
  152. @Override
  153. public int onStartCommand(Intent intent, int flags, int startId) {
  154. if (!intent.hasExtra(KEY_ACCOUNT) || !intent.hasExtra(KEY_UPLOAD_TYPE)
  155. || !(intent.hasExtra(KEY_LOCAL_FILE) || intent.hasExtra(KEY_FILE))) {
  156. Log_OC.e(TAG, "Not enough information provided in intent");
  157. return Service.START_NOT_STICKY;
  158. }
  159. int uploadType = intent.getIntExtra(KEY_UPLOAD_TYPE, -1);
  160. if (uploadType == -1) {
  161. Log_OC.e(TAG, "Incorrect upload type provided");
  162. return Service.START_NOT_STICKY;
  163. }
  164. Account account = intent.getParcelableExtra(KEY_ACCOUNT);
  165. if (!AccountUtils.exists(account, getApplicationContext())) {
  166. return Service.START_NOT_STICKY;
  167. }
  168. String[] localPaths = null, remotePaths = null, mimeTypes = null;
  169. OCFile[] files = null;
  170. if (uploadType == UPLOAD_SINGLE_FILE) {
  171. if (intent.hasExtra(KEY_FILE)) {
  172. files = new OCFile[] { intent.getParcelableExtra(KEY_FILE) };
  173. } else {
  174. localPaths = new String[] { intent.getStringExtra(KEY_LOCAL_FILE) };
  175. remotePaths = new String[] { intent.getStringExtra(KEY_REMOTE_FILE) };
  176. mimeTypes = new String[] { intent.getStringExtra(KEY_MIME_TYPE) };
  177. }
  178. } else { // mUploadType == UPLOAD_MULTIPLE_FILES
  179. if (intent.hasExtra(KEY_FILE)) {
  180. files = (OCFile[]) intent.getParcelableArrayExtra(KEY_FILE); // TODO
  181. // will
  182. // this
  183. // casting
  184. // work
  185. // fine?
  186. } else {
  187. localPaths = intent.getStringArrayExtra(KEY_LOCAL_FILE);
  188. remotePaths = intent.getStringArrayExtra(KEY_REMOTE_FILE);
  189. mimeTypes = intent.getStringArrayExtra(KEY_MIME_TYPE);
  190. }
  191. }
  192. FileDataStorageManager storageManager = new FileDataStorageManager(account, getContentResolver());
  193. boolean forceOverwrite = intent.getBooleanExtra(KEY_FORCE_OVERWRITE, false);
  194. boolean isInstant = intent.getBooleanExtra(KEY_INSTANT_UPLOAD, false);
  195. int localAction = intent.getIntExtra(KEY_LOCAL_BEHAVIOUR, LOCAL_BEHAVIOUR_COPY);
  196. if (intent.hasExtra(KEY_FILE) && files == null) {
  197. Log_OC.e(TAG, "Incorrect array for OCFiles provided in upload intent");
  198. return Service.START_NOT_STICKY;
  199. } else if (!intent.hasExtra(KEY_FILE)) {
  200. if (localPaths == null) {
  201. Log_OC.e(TAG, "Incorrect array for local paths provided in upload intent");
  202. return Service.START_NOT_STICKY;
  203. }
  204. if (remotePaths == null) {
  205. Log_OC.e(TAG, "Incorrect array for remote paths provided in upload intent");
  206. return Service.START_NOT_STICKY;
  207. }
  208. if (localPaths.length != remotePaths.length) {
  209. Log_OC.e(TAG, "Different number of remote paths and local paths!");
  210. return Service.START_NOT_STICKY;
  211. }
  212. files = new OCFile[localPaths.length];
  213. for (int i = 0; i < localPaths.length; i++) {
  214. files[i] = obtainNewOCFileToUpload(remotePaths[i], localPaths[i], ((mimeTypes != null) ? mimeTypes[i]
  215. : (String) null), storageManager);
  216. if (files[i] == null) {
  217. // TODO @andomaex add failure Notification
  218. return Service.START_NOT_STICKY;
  219. }
  220. }
  221. }
  222. AccountManager aMgr = AccountManager.get(this);
  223. String version = aMgr.getUserData(account, Constants.KEY_OC_VERSION);
  224. OwnCloudVersion ocv = new OwnCloudVersion(version);
  225. boolean chunked = FileUploader.chunkedUploadIsSupported(ocv);
  226. AbstractList<String> requestedUploads = new Vector<String>();
  227. String uploadKey = null;
  228. UploadFileOperation newUpload = null;
  229. try {
  230. for (int i = 0; i < files.length; i++) {
  231. uploadKey = buildRemoteName(account, files[i].getRemotePath());
  232. newUpload = new UploadFileOperation(account, files[i], chunked, isInstant, forceOverwrite, localAction,
  233. getApplicationContext());
  234. if (isInstant) {
  235. newUpload.setRemoteFolderToBeCreated();
  236. }
  237. mPendingUploads.putIfAbsent(uploadKey, newUpload); // Grants that the file only upload once time
  238. newUpload.addDatatransferProgressListener((FileUploaderBinder)mBinder);
  239. requestedUploads.add(uploadKey);
  240. }
  241. } catch (IllegalArgumentException e) {
  242. Log_OC.e(TAG, "Not enough information provided in intent: " + e.getMessage());
  243. return START_NOT_STICKY;
  244. } catch (IllegalStateException e) {
  245. Log_OC.e(TAG, "Bad information provided in intent: " + e.getMessage());
  246. return START_NOT_STICKY;
  247. } catch (Exception e) {
  248. Log_OC.e(TAG, "Unexpected exception while processing upload intent", e);
  249. return START_NOT_STICKY;
  250. }
  251. if (requestedUploads.size() > 0) {
  252. Message msg = mServiceHandler.obtainMessage();
  253. msg.arg1 = startId;
  254. msg.obj = requestedUploads;
  255. mServiceHandler.sendMessage(msg);
  256. }
  257. Log_OC.i(TAG, "mPendingUploads size:" + mPendingUploads.size());
  258. return Service.START_NOT_STICKY;
  259. }
  260. /**
  261. * Provides a binder object that clients can use to perform operations on
  262. * the queue of uploads, excepting the addition of new files.
  263. *
  264. * Implemented to perform cancellation, pause and resume of existing
  265. * uploads.
  266. */
  267. @Override
  268. public IBinder onBind(Intent arg0) {
  269. return mBinder;
  270. }
  271. /**
  272. * Called when ALL the bound clients were onbound.
  273. */
  274. @Override
  275. public boolean onUnbind(Intent intent) {
  276. ((FileUploaderBinder)mBinder).clearListeners();
  277. return false; // not accepting rebinding (default behaviour)
  278. }
  279. /**
  280. * Binder to let client components to perform operations on the queue of
  281. * uploads.
  282. *
  283. * It provides by itself the available operations.
  284. */
  285. public class FileUploaderBinder extends Binder implements OnDatatransferProgressListener {
  286. /**
  287. * Map of listeners that will be reported about progress of uploads from a {@link FileUploaderBinder} instance
  288. */
  289. private Map<String, OnDatatransferProgressListener> mBoundListeners = new HashMap<String, OnDatatransferProgressListener>();
  290. /**
  291. * Cancels a pending or current upload of a remote file.
  292. *
  293. * @param account Owncloud account where the remote file will be stored.
  294. * @param file A file in the queue of pending uploads
  295. */
  296. public void cancel(Account account, OCFile file) {
  297. UploadFileOperation upload = null;
  298. synchronized (mPendingUploads) {
  299. upload = mPendingUploads.remove(buildRemoteName(account, file));
  300. }
  301. if (upload != null) {
  302. upload.cancel();
  303. }
  304. }
  305. public void clearListeners() {
  306. mBoundListeners.clear();
  307. }
  308. /**
  309. * Returns True when the file described by 'file' is being uploaded to
  310. * the ownCloud account 'account' or waiting for it
  311. *
  312. * If 'file' is a directory, returns 'true' if some of its descendant files is uploading or waiting to upload.
  313. *
  314. * @param account Owncloud account where the remote file will be stored.
  315. * @param file A file that could be in the queue of pending uploads
  316. */
  317. public boolean isUploading(Account account, OCFile file) {
  318. if (account == null || file == null)
  319. return false;
  320. String targetKey = buildRemoteName(account, file);
  321. synchronized (mPendingUploads) {
  322. if (file.isFolder()) {
  323. // this can be slow if there are many uploads :(
  324. Iterator<String> it = mPendingUploads.keySet().iterator();
  325. boolean found = false;
  326. while (it.hasNext() && !found) {
  327. found = it.next().startsWith(targetKey);
  328. }
  329. return found;
  330. } else {
  331. return (mPendingUploads.containsKey(targetKey));
  332. }
  333. }
  334. }
  335. /**
  336. * Adds a listener interested in the progress of the upload for a concrete file.
  337. *
  338. * @param listener Object to notify about progress of transfer.
  339. * @param account ownCloud account holding the file of interest.
  340. * @param file {@link OCfile} of interest for listener.
  341. */
  342. public void addDatatransferProgressListener (OnDatatransferProgressListener listener, Account account, OCFile file) {
  343. if (account == null || file == null || listener == null) return;
  344. String targetKey = buildRemoteName(account, file);
  345. mBoundListeners.put(targetKey, listener);
  346. }
  347. /**
  348. * Removes a listener interested in the progress of the upload for a concrete file.
  349. *
  350. * @param listener Object to notify about progress of transfer.
  351. * @param account ownCloud account holding the file of interest.
  352. * @param file {@link OCfile} of interest for listener.
  353. */
  354. public void removeDatatransferProgressListener (OnDatatransferProgressListener listener, Account account, OCFile file) {
  355. if (account == null || file == null || listener == null) return;
  356. String targetKey = buildRemoteName(account, file);
  357. if (mBoundListeners.get(targetKey) == listener) {
  358. mBoundListeners.remove(targetKey);
  359. }
  360. }
  361. @Override
  362. public void onTransferProgress(long progressRate, long totalTransferredSoFar, long totalToTransfer,
  363. String fileName) {
  364. String key = buildRemoteName(mCurrentUpload.getAccount(), mCurrentUpload.getFile());
  365. OnDatatransferProgressListener boundListener = mBoundListeners.get(key);
  366. if (boundListener != null) {
  367. boundListener.onTransferProgress(progressRate, totalTransferredSoFar, totalToTransfer, fileName);
  368. }
  369. }
  370. }
  371. /**
  372. * Upload worker. Performs the pending uploads in the order they were
  373. * requested.
  374. *
  375. * Created with the Looper of a new thread, started in
  376. * {@link FileUploader#onCreate()}.
  377. */
  378. private static class ServiceHandler extends Handler {
  379. // don't make it a final class, and don't remove the static ; lint will
  380. // warn about a possible memory leak
  381. FileUploader mService;
  382. public ServiceHandler(Looper looper, FileUploader service) {
  383. super(looper);
  384. if (service == null)
  385. throw new IllegalArgumentException("Received invalid NULL in parameter 'service'");
  386. mService = service;
  387. }
  388. @Override
  389. public void handleMessage(Message msg) {
  390. @SuppressWarnings("unchecked")
  391. AbstractList<String> requestedUploads = (AbstractList<String>) msg.obj;
  392. if (msg.obj != null) {
  393. Iterator<String> it = requestedUploads.iterator();
  394. while (it.hasNext()) {
  395. mService.uploadFile(it.next());
  396. }
  397. }
  398. mService.stopSelf(msg.arg1);
  399. }
  400. }
  401. /**
  402. * Core upload method: sends the file(s) to upload
  403. *
  404. * @param uploadKey Key to access the upload to perform, contained in
  405. * mPendingUploads
  406. */
  407. private void uploadFile(String uploadKey) {
  408. synchronized (mPendingUploads) {
  409. mCurrentUpload = mPendingUploads.get(uploadKey);
  410. }
  411. if (mCurrentUpload != null) {
  412. notifyUploadStart(mCurrentUpload);
  413. RemoteOperationResult uploadResult = null, grantResult = null;
  414. try {
  415. /// prepare client object to send requests to the ownCloud server
  416. if (mUploadClient == null || !mLastAccount.equals(mCurrentUpload.getAccount())) {
  417. mLastAccount = mCurrentUpload.getAccount();
  418. mStorageManager =
  419. new FileDataStorageManager(mLastAccount, getContentResolver());
  420. OwnCloudAccount ocAccount = new OwnCloudAccount(mLastAccount, this);
  421. mUploadClient = OwnCloudClientManagerFactory.getDefaultSingleton().
  422. getClientFor(ocAccount, this);
  423. }
  424. /// check the existence of the parent folder for the file to upload
  425. String remoteParentPath = new File(mCurrentUpload.getRemotePath()).getParent();
  426. remoteParentPath = remoteParentPath.endsWith(OCFile.PATH_SEPARATOR) ? remoteParentPath : remoteParentPath + OCFile.PATH_SEPARATOR;
  427. grantResult = grantFolderExistence(remoteParentPath);
  428. /// perform the upload
  429. if (grantResult.isSuccess()) {
  430. OCFile parent = mStorageManager.getFileByPath(remoteParentPath);
  431. mCurrentUpload.getFile().setParentId(parent.getFileId());
  432. uploadResult = mCurrentUpload.execute(mUploadClient);
  433. if (uploadResult.isSuccess()) {
  434. saveUploadedFile();
  435. }
  436. } else {
  437. uploadResult = grantResult;
  438. }
  439. } catch (AccountsException e) {
  440. Log_OC.e(TAG, "Error while trying to get autorization for " + mLastAccount.name, e);
  441. uploadResult = new RemoteOperationResult(e);
  442. } catch (IOException e) {
  443. Log_OC.e(TAG, "Error while trying to get autorization for " + mLastAccount.name, e);
  444. uploadResult = new RemoteOperationResult(e);
  445. } finally {
  446. synchronized (mPendingUploads) {
  447. mPendingUploads.remove(uploadKey);
  448. Log_OC.i(TAG, "Remove CurrentUploadItem from pending upload Item Map.");
  449. }
  450. if (uploadResult.isException()) {
  451. // enforce the creation of a new client object for next uploads; this grant that a new socket will
  452. // be created in the future if the current exception is due to an abrupt lose of network connection
  453. mUploadClient = null;
  454. }
  455. }
  456. /// notify result
  457. notifyUploadResult(uploadResult, mCurrentUpload);
  458. sendFinalBroadcast(mCurrentUpload, uploadResult);
  459. }
  460. }
  461. /**
  462. * Checks the existence of the folder where the current file will be uploaded both in the remote server
  463. * and in the local database.
  464. *
  465. * If the upload is set to enforce the creation of the folder, the method tries to create it both remote
  466. * and locally.
  467. *
  468. * @param pathToGrant Full remote path whose existence will be granted.
  469. * @return An {@link OCFile} instance corresponding to the folder where the file will be uploaded.
  470. */
  471. private RemoteOperationResult grantFolderExistence(String pathToGrant) {
  472. RemoteOperation operation = new ExistenceCheckRemoteOperation(pathToGrant, this, false);
  473. RemoteOperationResult result = operation.execute(mUploadClient);
  474. if (!result.isSuccess() && result.getCode() == ResultCode.FILE_NOT_FOUND && mCurrentUpload.isRemoteFolderToBeCreated()) {
  475. SyncOperation syncOp = new CreateFolderOperation( pathToGrant, true);
  476. result = syncOp.execute(mUploadClient, mStorageManager);
  477. }
  478. if (result.isSuccess()) {
  479. OCFile parentDir = mStorageManager.getFileByPath(pathToGrant);
  480. if (parentDir == null) {
  481. parentDir = createLocalFolder(pathToGrant);
  482. }
  483. if (parentDir != null) {
  484. result = new RemoteOperationResult(ResultCode.OK);
  485. } else {
  486. result = new RemoteOperationResult(ResultCode.UNKNOWN_ERROR);
  487. }
  488. }
  489. return result;
  490. }
  491. private OCFile createLocalFolder(String remotePath) {
  492. String parentPath = new File(remotePath).getParent();
  493. parentPath = parentPath.endsWith(OCFile.PATH_SEPARATOR) ? parentPath : parentPath + OCFile.PATH_SEPARATOR;
  494. OCFile parent = mStorageManager.getFileByPath(parentPath);
  495. if (parent == null) {
  496. parent = createLocalFolder(parentPath);
  497. }
  498. if (parent != null) {
  499. OCFile createdFolder = new OCFile(remotePath);
  500. createdFolder.setMimetype("DIR");
  501. createdFolder.setParentId(parent.getFileId());
  502. mStorageManager.saveFile(createdFolder);
  503. return createdFolder;
  504. }
  505. return null;
  506. }
  507. /**
  508. * Saves a OC File after a successful upload.
  509. *
  510. * A PROPFIND is necessary to keep the props in the local database
  511. * synchronized with the server, specially the modification time and Etag
  512. * (where available)
  513. *
  514. * TODO refactor this ugly thing
  515. */
  516. private void saveUploadedFile() {
  517. OCFile file = mCurrentUpload.getFile();
  518. if (file.fileExists()) {
  519. file = mStorageManager.getFileById(file.getFileId());
  520. }
  521. long syncDate = System.currentTimeMillis();
  522. file.setLastSyncDateForData(syncDate);
  523. // new PROPFIND to keep data consistent with server
  524. // in theory, should return the same we already have
  525. ReadRemoteFileOperation operation = new ReadRemoteFileOperation(mCurrentUpload.getRemotePath());
  526. RemoteOperationResult result = operation.execute(mUploadClient);
  527. if (result.isSuccess()) {
  528. updateOCFile(file, (RemoteFile) result.getData().get(0));
  529. file.setLastSyncDateForProperties(syncDate);
  530. }
  531. // / maybe this would be better as part of UploadFileOperation... or
  532. // maybe all this method
  533. if (mCurrentUpload.wasRenamed()) {
  534. OCFile oldFile = mCurrentUpload.getOldFile();
  535. if (oldFile.fileExists()) {
  536. oldFile.setStoragePath(null);
  537. mStorageManager.saveFile(oldFile);
  538. } // else: it was just an automatic renaming due to a name
  539. // coincidence; nothing else is needed, the storagePath is right
  540. // in the instance returned by mCurrentUpload.getFile()
  541. }
  542. file.setNeedsUpdateThumbnail(true);
  543. mStorageManager.saveFile(file);
  544. }
  545. private void updateOCFile(OCFile file, RemoteFile remoteFile) {
  546. file.setCreationTimestamp(remoteFile.getCreationTimestamp());
  547. file.setFileLength(remoteFile.getLength());
  548. file.setMimetype(remoteFile.getMimeType());
  549. file.setModificationTimestamp(remoteFile.getModifiedTimestamp());
  550. file.setModificationTimestampAtLastSyncForData(remoteFile.getModifiedTimestamp());
  551. // file.setEtag(remoteFile.getEtag()); // TODO Etag, where available
  552. file.setRemoteId(remoteFile.getRemoteId());
  553. }
  554. private OCFile obtainNewOCFileToUpload(String remotePath, String localPath, String mimeType,
  555. FileDataStorageManager storageManager) {
  556. OCFile newFile = new OCFile(remotePath);
  557. newFile.setStoragePath(localPath);
  558. newFile.setLastSyncDateForProperties(0);
  559. newFile.setLastSyncDateForData(0);
  560. // size
  561. if (localPath != null && localPath.length() > 0) {
  562. File localFile = new File(localPath);
  563. newFile.setFileLength(localFile.length());
  564. newFile.setLastSyncDateForData(localFile.lastModified());
  565. } // don't worry about not assigning size, the problems with localPath
  566. // are checked when the UploadFileOperation instance is created
  567. // MIME type
  568. if (mimeType == null || mimeType.length() <= 0) {
  569. try {
  570. mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(
  571. remotePath.substring(remotePath.lastIndexOf('.') + 1));
  572. } catch (IndexOutOfBoundsException e) {
  573. Log_OC.e(TAG, "Trying to find out MIME type of a file without extension: " + remotePath);
  574. }
  575. }
  576. if (mimeType == null) {
  577. mimeType = "application/octet-stream";
  578. }
  579. newFile.setMimetype(mimeType);
  580. return newFile;
  581. }
  582. /**
  583. * Creates a status notification to show the upload progress
  584. *
  585. * @param upload Upload operation starting.
  586. */
  587. private void notifyUploadStart(UploadFileOperation upload) {
  588. // / create status notification with a progress bar
  589. mLastPercent = 0;
  590. mNotificationBuilder =
  591. NotificationBuilderWithProgressBar.newNotificationBuilderWithProgressBar(this);
  592. mNotificationBuilder
  593. .setOngoing(true)
  594. .setSmallIcon(R.drawable.notification_icon)
  595. .setTicker(getString(R.string.uploader_upload_in_progress_ticker))
  596. .setContentTitle(getString(R.string.uploader_upload_in_progress_ticker))
  597. .setProgress(100, 0, false)
  598. .setContentText(
  599. String.format(getString(R.string.uploader_upload_in_progress_content), 0, upload.getFileName()));
  600. /// includes a pending intent in the notification showing the details view of the file
  601. Intent showDetailsIntent = new Intent(this, FileDisplayActivity.class);
  602. showDetailsIntent.putExtra(FileActivity.EXTRA_FILE, upload.getFile());
  603. showDetailsIntent.putExtra(FileActivity.EXTRA_ACCOUNT, upload.getAccount());
  604. showDetailsIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
  605. mNotificationBuilder.setContentIntent(PendingIntent.getActivity(
  606. this, (int) System.currentTimeMillis(), showDetailsIntent, 0
  607. ));
  608. mNotificationManager.notify(R.string.uploader_upload_in_progress_ticker, mNotificationBuilder.build());
  609. }
  610. /**
  611. * Updates the status notification with the result of an upload operation.
  612. *
  613. * @param uploadResult Result of the upload operation.
  614. * @param upload Finished upload operation
  615. */
  616. private void notifyUploadResult(
  617. RemoteOperationResult uploadResult, UploadFileOperation upload) {
  618. Log_OC.d(TAG, "NotifyUploadResult with resultCode: " + uploadResult.getCode());
  619. // / cancelled operation or success -> silent removal of progress notification
  620. mNotificationManager.cancel(R.string.uploader_upload_in_progress_ticker);
  621. // Show the result: success or fail notification
  622. if (!uploadResult.isCancelled()) {
  623. int tickerId = (uploadResult.isSuccess()) ? R.string.uploader_upload_succeeded_ticker :
  624. R.string.uploader_upload_failed_ticker;
  625. String content = null;
  626. // check credentials error
  627. boolean needsToUpdateCredentials = (
  628. uploadResult.getCode() == ResultCode.UNAUTHORIZED ||
  629. uploadResult.isIdPRedirection()
  630. );
  631. tickerId = (needsToUpdateCredentials) ?
  632. R.string.uploader_upload_failed_credentials_error : tickerId;
  633. mNotificationBuilder
  634. .setTicker(getString(tickerId))
  635. .setContentTitle(getString(tickerId))
  636. .setAutoCancel(true)
  637. .setOngoing(false)
  638. .setProgress(0, 0, false);
  639. content = ErrorMessageAdapter.getErrorCauseMessage(
  640. uploadResult, upload, getResources()
  641. );
  642. if (needsToUpdateCredentials) {
  643. // let the user update credentials with one click
  644. Intent updateAccountCredentials = new Intent(this, AuthenticatorActivity.class);
  645. updateAccountCredentials.putExtra(
  646. AuthenticatorActivity.EXTRA_ACCOUNT, upload.getAccount()
  647. );
  648. updateAccountCredentials.putExtra(
  649. AuthenticatorActivity.EXTRA_ACTION,
  650. AuthenticatorActivity.ACTION_UPDATE_EXPIRED_TOKEN
  651. );
  652. updateAccountCredentials.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  653. updateAccountCredentials.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
  654. updateAccountCredentials.addFlags(Intent.FLAG_FROM_BACKGROUND);
  655. mNotificationBuilder.setContentIntent(PendingIntent.getActivity(
  656. this,
  657. (int) System.currentTimeMillis(),
  658. updateAccountCredentials,
  659. PendingIntent.FLAG_ONE_SHOT
  660. ));
  661. mUploadClient = null;
  662. // grant that future retries on the same account will get the fresh credentials
  663. } else {
  664. mNotificationBuilder.setContentText(content);
  665. if (upload.isInstant()) {
  666. DbHandler db = null;
  667. try {
  668. db = new DbHandler(this.getBaseContext());
  669. String message = uploadResult.getLogMessage() + " errorCode: " +
  670. uploadResult.getCode();
  671. Log_OC.e(TAG, message + " Http-Code: " + uploadResult.getHttpCode());
  672. if (uploadResult.getCode() == ResultCode.QUOTA_EXCEEDED) {
  673. //message = getString(R.string.failed_upload_quota_exceeded_text);
  674. if (db.updateFileState(
  675. upload.getOriginalStoragePath(),
  676. DbHandler.UploadStatus.UPLOAD_STATUS_UPLOAD_FAILED,
  677. message) == 0) {
  678. db.putFileForLater(
  679. upload.getOriginalStoragePath(),
  680. upload.getAccount().name,
  681. message
  682. );
  683. }
  684. }
  685. } finally {
  686. if (db != null) {
  687. db.close();
  688. }
  689. }
  690. }
  691. }
  692. mNotificationBuilder.setContentText(content);
  693. mNotificationManager.notify(tickerId, mNotificationBuilder.build());
  694. if (uploadResult.isSuccess()) {
  695. DbHandler db = new DbHandler(this.getBaseContext());
  696. db.removePendingFile(mCurrentUpload.getOriginalStoragePath());
  697. db.close();
  698. // remove success notification, with a delay of 2 seconds
  699. NotificationDelayer.cancelWithDelay(
  700. mNotificationManager,
  701. R.string.uploader_upload_succeeded_ticker,
  702. 2000);
  703. }
  704. }
  705. }
  706. /**
  707. * Sends a broadcast in order to the interested activities can update their
  708. * view
  709. *
  710. * @param upload Finished upload operation
  711. * @param uploadResult Result of the upload operation
  712. */
  713. private void sendFinalBroadcast(UploadFileOperation upload, RemoteOperationResult uploadResult) {
  714. Intent end = new Intent(getUploadFinishMessage());
  715. end.putExtra(EXTRA_REMOTE_PATH, upload.getRemotePath()); // real remote
  716. // path, after
  717. // possible
  718. // automatic
  719. // renaming
  720. if (upload.wasRenamed()) {
  721. end.putExtra(EXTRA_OLD_REMOTE_PATH, upload.getOldFile().getRemotePath());
  722. }
  723. end.putExtra(EXTRA_OLD_FILE_PATH, upload.getOriginalStoragePath());
  724. end.putExtra(ACCOUNT_NAME, upload.getAccount().name);
  725. end.putExtra(EXTRA_UPLOAD_RESULT, uploadResult.isSuccess());
  726. sendStickyBroadcast(end);
  727. }
  728. }