FileUploader.java 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author Bartek Przybylski
  5. * @authro masensio
  6. * @author LukeOwnCloud
  7. * @author David A. Velasco
  8. * Copyright (C) 2012 Bartek Przybylski
  9. * Copyright (C) 2012-2016 ownCloud Inc.
  10. * <p/>
  11. * This program is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License version 2,
  13. * as published by the Free Software Foundation.
  14. * <p/>
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. * <p/>
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. */
  23. package com.owncloud.android.files.services;
  24. import android.accounts.Account;
  25. import android.accounts.AccountManager;
  26. import android.accounts.OnAccountsUpdateListener;
  27. import android.app.NotificationManager;
  28. import android.app.PendingIntent;
  29. import android.app.Service;
  30. import android.content.Context;
  31. import android.content.Intent;
  32. import android.os.Binder;
  33. import android.os.Handler;
  34. import android.os.HandlerThread;
  35. import android.os.IBinder;
  36. import android.os.Looper;
  37. import android.os.Message;
  38. import android.os.Parcelable;
  39. import android.os.Process;
  40. import android.support.v4.app.NotificationCompat;
  41. import android.util.Pair;
  42. import com.owncloud.android.R;
  43. import com.owncloud.android.authentication.AccountUtils;
  44. import com.owncloud.android.authentication.AuthenticatorActivity;
  45. import com.owncloud.android.datamodel.FileDataStorageManager;
  46. import com.owncloud.android.datamodel.OCFile;
  47. import com.owncloud.android.datamodel.UploadsStorageManager;
  48. import com.owncloud.android.datamodel.UploadsStorageManager.UploadStatus;
  49. import com.owncloud.android.db.OCUpload;
  50. import com.owncloud.android.db.UploadResult;
  51. import com.owncloud.android.lib.common.OwnCloudAccount;
  52. import com.owncloud.android.lib.common.OwnCloudClient;
  53. import com.owncloud.android.lib.common.OwnCloudClientManagerFactory;
  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.UploadListActivity;
  71. import com.owncloud.android.utils.ErrorMessageAdapter;
  72. import java.io.File;
  73. import java.util.AbstractList;
  74. import java.util.HashMap;
  75. import java.util.Iterator;
  76. import java.util.Map;
  77. import java.util.Vector;
  78. /**
  79. * Service for uploading files. Invoke using context.startService(...).
  80. * <p/>
  81. * Files to be uploaded are stored persistently using {@link UploadsStorageManager}.
  82. * <p/>
  83. * On next invocation of {@link FileUploader} uploaded files which
  84. * previously failed will be uploaded again until either upload succeeded or a
  85. * fatal error occured.
  86. * <p/>
  87. * Every file passed to this service is uploaded. No filtering is performed.
  88. * However, Intent keys (e.g., KEY_WIFI_ONLY) are obeyed.
  89. */
  90. public class FileUploader extends Service
  91. implements OnDatatransferProgressListener, OnAccountsUpdateListener {
  92. private static final String TAG = FileUploader.class.getSimpleName();
  93. private static final String UPLOAD_START_MESSAGE = "UPLOAD_START";
  94. private static final String UPLOAD_FINISH_MESSAGE = "UPLOAD_FINISH";
  95. public static final String EXTRA_UPLOAD_RESULT = "RESULT";
  96. public static final String EXTRA_REMOTE_PATH = "REMOTE_PATH";
  97. public static final String EXTRA_OLD_REMOTE_PATH = "OLD_REMOTE_PATH";
  98. public static final String EXTRA_OLD_FILE_PATH = "OLD_FILE_PATH";
  99. public static final String EXTRA_LINKED_TO_PATH = "LINKED_TO";
  100. public static final String ACCOUNT_NAME = "ACCOUNT_NAME";
  101. public static final String KEY_FILE = "FILE";
  102. public static final String KEY_LOCAL_FILE = "LOCAL_FILE";
  103. public static final String KEY_REMOTE_FILE = "REMOTE_FILE";
  104. public static final String KEY_MIME_TYPE = "MIME_TYPE";
  105. /**
  106. * Call this Service with only this Intent key if all pending uploads are to be retried.
  107. */
  108. private static final String KEY_RETRY = "KEY_RETRY";
  109. // /**
  110. // * Call this Service with KEY_RETRY and KEY_RETRY_REMOTE_PATH to retry
  111. // * upload of file identified by KEY_RETRY_REMOTE_PATH.
  112. // */
  113. // private static final String KEY_RETRY_REMOTE_PATH = "KEY_RETRY_REMOTE_PATH";
  114. /**
  115. * Call this Service with KEY_RETRY and KEY_RETRY_UPLOAD to retry
  116. * upload of file identified by KEY_RETRY_UPLOAD.
  117. */
  118. private static final String KEY_RETRY_UPLOAD = "KEY_RETRY_UPLOAD";
  119. /**
  120. * {@link Account} to which file is to be uploaded.
  121. */
  122. public static final String KEY_ACCOUNT = "ACCOUNT";
  123. /**
  124. * Set whether single file or multiple files are to be uploaded. SINGLE_FILES = 0, MULTIPLE_FILEs = 1.
  125. */
  126. public static final String KEY_UPLOAD_TYPE = "UPLOAD_TYPE";
  127. /**
  128. * Set to true if remote file is to be overwritten. Default action is to upload with different name.
  129. */
  130. public static final String KEY_FORCE_OVERWRITE = "KEY_FORCE_OVERWRITE";
  131. /**
  132. * Set to true if remote folder is to be created if it does not exist.
  133. */
  134. public static final String KEY_CREATE_REMOTE_FOLDER = "CREATE_REMOTE_FOLDER";
  135. /**
  136. * Set to true if upload is to performed only when connected via wifi.
  137. */
  138. public static final String KEY_WIFI_ONLY = "WIFI_ONLY";
  139. /**
  140. * Set to true if upload is to performed only when phone is being charged.
  141. */
  142. public static final String KEY_WHILE_CHARGING_ONLY = "KEY_WHILE_CHARGING_ONLY";
  143. // /**
  144. // * Set to future UNIX timestamp. Upload will not be performed before this timestamp.
  145. // */
  146. // public static final String KEY_UPLOAD_TIMESTAMP= "KEY_UPLOAD_TIMESTAMP";
  147. public static final String KEY_LOCAL_BEHAVIOUR = "BEHAVIOUR";
  148. //public static final String KEY_INSTANT_UPLOAD = "INSTANT_UPLOAD";
  149. public static final int LOCAL_BEHAVIOUR_COPY = 0;
  150. public static final int LOCAL_BEHAVIOUR_MOVE = 1;
  151. public static final int LOCAL_BEHAVIOUR_FORGET = 2;
  152. /**
  153. * Describes local behavior for upload.
  154. */
  155. // public enum LocalBehaviour {
  156. // /**
  157. // * Creates a copy of file and stores it in tmp folder inside owncloud
  158. // * folder on sd-card. After upload it is moved to local owncloud
  159. // * storage. Original file stays untouched.
  160. // */
  161. // LOCAL_BEHAVIOUR_COPY(0),
  162. // /**
  163. // * Upload file from current storage. Afterwards original file is move to
  164. // * local owncloud storage.
  165. // */
  166. // LOCAL_BEHAVIOUR_MOVE(1),
  167. // /**
  168. // * Just uploads file and leaves it where it is. Original file stays
  169. // * untouched.
  170. // */
  171. // LOCAL_BEHAVIOUR_FORGET(2);
  172. // private final int value;
  173. //
  174. // LocalBehaviour(int value) {
  175. // this.value = value;
  176. // }
  177. //
  178. // public int getValue() {
  179. // return value;
  180. // }
  181. //
  182. // public static LocalBehaviour fromValue(int value){
  183. // switch (value)
  184. // {
  185. // case 0:
  186. // return LOCAL_BEHAVIOUR_COPY;
  187. // case 1:
  188. // return LOCAL_BEHAVIOUR_MOVE;
  189. // case 2:
  190. // return LOCAL_BEHAVIOUR_FORGET;
  191. // }
  192. // return null;
  193. // }
  194. // }
  195. // public enum UploadQuantity {
  196. // UPLOAD_SINGLE_FILE(0), UPLOAD_MULTIPLE_FILES(1);
  197. // private final int value;
  198. //
  199. // UploadQuantity(int value) {
  200. // this.value = value;
  201. // }
  202. //
  203. // public int getValue() {
  204. // return value;
  205. // }
  206. // };
  207. private Looper mServiceLooper;
  208. private ServiceHandler mServiceHandler;
  209. private IBinder mBinder;
  210. private OwnCloudClient mUploadClient = null;
  211. private Account mCurrentAccount = null;
  212. private FileDataStorageManager mStorageManager;
  213. //since there can be only one instance of an Android service, there also just one db connection.
  214. private UploadsStorageManager mUploadsStorageManager = null;
  215. private IndexedForest<UploadFileOperation> mPendingUploads = new IndexedForest<UploadFileOperation>();
  216. /**
  217. * {@link UploadFileOperation} object of ongoing upload. Can be null. Note: There can only be one concurrent upload!
  218. */
  219. private UploadFileOperation mCurrentUpload = null;
  220. private NotificationManager mNotificationManager;
  221. private NotificationCompat.Builder mNotificationBuilder;
  222. private int mLastPercent;
  223. public static String getUploadStartMessage() {
  224. return FileUploader.class.getName() + UPLOAD_START_MESSAGE;
  225. }
  226. public static String getUploadFinishMessage() {
  227. return FileUploader.class.getName() + UPLOAD_FINISH_MESSAGE;
  228. }
  229. /**
  230. * Call to retry upload identified by remotePath
  231. */
  232. private static void retry(Context context, Account account, OCUpload upload) {
  233. Log_OC.d(TAG, "FileUploader.retry()");
  234. Intent i = new Intent(context, FileUploader.class);
  235. i.putExtra(FileUploader.KEY_RETRY, true);
  236. if (upload != null) {
  237. i.putExtra(FileUploader.KEY_ACCOUNT, account);
  238. i.putExtra(FileUploader.KEY_RETRY_UPLOAD, upload);
  239. }
  240. context.startService(i);
  241. }
  242. /**
  243. * Call to upload several new files
  244. */
  245. public static void uploadNewFile(Context context, Account account, String[] localPaths, String[] remotePaths,
  246. Integer behaviour, String mimeType, Boolean createRemoteFolder, Boolean wifiOnly) {
  247. Log_OC.d(TAG, "FileUploader.uploadNewFile()");
  248. Intent intent = new Intent(context, FileUploader.class);
  249. intent.putExtra(FileUploader.KEY_ACCOUNT, account);
  250. intent.putExtra(FileUploader.KEY_LOCAL_FILE, localPaths);
  251. intent.putExtra(FileUploader.KEY_REMOTE_FILE, remotePaths);
  252. intent.putExtra(FileUploader.KEY_LOCAL_BEHAVIOUR, behaviour);
  253. intent.putExtra(FileUploader.KEY_MIME_TYPE, mimeType);
  254. intent.putExtra(FileUploader.KEY_CREATE_REMOTE_FOLDER, createRemoteFolder);
  255. intent.putExtra(FileUploader.KEY_WIFI_ONLY, wifiOnly);
  256. context.startService(intent);
  257. }
  258. /**
  259. * Call to upload a new single file
  260. */
  261. public static void uploadNewFile(Context context, Account account, String localPath, String remotePath, int
  262. behaviour, String mimeType, boolean createRemoteFile, boolean wifiOnly) {
  263. uploadNewFile(context, account, new String[]{localPath}, new String[]{remotePath}, behaviour, mimeType,
  264. createRemoteFile, wifiOnly);
  265. }
  266. /**
  267. * Call to update multiple files already uploaded
  268. */
  269. public static void uploadUpdate(Context context, Account account, OCFile[] existingFiles, Integer behaviour,
  270. Boolean forceOverwrite) {
  271. Log_OC.d(TAG, "FileUploader.uploadUpdate()");
  272. Intent intent = new Intent(context, FileUploader.class);
  273. intent.putExtra(FileUploader.KEY_ACCOUNT, account);
  274. intent.putExtra(FileUploader.KEY_FILE, existingFiles);
  275. intent.putExtra(FileUploader.KEY_LOCAL_BEHAVIOUR, behaviour);
  276. intent.putExtra(FileUploader.KEY_FORCE_OVERWRITE, forceOverwrite);
  277. context.startService(intent);
  278. }
  279. /**
  280. * Call to update a dingle file already uploaded
  281. */
  282. public static void uploadUpdate(Context context, Account account, OCFile existingFile, Integer behaviour, Boolean
  283. forceOverwrite) {
  284. uploadUpdate(context, account, new OCFile[]{existingFile}, behaviour, forceOverwrite);
  285. }
  286. /**
  287. * Checks if an ownCloud server version should support chunked uploads.
  288. *
  289. * @param version OwnCloud version instance corresponding to an ownCloud
  290. * server.
  291. * @return 'True' if the ownCloud server with version supports chunked
  292. * uploads.
  293. * <p/>
  294. * TODO - move to OwnCloudVersion
  295. */
  296. private static boolean chunkedUploadIsSupported(OwnCloudVersion version) {
  297. return (version != null && version.compareTo(OwnCloudVersion.owncloud_v4_5) >= 0);
  298. }
  299. /**
  300. * Service initialization
  301. */
  302. // TODO: Clean method: comments on extra code
  303. @Override
  304. public void onCreate() {
  305. super.onCreate();
  306. Log_OC.d(TAG, "Creating service");
  307. mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  308. HandlerThread thread = new HandlerThread("FileUploaderThread",
  309. Process.THREAD_PRIORITY_BACKGROUND);
  310. thread.start();
  311. mServiceLooper = thread.getLooper();
  312. mServiceHandler = new ServiceHandler(mServiceLooper, this);
  313. mBinder = new FileUploaderBinder();
  314. // From FileUploaderService
  315. mUploadsStorageManager = new UploadsStorageManager(getContentResolver());
  316. //when this service starts there is no upload in progress. if db says so, app probably crashed before.
  317. //mUploadsStorageManager.setAllCurrentToUploadLater(); // TODO why?
  318. // mUploadExecutor = Executors.newFixedThreadPool(1);
  319. // Log_OC.d(TAG, "FileUploader.retry() called by onCreate()");
  320. // FileUploader.retry(getApplicationContext());
  321. // add AccountsUpdatedListener
  322. AccountManager am = AccountManager.get(getApplicationContext());
  323. am.addOnAccountsUpdatedListener(this, null, false);
  324. }
  325. /**
  326. * Service clean up
  327. */
  328. @Override
  329. public void onDestroy() {
  330. Log_OC.v(TAG, "Destroying service");
  331. mBinder = null;
  332. mServiceHandler = null;
  333. mServiceLooper.quit();
  334. mServiceLooper = null;
  335. mNotificationManager = null;
  336. // remove AccountsUpdatedListener
  337. AccountManager am = AccountManager.get(getApplicationContext());
  338. am.removeOnAccountsUpdatedListener(this);
  339. super.onDestroy();
  340. }
  341. /**
  342. * Entry point to add one or several files to the queue of uploads.
  343. * <p/>
  344. * New uploads are added calling to startService(), resulting in a call to
  345. * this method. This ensures the service will keep on working although the
  346. * caller activity goes away.
  347. */
  348. @Override
  349. public int onStartCommand(Intent intent, int flags, int startId) {
  350. Log_OC.d(TAG, "Starting command with id " + startId);
  351. boolean retry = intent.getBooleanExtra(KEY_RETRY, false);
  352. AbstractList<String> requestedUploads = new Vector<String>();
  353. if (!intent.hasExtra(KEY_ACCOUNT)) {
  354. Log_OC.e(TAG, "Not enough information provided in intent");
  355. return Service.START_NOT_STICKY;
  356. }
  357. Account account = intent.getParcelableExtra(KEY_ACCOUNT);
  358. if (!AccountUtils.exists(account, getApplicationContext())) {
  359. return Service.START_NOT_STICKY;
  360. }
  361. OwnCloudVersion ocv = AccountUtils.getServerVersion(account);
  362. boolean chunked = FileUploader.chunkedUploadIsSupported(ocv);
  363. if (!retry) {
  364. if (!(intent.hasExtra(KEY_LOCAL_FILE) ||
  365. intent.hasExtra(KEY_FILE))) {
  366. Log_OC.e(TAG, "Not enough information provided in intent");
  367. return Service.START_NOT_STICKY;
  368. }
  369. String[] localPaths = null, remotePaths = null, mimeTypes = null;
  370. OCFile[] files = null;
  371. if (intent.hasExtra(KEY_FILE)) {
  372. Parcelable[] files_temp = intent.getParcelableArrayExtra(KEY_FILE);
  373. files = new OCFile[files_temp.length];
  374. System.arraycopy(files_temp, 0, files, 0, files_temp.length);
  375. // TODO : test multiple upload, working find
  376. } else {
  377. localPaths = intent.getStringArrayExtra(KEY_LOCAL_FILE);
  378. remotePaths = intent.getStringArrayExtra(KEY_REMOTE_FILE);
  379. mimeTypes = intent.getStringArrayExtra(KEY_MIME_TYPE);
  380. }
  381. FileDataStorageManager storageManager = new FileDataStorageManager(
  382. account,
  383. getContentResolver()
  384. );
  385. boolean forceOverwrite = intent.getBooleanExtra(KEY_FORCE_OVERWRITE, false);
  386. //boolean isInstant = intent.getBooleanExtra(KEY_INSTANT_UPLOAD, false);
  387. int localAction = intent.getIntExtra(KEY_LOCAL_BEHAVIOUR, LOCAL_BEHAVIOUR_FORGET);
  388. boolean isCreateRemoteFolder = intent.getBooleanExtra(KEY_CREATE_REMOTE_FOLDER, false);
  389. boolean isUseWifiOnly = intent.getBooleanExtra(KEY_WIFI_ONLY, true);
  390. boolean isWhileChargingOnly = intent.getBooleanExtra(KEY_WHILE_CHARGING_ONLY, false);
  391. //long uploadTimestamp = intent.getLongExtra(KEY_UPLOAD_TIMESTAMP, -1);
  392. if (intent.hasExtra(KEY_FILE) && files == null) {
  393. Log_OC.e(TAG, "Incorrect array for OCFiles provided in upload intent");
  394. return Service.START_NOT_STICKY;
  395. } else if (!intent.hasExtra(KEY_FILE)) {
  396. if (localPaths == null) {
  397. Log_OC.e(TAG, "Incorrect array for local paths provided in upload intent");
  398. return Service.START_NOT_STICKY;
  399. }
  400. if (remotePaths == null) {
  401. Log_OC.e(TAG, "Incorrect array for remote paths provided in upload intent");
  402. return Service.START_NOT_STICKY;
  403. }
  404. if (localPaths.length != remotePaths.length) {
  405. Log_OC.e(TAG, "Different number of remote paths and local paths!");
  406. return Service.START_NOT_STICKY;
  407. }
  408. files = new OCFile[localPaths.length];
  409. for (int i = 0; i < localPaths.length; i++) {
  410. files[i] = UploadFileOperation.obtainNewOCFileToUpload(
  411. remotePaths[i],
  412. localPaths[i],
  413. ((mimeTypes != null) ? mimeTypes[i] : null)
  414. );
  415. if (files[i] == null) {
  416. Log_OC.e(TAG, "obtainNewOCFileToUpload() returned null for remotePaths[i]:" + remotePaths[i]
  417. + " and localPaths[i]:" + localPaths[i]);
  418. return Service.START_NOT_STICKY;
  419. }
  420. // don't use mStorageManager here; it's bound to an account, that varies per request
  421. storageManager.saveNewFile(files[i]);
  422. files[i] = storageManager.getFileByLocalPath(files[i].getStoragePath());
  423. }
  424. }
  425. // at this point variable "OCFile[] files" is loaded correctly.
  426. String uploadKey = null;
  427. UploadFileOperation newUpload = null;
  428. try {
  429. for (int i = 0; i < files.length; i++) {
  430. newUpload = new UploadFileOperation(
  431. account,
  432. files[i],
  433. chunked,
  434. forceOverwrite,
  435. localAction,
  436. this
  437. );
  438. if (isCreateRemoteFolder) {
  439. newUpload.setRemoteFolderToBeCreated();
  440. }
  441. newUpload.addDatatransferProgressListener(this);
  442. newUpload.addDatatransferProgressListener((FileUploaderBinder) mBinder);
  443. // Save upload in database
  444. OCUpload ocUpload = new OCUpload(files[i], account);
  445. ocUpload.setForceOverwrite(forceOverwrite);
  446. ocUpload.setCreateRemoteFolder(isCreateRemoteFolder);
  447. ocUpload.setLocalAction(localAction);
  448. ocUpload.setUseWifiOnly(isUseWifiOnly);
  449. ocUpload.setWhileChargingOnly(isWhileChargingOnly);
  450. ocUpload.setUploadStatus(UploadStatus.UPLOAD_LATER);
  451. // storagePath inside upload is the temporary path. file
  452. // contains the correct path used as db reference.
  453. long id = mUploadsStorageManager.storeUpload(ocUpload);
  454. newUpload.setOCUploadId(id);
  455. Pair<String, String> putResult = mPendingUploads.putIfAbsent(
  456. account.name,
  457. files[i].getRemotePath(),
  458. newUpload,
  459. /*String.valueOf(id)*/ null
  460. );
  461. if (putResult != null) {
  462. uploadKey = putResult.first;
  463. requestedUploads.add(uploadKey);
  464. } else {
  465. mUploadsStorageManager.removeUpload(id);
  466. }
  467. // else, file already in the queue of uploads; don't repeat the request
  468. }
  469. } catch (IllegalArgumentException e) {
  470. Log_OC.e(TAG, "Not enough information provided in intent: " + e.getMessage());
  471. return START_NOT_STICKY;
  472. } catch (IllegalStateException e) {
  473. Log_OC.e(TAG, "Bad information provided in intent: " + e.getMessage());
  474. return START_NOT_STICKY;
  475. } catch (Exception e) {
  476. Log_OC.e(TAG, "Unexpected exception while processing upload intent", e);
  477. return START_NOT_STICKY;
  478. }
  479. // *** TODO REWRITE: block inserted to request A retry; too many code copied, no control exception ***/
  480. } else {
  481. if (!intent.hasExtra(KEY_ACCOUNT) || !intent.hasExtra(KEY_RETRY_UPLOAD)) {
  482. Log_OC.e(TAG, "Not enough information provided in intent: no KEY_RETRY_UPLOAD_KEY");
  483. return START_NOT_STICKY;
  484. }
  485. OCUpload upload = intent.getParcelableExtra(KEY_RETRY_UPLOAD);
  486. UploadFileOperation newUpload = new UploadFileOperation(
  487. account,
  488. upload,
  489. chunked,
  490. upload.isForceOverwrite(),
  491. upload.getLocalAction(),
  492. this
  493. );
  494. if (upload.isCreateRemoteFolder()) {
  495. newUpload.setRemoteFolderToBeCreated();
  496. }
  497. newUpload.addDatatransferProgressListener(this);
  498. newUpload.addDatatransferProgressListener((FileUploaderBinder) mBinder);
  499. newUpload.setOCUploadId(upload.getUploadId());
  500. Pair<String, String> putResult = mPendingUploads.putIfAbsent(
  501. account.name,
  502. upload.getRemotePath(),
  503. newUpload,
  504. String.valueOf(upload.getUploadId()
  505. ));
  506. if (putResult != null) {
  507. String uploadKey = putResult.first;
  508. requestedUploads.add(uploadKey);
  509. // Update upload in database
  510. upload.setUploadStatus(UploadStatus.UPLOAD_LATER);
  511. mUploadsStorageManager.updateUpload(upload);
  512. }
  513. }
  514. // *** TODO REWRITE END ***/
  515. if (requestedUploads.size() > 0) {
  516. Message msg = mServiceHandler.obtainMessage();
  517. msg.arg1 = startId;
  518. msg.obj = requestedUploads;
  519. mServiceHandler.sendMessage(msg);
  520. }
  521. return Service.START_NOT_STICKY;
  522. }
  523. /**
  524. * Provides a binder object that clients can use to perform operations on
  525. * the queue of uploads, excepting the addition of new files.
  526. * <p/>
  527. * Implemented to perform cancellation, pause and resume of existing
  528. * uploads.
  529. */
  530. @Override
  531. public IBinder onBind(Intent arg0) {
  532. return mBinder;
  533. }
  534. /**
  535. * Called when ALL the bound clients were onbound.
  536. */
  537. @Override
  538. public boolean onUnbind(Intent intent) {
  539. ((FileUploaderBinder) mBinder).clearListeners();
  540. return false; // not accepting rebinding (default behaviour)
  541. }
  542. @Override
  543. public void onAccountsUpdated(Account[] accounts) {
  544. // Review current upload, and cancel it if its account doen't exist
  545. if (mCurrentUpload != null &&
  546. !AccountUtils.exists(mCurrentUpload.getAccount(), getApplicationContext())) {
  547. mCurrentUpload.cancel();
  548. }
  549. // The rest of uploads are cancelled when they try to start
  550. }
  551. /**
  552. * Binder to let client components to perform operations on the queue of
  553. * uploads.
  554. * <p/>
  555. * It provides by itself the available operations.
  556. */
  557. public class FileUploaderBinder extends Binder implements OnDatatransferProgressListener {
  558. /**
  559. * Map of listeners that will be reported about progress of uploads from a
  560. * {@link FileUploaderBinder} instance
  561. */
  562. private Map<String, OnDatatransferProgressListener> mBoundListeners =
  563. new HashMap<String, OnDatatransferProgressListener>();
  564. /**
  565. * Cancels a pending or current upload of a remote file.
  566. *
  567. * @param account ownCloud account where the remote file will be stored.
  568. * @param file A file in the queue of pending uploads
  569. */
  570. public void cancel(Account account, OCFile file) {
  571. cancel(account.name, file.getRemotePath(), file.getStoragePath());
  572. }
  573. /**
  574. * Cancels a pending or current upload that was persisted.
  575. *
  576. * @param storedUpload Upload operation persisted
  577. */
  578. public void cancel(OCUpload storedUpload) {
  579. cancel(storedUpload.getAccountName(), storedUpload.getRemotePath(), storedUpload.getLocalPath());
  580. }
  581. /**
  582. * Cancels a pending or current upload of a remote file.
  583. *
  584. * @param accountName Local name of an ownCloud account where the remote file will be stored.
  585. * @param remotePath Remote target of the upload
  586. * @param localPath Absolute local path to the source file
  587. */
  588. private void cancel(String accountName, String remotePath, String localPath) {
  589. Pair<UploadFileOperation, String> removeResult =
  590. mPendingUploads.remove(accountName, remotePath);
  591. UploadFileOperation upload = removeResult.first;
  592. if (upload == null &&
  593. mCurrentUpload != null && mCurrentAccount != null &&
  594. mCurrentUpload.getRemotePath().startsWith(remotePath) &&
  595. accountName.equals(mCurrentAccount.name)) {
  596. upload = mCurrentUpload;
  597. }
  598. if (upload != null) {
  599. boolean pending = !upload.isUploadInProgress();
  600. upload.cancel();
  601. if (pending) {
  602. // need to update now table in mUploadsStorageManager, since the operation will not get
  603. // to be run by FileUploader#uploadFile
  604. OCUpload ocUpload =
  605. mUploadsStorageManager.getUploadByLocalPath(localPath)[0];
  606. // TODO bad idea, should search for account + remoteName, or uploadId
  607. ocUpload.setUploadStatus(UploadStatus.UPLOAD_CANCELLED);
  608. ocUpload.setLastResult(UploadResult.CANCELLED);
  609. mUploadsStorageManager.updateUploadStatus(ocUpload);
  610. }
  611. }
  612. }
  613. /**
  614. * Cancels all the uploads for an account
  615. *
  616. * @param account ownCloud account.
  617. */
  618. public void cancel(Account account) {
  619. Log_OC.d(TAG, "Account= " + account.name);
  620. if (mCurrentUpload != null) {
  621. Log_OC.d(TAG, "Current Upload Account= " + mCurrentUpload.getAccount().name);
  622. if (mCurrentUpload.getAccount().name.equals(account.name)) {
  623. mCurrentUpload.cancel();
  624. }
  625. }
  626. // Cancel pending uploads
  627. cancelUploadsForAccount(account);
  628. }
  629. // TODO: Review: Method from FileUploadService with some changes because the merge with FileUploader
  630. public void remove(Account account, OCFile file) {
  631. Pair<UploadFileOperation, String> removeResult =
  632. mPendingUploads.remove(account.name, file.getRemotePath());
  633. UploadFileOperation upload = removeResult.first;
  634. //OCUpload upload = mPendingUploads.remove(buildRemoteName(account, file));
  635. if (upload == null) {
  636. Log_OC.e(TAG, "Could not delete upload " + file + " from mPendingUploads.");
  637. }
  638. int d = mUploadsStorageManager.removeUpload(upload.getStoragePath());
  639. if (d == 0) {
  640. Log_OC.e(TAG, "Could not delete upload " + file.getStoragePath() + " from database.");
  641. }
  642. }
  643. public void remove(OCUpload upload) {
  644. int d = mUploadsStorageManager.removeUpload(upload.getUploadId());
  645. if (d == 0) {
  646. Log_OC.e(TAG, "Could not delete upload " + upload.getRemotePath() + " from database.");
  647. }
  648. }
  649. // TODO: Review: Method from FileUploader with some changes because the merge with FileUploader
  650. // TODO Complete operation to retry the upload
  651. /**
  652. * Puts upload in upload list and tell FileUploader to upload items in list.
  653. */
  654. public void retry(Account account, OCUpload upload) {
  655. // String uploadKey = buildRemoteName(account, upload.getOCFile());
  656. // mPendingUploads.put(uploadKey, upload);
  657. FileUploader.retry(getApplicationContext(), account, upload);
  658. }
  659. public void clearListeners() {
  660. mBoundListeners.clear();
  661. }
  662. /**
  663. * Returns True when the file described by 'file' is being uploaded to
  664. * the ownCloud account 'account' or waiting for it
  665. * <p/>
  666. * If 'file' is a directory, returns 'true' if some of its descendant files
  667. * is uploading or waiting to upload.
  668. * <p/>
  669. * Warning: If remote file exists and !forceOverwrite the original file
  670. * is being returned here. That is, it seems as if the original file is
  671. * being updated when actually a new file is being uploaded.
  672. *
  673. * @param account Owncloud account where the remote file will be stored.
  674. * @param file A file that could be in the queue of pending uploads
  675. */
  676. public boolean isUploading(Account account, OCFile file) {
  677. if (account == null || file == null)
  678. return false;
  679. return (mPendingUploads.contains(account.name, file.getRemotePath()));
  680. }
  681. /**
  682. * Adds a listener interested in the progress of the upload for a concrete file.
  683. *
  684. * @param listener Object to notify about progress of transfer.
  685. * @param account ownCloud account holding the file of interest.
  686. * @param file {@link OCFile} of interest for listener.
  687. */
  688. public void addDatatransferProgressListener(
  689. OnDatatransferProgressListener listener,
  690. Account account,
  691. OCFile file
  692. ) {
  693. if (account == null || file == null || listener == null) return;
  694. String targetKey = buildRemoteName(account.name, file.getRemotePath());
  695. mBoundListeners.put(targetKey, listener);
  696. }
  697. /**
  698. * Adds a listener interested in the progress of the upload for a concrete file.
  699. *
  700. * @param listener Object to notify about progress of transfer.
  701. * @param account ownCloud account holding the file of interest.
  702. * @param ocUpload {@link OCUpload} of interest for listener.
  703. */
  704. public void addDatatransferProgressListener(
  705. OnDatatransferProgressListener listener,
  706. Account account,
  707. OCUpload ocUpload
  708. ) {
  709. if (account == null || ocUpload == null || listener == null) return;
  710. String targetKey = buildRemoteName(account.name, ocUpload.getRemotePath());
  711. mBoundListeners.put(targetKey, listener);
  712. }
  713. /**
  714. * Removes a listener interested in the progress of the upload for a concrete file.
  715. *
  716. * @param listener Object to notify about progress of transfer.
  717. * @param account ownCloud account holding the file of interest.
  718. * @param file {@link OCFile} of interest for listener.
  719. */
  720. public void removeDatatransferProgressListener(
  721. OnDatatransferProgressListener listener,
  722. Account account,
  723. OCFile file
  724. ) {
  725. if (account == null || file == null || listener == null) return;
  726. String targetKey = buildRemoteName(account.name, file.getRemotePath());
  727. if (mBoundListeners.get(targetKey) == listener) {
  728. mBoundListeners.remove(targetKey);
  729. }
  730. }
  731. /**
  732. * Removes a listener interested in the progress of the upload for a concrete file.
  733. *
  734. * @param listener Object to notify about progress of transfer.
  735. * @param account ownCloud account holding the file of interest.
  736. * @param ocUpload Stored upload of interest
  737. */
  738. public void removeDatatransferProgressListener(
  739. OnDatatransferProgressListener listener,
  740. Account account,
  741. OCUpload ocUpload
  742. ) {
  743. if (account == null || ocUpload == null || listener == null) return;
  744. String targetKey = buildRemoteName(account.name, ocUpload.getRemotePath());
  745. if (mBoundListeners.get(targetKey) == listener) {
  746. mBoundListeners.remove(targetKey);
  747. }
  748. }
  749. // TODO: Review: Method from FileUploader with some changes because the merge with FileUploader
  750. @Override
  751. public void onTransferProgress(long progressRate, long totalTransferredSoFar,
  752. long totalToTransfer, String fileName) {
  753. String key = buildRemoteName(mCurrentUpload.getAccount().name, mCurrentUpload.getFile().getRemotePath());
  754. OnDatatransferProgressListener boundListener = mBoundListeners.get(key);
  755. if (boundListener != null) {
  756. boundListener.onTransferProgress(progressRate, totalTransferredSoFar,
  757. totalToTransfer, fileName);
  758. }
  759. }
  760. /**
  761. * Builds a key for the map of listeners.
  762. * <p/>
  763. * TODO use method in IndexedForest, or refactor both to a common place
  764. * add to local database) to better policy (add to local database, then upload)
  765. *
  766. * @param accountName Local name of the ownCloud account where the file to upload belongs.
  767. * @param remotePath Remote path to upload the file to.
  768. * @return Key
  769. */
  770. private String buildRemoteName(String accountName, String remotePath) {
  771. return accountName + remotePath;
  772. }
  773. /*private String buildRemoteName(Account account, OCFile file, long uploadId) {
  774. String suffix = String.valueOf(uploadId);
  775. if (uploadId != -1) {
  776. suffix = "";
  777. }
  778. return account.name + file.getRemotePath() + suffix;
  779. }*/
  780. }
  781. /**
  782. * Upload worker. Performs the pending uploads in the order they were
  783. * requested.
  784. * <p/>
  785. * Created with the Looper of a new thread, started in
  786. * {@link FileUploader#onCreate()}.
  787. */
  788. private static class ServiceHandler extends Handler {
  789. // don't make it a final class, and don't remove the static ; lint will
  790. // warn about a possible memory leak
  791. FileUploader mService;
  792. public ServiceHandler(Looper looper, FileUploader service) {
  793. super(looper);
  794. if (service == null)
  795. throw new IllegalArgumentException("Received invalid NULL in parameter 'service'");
  796. mService = service;
  797. }
  798. @Override
  799. public void handleMessage(Message msg) {
  800. @SuppressWarnings("unchecked")
  801. AbstractList<String> requestedUploads = (AbstractList<String>) msg.obj;
  802. if (msg.obj != null) {
  803. Iterator<String> it = requestedUploads.iterator();
  804. while (it.hasNext()) {
  805. mService.uploadFile(it.next());
  806. }
  807. }
  808. Log_OC.d(TAG, "Stopping command after id " + msg.arg1);
  809. mService.stopSelf(msg.arg1);
  810. }
  811. }
  812. /**
  813. * Core upload method: sends the file(s) to upload
  814. *
  815. * @param uploadKey Key to access the upload to perform, contained in mPendingUploads
  816. */
  817. public void uploadFile(String uploadKey) {
  818. mCurrentUpload = mPendingUploads.get(uploadKey);
  819. if (mCurrentUpload != null) {
  820. // Detect if the account exists
  821. if (AccountUtils.exists(mCurrentUpload.getAccount(), getApplicationContext())) {
  822. Log_OC.d(TAG, "Account " + mCurrentUpload.getAccount().name + " exists");
  823. mUploadsStorageManager.updateDatabaseUploadStart(mCurrentUpload);
  824. notifyUploadStart(mCurrentUpload);
  825. RemoteOperationResult uploadResult = null, grantResult;
  826. try {
  827. /// prepare client object to send the request to the ownCloud server
  828. if (mCurrentAccount == null || !mCurrentAccount.equals(mCurrentUpload.getAccount())) {
  829. mCurrentAccount = mCurrentUpload.getAccount();
  830. mStorageManager = new FileDataStorageManager(
  831. mCurrentAccount,
  832. getContentResolver()
  833. );
  834. } // else, reuse storage manager from previous operation
  835. // always get client from client manager, to get fresh credentials in case of update
  836. OwnCloudAccount ocAccount = new OwnCloudAccount(mCurrentAccount, this);
  837. mUploadClient = OwnCloudClientManagerFactory.getDefaultSingleton().
  838. getClientFor(ocAccount, this);
  839. /// check the existence of the parent folder for the file to upload
  840. String remoteParentPath = new File(mCurrentUpload.getRemotePath()).getParent();
  841. remoteParentPath = remoteParentPath.endsWith(OCFile.PATH_SEPARATOR) ?
  842. remoteParentPath : remoteParentPath + OCFile.PATH_SEPARATOR;
  843. grantResult = grantFolderExistence(remoteParentPath);
  844. /// perform the upload
  845. if (grantResult.isSuccess()) {
  846. /*OCFile parent = mStorageManager.getFileByPath(remoteParentPath);
  847. mCurrentUpload.getFile().setParentId(parent.getFileId());*/
  848. uploadResult = mCurrentUpload.execute(mUploadClient);
  849. if (uploadResult.isSuccess()) {
  850. saveUploadedFile();
  851. } else if (uploadResult.getCode() == ResultCode.SYNC_CONFLICT) {
  852. mStorageManager.saveConflict(mCurrentUpload.getFile(),
  853. mCurrentUpload.getFile().getEtagInConflict());
  854. }
  855. } else {
  856. uploadResult = grantResult;
  857. }
  858. } catch (Exception e) {
  859. Log_OC.e(TAG, "Error uploading", e);
  860. uploadResult = new RemoteOperationResult(e);
  861. } finally {
  862. Pair<UploadFileOperation, String> removeResult;
  863. if (mCurrentUpload.wasRenamed()) {
  864. removeResult = mPendingUploads.removePayload(
  865. mCurrentAccount.name,
  866. mCurrentUpload.getOldFile().getRemotePath()
  867. );
  868. /** TODO: grant that name is also updated for mCurrentUpload.getOCUploadId */
  869. } else {
  870. removeResult = mPendingUploads.removePayload(
  871. mCurrentAccount.name,
  872. mCurrentUpload.getRemotePath()
  873. );
  874. }
  875. mUploadsStorageManager.updateDatabaseUploadResult(uploadResult, mCurrentUpload);
  876. /// notify result
  877. notifyUploadResult(mCurrentUpload, uploadResult);
  878. sendBroadcastUploadFinished(mCurrentUpload, uploadResult, removeResult.second);
  879. }
  880. } else {
  881. // Cancel the transfer
  882. Log_OC.d(TAG, "Account " + mCurrentUpload.getAccount().toString() +
  883. " doesn't exist");
  884. cancelUploadsForAccount(mCurrentUpload.getAccount());
  885. }
  886. }
  887. }
  888. /**
  889. * Checks the existence of the folder where the current file will be uploaded both
  890. * in the remote server and in the local database.
  891. * <p/>
  892. * If the upload is set to enforce the creation of the folder, the method tries to
  893. * create it both remote and locally.
  894. *
  895. * @param pathToGrant Full remote path whose existence will be granted.
  896. * @return An {@link OCFile} instance corresponding to the folder where the file
  897. * will be uploaded.
  898. */
  899. private RemoteOperationResult grantFolderExistence(String pathToGrant) {
  900. RemoteOperation operation = new ExistenceCheckRemoteOperation(pathToGrant, this, false);
  901. RemoteOperationResult result = operation.execute(mUploadClient);
  902. if (!result.isSuccess() && result.getCode() == ResultCode.FILE_NOT_FOUND &&
  903. mCurrentUpload.isRemoteFolderToBeCreated()) {
  904. SyncOperation syncOp = new CreateFolderOperation(pathToGrant, true);
  905. result = syncOp.execute(mUploadClient, mStorageManager);
  906. }
  907. if (result.isSuccess()) {
  908. OCFile parentDir = mStorageManager.getFileByPath(pathToGrant);
  909. if (parentDir == null) {
  910. parentDir = createLocalFolder(pathToGrant);
  911. }
  912. if (parentDir != null) {
  913. result = new RemoteOperationResult(ResultCode.OK);
  914. } else {
  915. result = new RemoteOperationResult(ResultCode.UNKNOWN_ERROR);
  916. }
  917. }
  918. return result;
  919. }
  920. private OCFile createLocalFolder(String remotePath) {
  921. String parentPath = new File(remotePath).getParent();
  922. parentPath = parentPath.endsWith(OCFile.PATH_SEPARATOR) ?
  923. parentPath : parentPath + OCFile.PATH_SEPARATOR;
  924. OCFile parent = mStorageManager.getFileByPath(parentPath);
  925. if (parent == null) {
  926. parent = createLocalFolder(parentPath);
  927. }
  928. if (parent != null) {
  929. OCFile createdFolder = new OCFile(remotePath);
  930. createdFolder.setMimetype("DIR");
  931. createdFolder.setParentId(parent.getFileId());
  932. mStorageManager.saveFile(createdFolder);
  933. return createdFolder;
  934. }
  935. return null;
  936. }
  937. /**
  938. * Saves a OC File after a successful upload.
  939. * <p/>
  940. * A PROPFIND is necessary to keep the props in the local database
  941. * synchronized with the server, specially the modification time and Etag
  942. * (where available)
  943. * <p/>
  944. * TODO move into UploadFileOperation
  945. */
  946. private void saveUploadedFile() {
  947. OCFile file = mCurrentUpload.getFile();
  948. if (file.fileExists()) {
  949. file = mStorageManager.getFileById(file.getFileId());
  950. }
  951. long syncDate = System.currentTimeMillis();
  952. file.setLastSyncDateForData(syncDate);
  953. // new PROPFIND to keep data consistent with server
  954. // in theory, should return the same we already have
  955. ReadRemoteFileOperation operation =
  956. new ReadRemoteFileOperation(mCurrentUpload.getRemotePath());
  957. RemoteOperationResult result = operation.execute(mUploadClient);
  958. if (result.isSuccess()) {
  959. updateOCFile(file, (RemoteFile) result.getData().get(0));
  960. file.setLastSyncDateForProperties(syncDate);
  961. } else {
  962. Log_OC.e(TAG, "Error reading properties of file after successful upload; this is gonna hurt...");
  963. }
  964. // / maybe this would be better as part of UploadFileOperation... or
  965. // maybe all this method
  966. if (mCurrentUpload.wasRenamed()) {
  967. OCFile oldFile = mCurrentUpload.getOldFile();
  968. if (oldFile.fileExists()) {
  969. oldFile.setStoragePath(null);
  970. mStorageManager.saveFile(oldFile);
  971. mStorageManager.saveConflict(oldFile, null);
  972. } // else: it was just an automatic renaming due to a name
  973. // coincidence; nothing else is needed, the storagePath is right
  974. // in the instance returned by mCurrentUpload.getFile()
  975. }
  976. file.setNeedsUpdateThumbnail(true);
  977. mStorageManager.saveFile(file);
  978. mStorageManager.saveConflict(file, null);
  979. mStorageManager.triggerMediaScan(file.getStoragePath());
  980. }
  981. private void updateOCFile(OCFile file, RemoteFile remoteFile) {
  982. file.setCreationTimestamp(remoteFile.getCreationTimestamp());
  983. file.setFileLength(remoteFile.getLength());
  984. file.setMimetype(remoteFile.getMimeType());
  985. file.setModificationTimestamp(remoteFile.getModifiedTimestamp());
  986. file.setModificationTimestampAtLastSyncForData(remoteFile.getModifiedTimestamp());
  987. file.setEtag(remoteFile.getEtag());
  988. file.setRemoteId(remoteFile.getRemoteId());
  989. }
  990. /**
  991. * Creates a status notification to show the upload progress
  992. *
  993. * @param upload Upload operation starting.
  994. */
  995. private void notifyUploadStart(UploadFileOperation upload) {
  996. // / create status notification with a progress bar
  997. mLastPercent = 0;
  998. mNotificationBuilder =
  999. NotificationBuilderWithProgressBar.newNotificationBuilderWithProgressBar(this);
  1000. mNotificationBuilder
  1001. .setOngoing(true)
  1002. .setSmallIcon(R.drawable.notification_icon)
  1003. .setTicker(getString(R.string.uploader_upload_in_progress_ticker))
  1004. .setContentTitle(getString(R.string.uploader_upload_in_progress_ticker))
  1005. .setProgress(100, 0, false)
  1006. .setContentText(
  1007. String.format(getString(R.string.uploader_upload_in_progress_content), 0, upload.getFileName
  1008. ()));
  1009. /// includes a pending intent in the notification showing the details
  1010. Intent showUploadListIntent = new Intent(this, UploadListActivity.class);
  1011. showUploadListIntent.putExtra(FileActivity.EXTRA_FILE, upload.getFile());
  1012. showUploadListIntent.putExtra(FileActivity.EXTRA_ACCOUNT, upload.getAccount());
  1013. showUploadListIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
  1014. mNotificationBuilder.setContentIntent(PendingIntent.getActivity(this, (int) System.currentTimeMillis(),
  1015. showUploadListIntent, 0));
  1016. // TODO: decide where do we go to navigate when the user clicks the notification
  1017. /// includes a pending intent in the notification showing the details view of the file
  1018. // Intent showDetailsIntent = new Intent(this, FileDisplayActivity.class);
  1019. // showDetailsIntent.putExtra(FileActivity.EXTRA_FILE, (Parcelable) upload.getFile());
  1020. // showDetailsIntent.putExtra(FileActivity.EXTRA_ACCOUNT, upload.getAccount());
  1021. // showDetailsIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
  1022. // mNotificationBuilder.setContentIntent(PendingIntent.getActivity(
  1023. // this, (int) System.currentTimeMillis(), showDetailsIntent, 0
  1024. // ));
  1025. mNotificationManager.notify(R.string.uploader_upload_in_progress_ticker, mNotificationBuilder.build());
  1026. // TODO really needed?
  1027. sendBroadcastUploadStarted(mCurrentUpload);
  1028. }
  1029. /**
  1030. * Callback method to update the progress bar in the status notification
  1031. */
  1032. @Override
  1033. public void onTransferProgress(long progressRate, long totalTransferredSoFar,
  1034. long totalToTransfer, String filePath) {
  1035. int percent = (int) (100.0 * ((double) totalTransferredSoFar) / ((double) totalToTransfer));
  1036. if (percent != mLastPercent) {
  1037. mNotificationBuilder.setProgress(100, percent, false);
  1038. String fileName = filePath.substring(filePath.lastIndexOf(FileUtils.PATH_SEPARATOR) + 1);
  1039. String text = String.format(getString(R.string.uploader_upload_in_progress_content), percent, fileName);
  1040. mNotificationBuilder.setContentText(text);
  1041. mNotificationManager.notify(R.string.uploader_upload_in_progress_ticker, mNotificationBuilder.build());
  1042. }
  1043. mLastPercent = percent;
  1044. }
  1045. /**
  1046. * Updates the status notification with the result of an upload operation.
  1047. *
  1048. * @param uploadResult Result of the upload operation.
  1049. * @param upload Finished upload operation
  1050. */
  1051. private void notifyUploadResult(UploadFileOperation upload,
  1052. RemoteOperationResult uploadResult) {
  1053. Log_OC.d(TAG, "NotifyUploadResult with resultCode: " + uploadResult.getCode());
  1054. // / cancelled operation or success -> silent removal of progress notification
  1055. mNotificationManager.cancel(R.string.uploader_upload_in_progress_ticker);
  1056. // Show the result: success or fail notification
  1057. if (!uploadResult.isCancelled()) {
  1058. int tickerId = (uploadResult.isSuccess()) ? R.string.uploader_upload_succeeded_ticker :
  1059. R.string.uploader_upload_failed_ticker;
  1060. String content;
  1061. // check credentials error
  1062. boolean needsToUpdateCredentials = (
  1063. uploadResult.getCode() == ResultCode.UNAUTHORIZED ||
  1064. uploadResult.isIdPRedirection()
  1065. );
  1066. tickerId = (needsToUpdateCredentials) ?
  1067. R.string.uploader_upload_failed_credentials_error : tickerId;
  1068. mNotificationBuilder
  1069. .setTicker(getString(tickerId))
  1070. .setContentTitle(getString(tickerId))
  1071. .setAutoCancel(true)
  1072. .setOngoing(false)
  1073. .setProgress(0, 0, false);
  1074. content = ErrorMessageAdapter.getErrorCauseMessage(
  1075. uploadResult, upload, getResources()
  1076. );
  1077. if (needsToUpdateCredentials) {
  1078. // let the user update credentials with one click
  1079. Intent updateAccountCredentials = new Intent(this, AuthenticatorActivity.class);
  1080. updateAccountCredentials.putExtra(
  1081. AuthenticatorActivity.EXTRA_ACCOUNT, upload.getAccount()
  1082. );
  1083. updateAccountCredentials.putExtra(
  1084. AuthenticatorActivity.EXTRA_ACTION,
  1085. AuthenticatorActivity.ACTION_UPDATE_EXPIRED_TOKEN
  1086. );
  1087. updateAccountCredentials.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  1088. updateAccountCredentials.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
  1089. updateAccountCredentials.addFlags(Intent.FLAG_FROM_BACKGROUND);
  1090. mNotificationBuilder.setContentIntent(PendingIntent.getActivity(
  1091. this,
  1092. (int) System.currentTimeMillis(),
  1093. updateAccountCredentials,
  1094. PendingIntent.FLAG_ONE_SHOT
  1095. ));
  1096. mUploadClient = null;
  1097. // grant that future retries on the same account will get the fresh credentials
  1098. } else {
  1099. mNotificationBuilder.setContentText(content);
  1100. // Changes for compilation
  1101. // if (upload.isInstant()) {
  1102. // DbHandler db = null;
  1103. // try {
  1104. // db = new DbHandler(this.getBaseContext());
  1105. // String message = uploadResult.getLogMessage() + " errorCode: " +
  1106. // uploadResult.getCode();
  1107. // Log_OC.e(TAG, message + " Http-Code: " + uploadResult.getHttpCode());
  1108. // if (uploadResult.getCode() == ResultCode.QUOTA_EXCEEDED) {
  1109. // //message = getString(R.string.failed_upload_quota_exceeded_text);
  1110. // if (db.updateFileState(
  1111. // upload.getOriginalStoragePath(),
  1112. // DbHandler.UPLOAD_STATUS_UPLOAD_FAILED,
  1113. // message) == 0) {
  1114. // db.putFileForLater(
  1115. // upload.getOriginalStoragePath(),
  1116. // upload.getAccount().name,
  1117. // message
  1118. // );
  1119. // }
  1120. // }
  1121. // } finally {
  1122. // if (db != null) {
  1123. // db.close();
  1124. // }
  1125. // }
  1126. // }
  1127. }
  1128. if (!uploadResult.isSuccess()) {
  1129. //in case of failure, do not show details file view (because there is no file!)
  1130. Intent showUploadListIntent = new Intent(this, UploadListActivity.class);
  1131. showUploadListIntent.putExtra(FileActivity.EXTRA_FILE, upload.getFile());
  1132. showUploadListIntent.putExtra(FileActivity.EXTRA_ACCOUNT, upload.getAccount());
  1133. showUploadListIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
  1134. mNotificationBuilder.setContentIntent(PendingIntent.getActivity(this, (int) System.currentTimeMillis(),
  1135. showUploadListIntent, 0));
  1136. }
  1137. mNotificationBuilder.setContentText(content);
  1138. mNotificationManager.notify(tickerId, mNotificationBuilder.build());
  1139. if (uploadResult.isSuccess()) {
  1140. //Changes for compilation
  1141. // DbHandler db = new DbHandler(this.getBaseContext());
  1142. // db.removeIUPendingFile(mCurrentUpload.getOriginalStoragePath());
  1143. // db.close();
  1144. mPendingUploads.remove(upload.getAccount().name, upload.getFile().getRemotePath());
  1145. //updateDatabaseUploadResult(uploadResult, mCurrentUpload);
  1146. // remove success notification, with a delay of 2 seconds
  1147. NotificationDelayer.cancelWithDelay(
  1148. mNotificationManager,
  1149. R.string.uploader_upload_succeeded_ticker,
  1150. 2000);
  1151. }
  1152. }
  1153. }
  1154. /**
  1155. * Sends a broadcast in order to the interested activities can update their
  1156. * view
  1157. *
  1158. * @param upload Finished upload operation
  1159. */
  1160. private void sendBroadcastUploadStarted(
  1161. UploadFileOperation upload) {
  1162. Intent start = new Intent(getUploadStartMessage());
  1163. start.putExtra(EXTRA_REMOTE_PATH, upload.getRemotePath()); // real remote
  1164. start.putExtra(EXTRA_OLD_FILE_PATH, upload.getOriginalStoragePath());
  1165. start.putExtra(ACCOUNT_NAME, upload.getAccount().name);
  1166. sendStickyBroadcast(start);
  1167. }
  1168. /**
  1169. * Sends a broadcast in order to the interested activities can update their
  1170. * view
  1171. *
  1172. * @param upload Finished upload operation
  1173. * @param uploadResult Result of the upload operation
  1174. * @param unlinkedFromRemotePath Path in the uploads tree where the upload was unlinked from
  1175. */
  1176. private void sendBroadcastUploadFinished(
  1177. UploadFileOperation upload,
  1178. RemoteOperationResult uploadResult,
  1179. String unlinkedFromRemotePath) {
  1180. Intent end = new Intent(getUploadFinishMessage());
  1181. end.putExtra(EXTRA_REMOTE_PATH, upload.getRemotePath()); // real remote
  1182. // path, after
  1183. // possible
  1184. // automatic
  1185. // renaming
  1186. if (upload.wasRenamed()) {
  1187. end.putExtra(EXTRA_OLD_REMOTE_PATH, upload.getOldFile().getRemotePath());
  1188. }
  1189. end.putExtra(EXTRA_OLD_FILE_PATH, upload.getOriginalStoragePath());
  1190. end.putExtra(ACCOUNT_NAME, upload.getAccount().name);
  1191. end.putExtra(EXTRA_UPLOAD_RESULT, uploadResult.isSuccess());
  1192. if (unlinkedFromRemotePath != null) {
  1193. end.putExtra(EXTRA_LINKED_TO_PATH, unlinkedFromRemotePath);
  1194. }
  1195. sendStickyBroadcast(end);
  1196. }
  1197. /**
  1198. * Remove uploads of an account
  1199. *
  1200. * @param account Downloads account to remove
  1201. */
  1202. private void cancelUploadsForAccount(Account account) {
  1203. // Cancel pending uploads
  1204. mPendingUploads.remove(account.name);
  1205. }
  1206. /**
  1207. * Call if all pending uploads are to be retried.
  1208. */
  1209. // public static void retry(Context context) {
  1210. // retry(context, null);
  1211. // }
  1212. }