FileUploader.java 53 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author Bartek Przybylski
  5. * @author masensio
  6. * @author LukeOwnCloud
  7. * @author David A. Velasco
  8. *
  9. * Copyright (C) 2012 Bartek Przybylski
  10. * Copyright (C) 2012-2016 ownCloud Inc.
  11. *
  12. * This program is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License version 2,
  14. * as published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  23. */
  24. package com.owncloud.android.files.services;
  25. import android.accounts.Account;
  26. import android.accounts.AccountManager;
  27. import android.accounts.OnAccountsUpdateListener;
  28. import android.app.Notification;
  29. import android.app.NotificationManager;
  30. import android.app.PendingIntent;
  31. import android.app.Service;
  32. import android.content.Context;
  33. import android.content.Intent;
  34. import android.graphics.BitmapFactory;
  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.Parcelable;
  42. import android.os.Process;
  43. import android.support.v4.app.NotificationCompat;
  44. import android.util.Pair;
  45. import com.evernote.android.job.JobRequest;
  46. import com.evernote.android.job.util.Device;
  47. import com.owncloud.android.MainApp;
  48. import com.owncloud.android.R;
  49. import com.owncloud.android.authentication.AccountUtils;
  50. import com.owncloud.android.authentication.AuthenticatorActivity;
  51. import com.owncloud.android.datamodel.FileDataStorageManager;
  52. import com.owncloud.android.datamodel.OCFile;
  53. import com.owncloud.android.datamodel.ThumbnailsCacheManager;
  54. import com.owncloud.android.datamodel.UploadsStorageManager;
  55. import com.owncloud.android.datamodel.UploadsStorageManager.UploadStatus;
  56. import com.owncloud.android.db.OCUpload;
  57. import com.owncloud.android.db.UploadResult;
  58. import com.owncloud.android.lib.common.OwnCloudAccount;
  59. import com.owncloud.android.lib.common.OwnCloudClient;
  60. import com.owncloud.android.lib.common.OwnCloudClientManagerFactory;
  61. import com.owncloud.android.lib.common.network.OnDatatransferProgressListener;
  62. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  63. import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCode;
  64. import com.owncloud.android.lib.common.utils.Log_OC;
  65. import com.owncloud.android.lib.resources.files.FileUtils;
  66. import com.owncloud.android.lib.resources.status.OwnCloudVersion;
  67. import com.owncloud.android.operations.UploadFileOperation;
  68. import com.owncloud.android.ui.activity.FileActivity;
  69. import com.owncloud.android.ui.activity.UploadListActivity;
  70. import com.owncloud.android.ui.notifications.NotificationUtils;
  71. import com.owncloud.android.utils.ErrorMessageAdapter;
  72. import com.owncloud.android.utils.ThemeUtils;
  73. import com.owncloud.android.utils.UploadUtils;
  74. import java.io.File;
  75. import java.util.AbstractList;
  76. import java.util.HashMap;
  77. import java.util.Iterator;
  78. import java.util.Map;
  79. import java.util.Vector;
  80. import javax.annotation.Nullable;
  81. /**
  82. * Service for uploading files. Invoke using context.startService(...).
  83. *
  84. * Files to be uploaded are stored persistently using {@link UploadsStorageManager}.
  85. *
  86. * On next invocation of {@link FileUploader} uploaded files which
  87. * previously failed will be uploaded again until either upload succeeded or a
  88. * fatal error occurred.
  89. *
  90. * Every file passed to this service is uploaded. No filtering is performed.
  91. * However, Intent keys (e.g., KEY_WIFI_ONLY) are obeyed.
  92. */
  93. public class FileUploader extends Service
  94. implements OnDatatransferProgressListener, OnAccountsUpdateListener, UploadFileOperation.OnRenameListener {
  95. private static final String TAG = FileUploader.class.getSimpleName();
  96. private static final String UPLOADS_ADDED_MESSAGE = "UPLOADS_ADDED";
  97. private static final String UPLOAD_START_MESSAGE = "UPLOAD_START";
  98. private static final String UPLOAD_FINISH_MESSAGE = "UPLOAD_FINISH";
  99. public static final String EXTRA_UPLOAD_RESULT = "RESULT";
  100. public static final String EXTRA_REMOTE_PATH = "REMOTE_PATH";
  101. public static final String EXTRA_OLD_REMOTE_PATH = "OLD_REMOTE_PATH";
  102. public static final String EXTRA_OLD_FILE_PATH = "OLD_FILE_PATH";
  103. public static final String EXTRA_LINKED_TO_PATH = "LINKED_TO";
  104. public static final String ACCOUNT_NAME = "ACCOUNT_NAME";
  105. private static final int FOREGROUND_SERVICE_ID = 411;
  106. public static final String KEY_FILE = "FILE";
  107. public static final String KEY_LOCAL_FILE = "LOCAL_FILE";
  108. public static final String KEY_REMOTE_FILE = "REMOTE_FILE";
  109. public static final String KEY_MIME_TYPE = "MIME_TYPE";
  110. private Notification mNotification;
  111. /**
  112. * Call this Service with only this Intent key if all pending uploads are to be retried.
  113. */
  114. private static final String KEY_RETRY = "KEY_RETRY";
  115. // /**
  116. // * Call this Service with KEY_RETRY and KEY_RETRY_REMOTE_PATH to retry
  117. // * upload of file identified by KEY_RETRY_REMOTE_PATH.
  118. // */
  119. // private static final String KEY_RETRY_REMOTE_PATH = "KEY_RETRY_REMOTE_PATH";
  120. /**
  121. * Call this Service with KEY_RETRY and KEY_RETRY_UPLOAD to retry
  122. * upload of file identified by KEY_RETRY_UPLOAD.
  123. */
  124. private static final String KEY_RETRY_UPLOAD = "KEY_RETRY_UPLOAD";
  125. /**
  126. * {@link Account} to which file is to be uploaded.
  127. */
  128. public static final String KEY_ACCOUNT = "ACCOUNT";
  129. /**
  130. * Set to true if remote file is to be overwritten. Default action is to upload with different name.
  131. */
  132. public static final String KEY_FORCE_OVERWRITE = "KEY_FORCE_OVERWRITE";
  133. /**
  134. * Set to true if remote folder is to be created if it does not exist.
  135. */
  136. public static final String KEY_CREATE_REMOTE_FOLDER = "CREATE_REMOTE_FOLDER";
  137. /**
  138. * Key to signal what is the origin of the upload request
  139. */
  140. public static final String KEY_CREATED_BY = "CREATED_BY";
  141. public static final String KEY_WHILE_ON_WIFI_ONLY = "KEY_ON_WIFI_ONLY";
  142. /**
  143. * Set to true if upload is to performed only when phone is being charged.
  144. */
  145. public static final String KEY_WHILE_CHARGING_ONLY = "KEY_WHILE_CHARGING_ONLY";
  146. public static final String KEY_LOCAL_BEHAVIOUR = "BEHAVIOUR";
  147. public static final int LOCAL_BEHAVIOUR_COPY = 0;
  148. public static final int LOCAL_BEHAVIOUR_MOVE = 1;
  149. public static final int LOCAL_BEHAVIOUR_FORGET = 2;
  150. public static final int LOCAL_BEHAVIOUR_DELETE = 3;
  151. private Looper mServiceLooper;
  152. private ServiceHandler mServiceHandler;
  153. private IBinder mBinder;
  154. private OwnCloudClient mUploadClient = null;
  155. private Account mCurrentAccount = null;
  156. private FileDataStorageManager mStorageManager;
  157. //since there can be only one instance of an Android service, there also just one db connection.
  158. private UploadsStorageManager mUploadsStorageManager = null;
  159. private IndexedForest<UploadFileOperation> mPendingUploads = new IndexedForest<UploadFileOperation>();
  160. /**
  161. * {@link UploadFileOperation} object of ongoing upload. Can be null. Note: There can only be one concurrent upload!
  162. */
  163. private UploadFileOperation mCurrentUpload = null;
  164. private NotificationManager mNotificationManager;
  165. private NotificationCompat.Builder mNotificationBuilder;
  166. private int mLastPercent;
  167. public static String getUploadsAddedMessage() {
  168. return FileUploader.class.getName() + UPLOADS_ADDED_MESSAGE;
  169. }
  170. public static String getUploadStartMessage() {
  171. return FileUploader.class.getName() + UPLOAD_START_MESSAGE;
  172. }
  173. public static String getUploadFinishMessage() {
  174. return FileUploader.class.getName() + UPLOAD_FINISH_MESSAGE;
  175. }
  176. @Override
  177. public void onRenameUpload() {
  178. mUploadsStorageManager.updateDatabaseUploadStart(mCurrentUpload);
  179. sendBroadcastUploadStarted(mCurrentUpload);
  180. }
  181. /**
  182. * Helper class providing methods to ease requesting commands to {@link FileUploader} .
  183. *
  184. * Avoids the need of checking once and again what extras are needed or optional
  185. * in the {@link Intent} to pass to {@link Context#startService(Intent)}.
  186. */
  187. public static class UploadRequester {
  188. /**
  189. * Call to upload several new files
  190. */
  191. public void uploadNewFile(
  192. Context context,
  193. Account account,
  194. String[] localPaths,
  195. String[] remotePaths,
  196. String[] mimeTypes,
  197. Integer behaviour,
  198. Boolean createRemoteFolder,
  199. int createdBy,
  200. boolean requiresWifi,
  201. boolean requiresCharging
  202. ) {
  203. Intent intent = new Intent(context, FileUploader.class);
  204. intent.putExtra(FileUploader.KEY_ACCOUNT, account);
  205. intent.putExtra(FileUploader.KEY_LOCAL_FILE, localPaths);
  206. intent.putExtra(FileUploader.KEY_REMOTE_FILE, remotePaths);
  207. intent.putExtra(FileUploader.KEY_MIME_TYPE, mimeTypes);
  208. intent.putExtra(FileUploader.KEY_LOCAL_BEHAVIOUR, behaviour);
  209. intent.putExtra(FileUploader.KEY_CREATE_REMOTE_FOLDER, createRemoteFolder);
  210. intent.putExtra(FileUploader.KEY_CREATED_BY, createdBy);
  211. intent.putExtra(FileUploader.KEY_WHILE_ON_WIFI_ONLY, requiresWifi);
  212. intent.putExtra(FileUploader.KEY_WHILE_CHARGING_ONLY, requiresCharging);
  213. context.startService(intent);
  214. }
  215. public void uploadFileWithOverwrite(
  216. Context context,
  217. Account account,
  218. String[] localPaths,
  219. String[] remotePaths,
  220. String[] mimeTypes,
  221. Integer behaviour,
  222. Boolean createRemoteFolder,
  223. int createdBy,
  224. boolean requiresWifi,
  225. boolean requiresCharging,
  226. boolean overwrite
  227. ) {
  228. Intent intent = new Intent(context, FileUploader.class);
  229. intent.putExtra(FileUploader.KEY_ACCOUNT, account);
  230. intent.putExtra(FileUploader.KEY_LOCAL_FILE, localPaths);
  231. intent.putExtra(FileUploader.KEY_REMOTE_FILE, remotePaths);
  232. intent.putExtra(FileUploader.KEY_MIME_TYPE, mimeTypes);
  233. intent.putExtra(FileUploader.KEY_LOCAL_BEHAVIOUR, behaviour);
  234. intent.putExtra(FileUploader.KEY_CREATE_REMOTE_FOLDER, createRemoteFolder);
  235. intent.putExtra(FileUploader.KEY_CREATED_BY, createdBy);
  236. intent.putExtra(FileUploader.KEY_WHILE_ON_WIFI_ONLY, requiresWifi);
  237. intent.putExtra(FileUploader.KEY_WHILE_CHARGING_ONLY, requiresCharging);
  238. intent.putExtra(FileUploader.KEY_FORCE_OVERWRITE, overwrite);
  239. context.startService(intent);
  240. }
  241. /**
  242. * Call to upload a file
  243. */
  244. public void uploadFileWithOverwrite(Context context, Account account, String localPath, String remotePath, int
  245. behaviour, String mimeType, boolean createRemoteFile, int createdBy, boolean requiresWifi,
  246. boolean requiresCharging, boolean overwrite) {
  247. uploadFileWithOverwrite(
  248. context,
  249. account,
  250. new String[]{localPath},
  251. new String[]{remotePath},
  252. new String[]{mimeType},
  253. behaviour,
  254. createRemoteFile,
  255. createdBy,
  256. requiresWifi,
  257. requiresCharging,
  258. overwrite
  259. );
  260. }
  261. /**
  262. * Call to upload a new single file
  263. */
  264. public void uploadNewFile(Context context, Account account, String localPath, String remotePath, int
  265. behaviour, String mimeType, boolean createRemoteFile, int createdBy, boolean requiresWifi,
  266. boolean requiresCharging) {
  267. uploadNewFile(
  268. context,
  269. account,
  270. new String[]{localPath},
  271. new String[]{remotePath},
  272. new String[]{mimeType},
  273. behaviour,
  274. createRemoteFile,
  275. createdBy,
  276. requiresWifi,
  277. requiresCharging
  278. );
  279. }
  280. /**
  281. * Call to update multiple files already uploaded
  282. */
  283. public void uploadUpdate(Context context, Account account, OCFile[] existingFiles, Integer behaviour,
  284. Boolean forceOverwrite) {
  285. Intent intent = new Intent(context, FileUploader.class);
  286. intent.putExtra(FileUploader.KEY_ACCOUNT, account);
  287. intent.putExtra(FileUploader.KEY_FILE, existingFiles);
  288. intent.putExtra(FileUploader.KEY_LOCAL_BEHAVIOUR, behaviour);
  289. intent.putExtra(FileUploader.KEY_FORCE_OVERWRITE, forceOverwrite);
  290. context.startService(intent);
  291. }
  292. /**
  293. * Call to update a dingle file already uploaded
  294. */
  295. public void uploadUpdate(Context context, Account account, OCFile existingFile, Integer behaviour,
  296. Boolean forceOverwrite) {
  297. uploadUpdate(context, account, new OCFile[]{existingFile}, behaviour, forceOverwrite);
  298. }
  299. /**
  300. * Call to retry upload identified by remotePath
  301. */
  302. public void retry (Context context, OCUpload upload) {
  303. if (upload != null && context != null) {
  304. Account account = AccountUtils.getOwnCloudAccountByName(
  305. context,
  306. upload.getAccountName()
  307. );
  308. retry(context, account, upload);
  309. } else {
  310. throw new IllegalArgumentException("Null parameter!");
  311. }
  312. }
  313. /**
  314. * Retry a subset of all the stored failed uploads.
  315. *
  316. * @param context Caller {@link Context}
  317. * @param account If not null, only failed uploads to this OC account will be retried; otherwise,
  318. * uploads of all accounts will be retried.
  319. * @param uploadResult If not null, only failed uploads with the result specified will be retried;
  320. * otherwise, failed uploads due to any result will be retried.
  321. */
  322. public void retryFailedUploads(Context context, Account account, UploadResult uploadResult) {
  323. UploadsStorageManager uploadsStorageManager = new UploadsStorageManager(context.getContentResolver(), context);
  324. OCUpload[] failedUploads = uploadsStorageManager.getFailedUploads();
  325. Account currentAccount = null;
  326. boolean resultMatch;
  327. boolean accountMatch;
  328. for ( OCUpload failedUpload: failedUploads) {
  329. accountMatch = (account == null || account.name.equals(failedUpload.getAccountName()));
  330. resultMatch = ((uploadResult == null || uploadResult.equals(failedUpload.getLastResult())));
  331. if (accountMatch && resultMatch) {
  332. if (currentAccount == null ||
  333. !currentAccount.name.equals(failedUpload.getAccountName())) {
  334. currentAccount = failedUpload.getAccount(context);
  335. }
  336. retry(context, currentAccount, failedUpload);
  337. }
  338. }
  339. }
  340. /**
  341. * Private implementation of retry.
  342. *
  343. * @param context
  344. * @param account
  345. * @param upload
  346. */
  347. private void retry(Context context, Account account, OCUpload upload) {
  348. if (upload != null) {
  349. Intent i = new Intent(context, FileUploader.class);
  350. i.putExtra(FileUploader.KEY_RETRY, true);
  351. i.putExtra(FileUploader.KEY_ACCOUNT, account);
  352. i.putExtra(FileUploader.KEY_RETRY_UPLOAD, upload);
  353. context.startService(i);
  354. }
  355. }
  356. }
  357. /**
  358. * Service initialization
  359. */
  360. @Override
  361. public void onCreate() {
  362. super.onCreate();
  363. Log_OC.d(TAG, "Creating service");
  364. mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  365. HandlerThread thread = new HandlerThread("FileUploaderThread",
  366. Process.THREAD_PRIORITY_BACKGROUND);
  367. thread.start();
  368. mServiceLooper = thread.getLooper();
  369. mServiceHandler = new ServiceHandler(mServiceLooper, this);
  370. mBinder = new FileUploaderBinder();
  371. mUploadsStorageManager = new UploadsStorageManager(getContentResolver(), getApplicationContext());
  372. mNotification = new NotificationCompat.Builder(this).setContentTitle(getApplicationContext().
  373. getResources().getString(R.string.app_name))
  374. .setContentText(getApplicationContext().getResources().getString(R.string.foreground_service_upload))
  375. .setSmallIcon(R.drawable.notification_icon)
  376. .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.notification_icon))
  377. .setColor(ThemeUtils.primaryColor())
  378. .build();
  379. int failedCounter = mUploadsStorageManager.failInProgressUploads(
  380. UploadResult.SERVICE_INTERRUPTED // Add UploadResult.KILLED?
  381. );
  382. if (failedCounter > 0) {
  383. resurrection();
  384. }
  385. // add AccountsUpdatedListener
  386. AccountManager am = AccountManager.get(getApplicationContext());
  387. am.addOnAccountsUpdatedListener(this, null, false);
  388. }
  389. /**
  390. * Service clean-up when restarted after being killed
  391. */
  392. private void resurrection() {
  393. // remove stucked notification
  394. mNotificationManager.cancel(R.string.uploader_upload_in_progress_ticker);
  395. }
  396. /**
  397. * Service clean up
  398. */
  399. @Override
  400. public void onDestroy() {
  401. Log_OC.v(TAG, "Destroying service");
  402. mBinder = null;
  403. mServiceHandler = null;
  404. mServiceLooper.quit();
  405. mServiceLooper = null;
  406. mNotificationManager = null;
  407. // remove AccountsUpdatedListener
  408. AccountManager am = AccountManager.get(getApplicationContext());
  409. am.removeOnAccountsUpdatedListener(this);
  410. super.onDestroy();
  411. }
  412. /**
  413. * Entry point to add one or several files to the queue of uploads.
  414. *
  415. * New uploads are added calling to startService(), resulting in a call to
  416. * this method. This ensures the service will keep on working although the
  417. * caller activity goes away.
  418. */
  419. @Override
  420. public int onStartCommand(Intent intent, int flags, int startId) {
  421. Log_OC.d(TAG, "Starting command with id " + startId);
  422. startForeground(FOREGROUND_SERVICE_ID, mNotification);
  423. boolean retry = intent.getBooleanExtra(KEY_RETRY, false);
  424. AbstractList<String> requestedUploads = new Vector<String>();
  425. if (!intent.hasExtra(KEY_ACCOUNT)) {
  426. Log_OC.e(TAG, "Not enough information provided in intent");
  427. return Service.START_NOT_STICKY;
  428. }
  429. Account account = intent.getParcelableExtra(KEY_ACCOUNT);
  430. if (!AccountUtils.exists(account, getApplicationContext())) {
  431. return Service.START_NOT_STICKY;
  432. }
  433. OwnCloudVersion ocv = AccountUtils.getServerVersion(account);
  434. boolean chunked = ocv.isChunkedUploadSupported();
  435. boolean onWifiOnly = intent.getBooleanExtra(KEY_WHILE_ON_WIFI_ONLY, false);
  436. boolean whileChargingOnly = intent.getBooleanExtra(KEY_WHILE_CHARGING_ONLY, false);
  437. if (!retry) {
  438. if (!(intent.hasExtra(KEY_LOCAL_FILE) ||
  439. intent.hasExtra(KEY_FILE))) {
  440. Log_OC.e(TAG, "Not enough information provided in intent");
  441. return Service.START_NOT_STICKY;
  442. }
  443. String[] localPaths = null;
  444. String[] remotePaths = null;
  445. String[] mimeTypes = null;
  446. OCFile[] files = null;
  447. if (intent.hasExtra(KEY_FILE)) {
  448. Parcelable[] files_temp = intent.getParcelableArrayExtra(KEY_FILE);
  449. files = new OCFile[files_temp.length];
  450. System.arraycopy(files_temp, 0, files, 0, files_temp.length);
  451. } else {
  452. localPaths = intent.getStringArrayExtra(KEY_LOCAL_FILE);
  453. remotePaths = intent.getStringArrayExtra(KEY_REMOTE_FILE);
  454. mimeTypes = intent.getStringArrayExtra(KEY_MIME_TYPE);
  455. }
  456. boolean forceOverwrite = intent.getBooleanExtra(KEY_FORCE_OVERWRITE, false);
  457. int localAction = intent.getIntExtra(KEY_LOCAL_BEHAVIOUR, LOCAL_BEHAVIOUR_FORGET);
  458. boolean isCreateRemoteFolder = intent.getBooleanExtra(KEY_CREATE_REMOTE_FOLDER, false);
  459. int createdBy = intent.getIntExtra(KEY_CREATED_BY, UploadFileOperation.CREATED_BY_USER);
  460. if (intent.hasExtra(KEY_FILE) && files == null) {
  461. Log_OC.e(TAG, "Incorrect array for OCFiles provided in upload intent");
  462. return Service.START_NOT_STICKY;
  463. } else if (!intent.hasExtra(KEY_FILE)) {
  464. if (localPaths == null) {
  465. Log_OC.e(TAG, "Incorrect array for local paths provided in upload intent");
  466. return Service.START_NOT_STICKY;
  467. }
  468. if (remotePaths == null) {
  469. Log_OC.e(TAG, "Incorrect array for remote paths provided in upload intent");
  470. return Service.START_NOT_STICKY;
  471. }
  472. if (localPaths.length != remotePaths.length) {
  473. Log_OC.e(TAG, "Different number of remote paths and local paths!");
  474. return Service.START_NOT_STICKY;
  475. }
  476. files = new OCFile[localPaths.length];
  477. for (int i = 0; i < localPaths.length; i++) {
  478. files[i] = UploadFileOperation.obtainNewOCFileToUpload(
  479. remotePaths[i],
  480. localPaths[i],
  481. ((mimeTypes != null) ? mimeTypes[i] : null)
  482. );
  483. if (files[i] == null) {
  484. Log_OC.e(TAG, "obtainNewOCFileToUpload() returned null for remotePaths[i]:" + remotePaths[i]
  485. + " and localPaths[i]:" + localPaths[i]);
  486. return Service.START_NOT_STICKY;
  487. }
  488. }
  489. }
  490. // at this point variable "OCFile[] files" is loaded correctly.
  491. String uploadKey = null;
  492. UploadFileOperation newUpload = null;
  493. try {
  494. for (int i = 0; i < files.length; i++) {
  495. OCUpload ocUpload = new OCUpload(files[i], account);
  496. ocUpload.setFileSize(files[i].getFileLength());
  497. ocUpload.setForceOverwrite(forceOverwrite);
  498. ocUpload.setCreateRemoteFolder(isCreateRemoteFolder);
  499. ocUpload.setCreatedBy(createdBy);
  500. ocUpload.setLocalAction(localAction);
  501. ocUpload.setUseWifiOnly(onWifiOnly);
  502. ocUpload.setWhileChargingOnly(whileChargingOnly);
  503. ocUpload.setUploadStatus(UploadStatus.UPLOAD_IN_PROGRESS);
  504. newUpload = new UploadFileOperation(
  505. account,
  506. files[i],
  507. ocUpload,
  508. chunked,
  509. forceOverwrite,
  510. localAction,
  511. this,
  512. onWifiOnly,
  513. whileChargingOnly
  514. );
  515. newUpload.setCreatedBy(createdBy);
  516. if (isCreateRemoteFolder) {
  517. newUpload.setRemoteFolderToBeCreated();
  518. }
  519. newUpload.addDatatransferProgressListener(this);
  520. newUpload.addDatatransferProgressListener((FileUploaderBinder) mBinder);
  521. newUpload.addRenameUploadListener(this);
  522. Pair<String, String> putResult = mPendingUploads.putIfAbsent(
  523. account.name,
  524. files[i].getRemotePath(),
  525. newUpload
  526. );
  527. if (putResult != null) {
  528. uploadKey = putResult.first;
  529. requestedUploads.add(uploadKey);
  530. // Save upload in database
  531. long id = mUploadsStorageManager.storeUpload(ocUpload);
  532. newUpload.setOCUploadId(id);
  533. }
  534. }
  535. } catch (IllegalArgumentException e) {
  536. Log_OC.e(TAG, "Not enough information provided in intent: " + e.getMessage());
  537. return START_NOT_STICKY;
  538. } catch (IllegalStateException e) {
  539. Log_OC.e(TAG, "Bad information provided in intent: " + e.getMessage());
  540. return START_NOT_STICKY;
  541. } catch (Exception e) {
  542. Log_OC.e(TAG, "Unexpected exception while processing upload intent", e);
  543. return START_NOT_STICKY;
  544. }
  545. // *** TODO REWRITE: block inserted to request A retry; too many code copied, no control exception ***/
  546. } else {
  547. if (!intent.hasExtra(KEY_ACCOUNT) || !intent.hasExtra(KEY_RETRY_UPLOAD)) {
  548. Log_OC.e(TAG, "Not enough information provided in intent: no KEY_RETRY_UPLOAD_KEY");
  549. return START_NOT_STICKY;
  550. }
  551. OCUpload upload = intent.getParcelableExtra(KEY_RETRY_UPLOAD);
  552. onWifiOnly = upload.isUseWifiOnly();
  553. whileChargingOnly = upload.isWhileChargingOnly();
  554. UploadFileOperation newUpload = new UploadFileOperation(
  555. account,
  556. null,
  557. upload,
  558. chunked,
  559. upload.isForceOverwrite(), // TODO should be read from DB?
  560. upload.getLocalAction(), // TODO should be read from DB?
  561. this,
  562. onWifiOnly,
  563. whileChargingOnly
  564. );
  565. newUpload.addDatatransferProgressListener(this);
  566. newUpload.addDatatransferProgressListener((FileUploaderBinder) mBinder);
  567. newUpload.addRenameUploadListener(this);
  568. Pair<String, String> putResult = mPendingUploads.putIfAbsent(
  569. account.name,
  570. upload.getRemotePath(),
  571. newUpload
  572. );
  573. if (putResult != null) {
  574. String uploadKey = putResult.first;
  575. requestedUploads.add(uploadKey);
  576. // Update upload in database
  577. upload.setUploadStatus(UploadStatus.UPLOAD_IN_PROGRESS);
  578. mUploadsStorageManager.updateUpload(upload);
  579. }
  580. }
  581. // *** TODO REWRITE END ***/
  582. if (requestedUploads.size() > 0) {
  583. Message msg = mServiceHandler.obtainMessage();
  584. msg.arg1 = startId;
  585. msg.obj = requestedUploads;
  586. mServiceHandler.sendMessage(msg);
  587. sendBroadcastUploadsAdded();
  588. }
  589. return Service.START_NOT_STICKY;
  590. }
  591. /**
  592. * Provides a binder object that clients can use to perform operations on
  593. * the queue of uploads, excepting the addition of new files.
  594. *
  595. * Implemented to perform cancellation, pause and resume of existing
  596. * uploads.
  597. */
  598. @Override
  599. public IBinder onBind(Intent arg0) {
  600. return mBinder;
  601. }
  602. /**
  603. * Called when ALL the bound clients were onbound.
  604. */
  605. @Override
  606. public boolean onUnbind(Intent intent) {
  607. ((FileUploaderBinder) mBinder).clearListeners();
  608. return false; // not accepting rebinding (default behaviour)
  609. }
  610. @Override
  611. public void onAccountsUpdated(Account[] accounts) {
  612. // Review current upload, and cancel it if its account doen't exist
  613. if (mCurrentUpload != null &&
  614. !AccountUtils.exists(mCurrentUpload.getAccount(), getApplicationContext())) {
  615. mCurrentUpload.cancel();
  616. }
  617. // The rest of uploads are cancelled when they try to start
  618. }
  619. /**
  620. * Binder to let client components to perform operations on the queue of uploads.
  621. *
  622. * It provides by itself the available operations.
  623. */
  624. public class FileUploaderBinder extends Binder implements OnDatatransferProgressListener {
  625. /**
  626. * Map of listeners that will be reported about progress of uploads from a
  627. * {@link FileUploaderBinder} instance
  628. */
  629. private Map<String, OnDatatransferProgressListener> mBoundListeners = new HashMap<>();
  630. /**
  631. * Cancels a pending or current upload of a remote file.
  632. *
  633. * @param account ownCloud account where the remote file will be stored.
  634. * @param file A file in the queue of pending uploads
  635. */
  636. public void cancel(Account account, OCFile file) {
  637. cancel(account.name, file.getRemotePath(), null);
  638. }
  639. /**
  640. * Cancels a pending or current upload that was persisted.
  641. *
  642. * @param storedUpload Upload operation persisted
  643. */
  644. public void cancel(OCUpload storedUpload) {
  645. cancel(storedUpload.getAccountName(), storedUpload.getRemotePath(), null);
  646. }
  647. /**
  648. * Cancels a pending or current upload of a remote file.
  649. *
  650. * @param accountName Local name of an ownCloud account where the remote file will be stored.
  651. * @param remotePath Remote target of the upload
  652. *
  653. * Setting result code will pause rather than cancel the job
  654. */
  655. private void cancel(String accountName, String remotePath, @Nullable ResultCode resultCode ) {
  656. Pair<UploadFileOperation, String> removeResult =
  657. mPendingUploads.remove(accountName, remotePath);
  658. UploadFileOperation upload = removeResult.first;
  659. if (upload == null &&
  660. mCurrentUpload != null && mCurrentAccount != null &&
  661. mCurrentUpload.getRemotePath().startsWith(remotePath) &&
  662. accountName.equals(mCurrentAccount.name)) {
  663. upload = mCurrentUpload;
  664. }
  665. if (upload != null) {
  666. upload.cancel();
  667. // need to update now table in mUploadsStorageManager,
  668. // since the operation will not get to be run by FileUploader#uploadFile
  669. if (resultCode != null) {
  670. mUploadsStorageManager.updateDatabaseUploadResult(new RemoteOperationResult(resultCode), upload);
  671. notifyUploadResult(upload, new RemoteOperationResult(resultCode));
  672. } else {
  673. mUploadsStorageManager.removeUpload(accountName, remotePath);
  674. }
  675. }
  676. }
  677. /**
  678. * Cancels all the uploads for an account.
  679. *
  680. * @param account ownCloud account.
  681. */
  682. public void cancel(Account account) {
  683. Log_OC.d(TAG, "Account= " + account.name);
  684. if (mCurrentUpload != null) {
  685. Log_OC.d(TAG, "Current Upload Account= " + mCurrentUpload.getAccount().name);
  686. if (mCurrentUpload.getAccount().name.equals(account.name)) {
  687. mCurrentUpload.cancel();
  688. }
  689. }
  690. // Cancel pending uploads
  691. cancelUploadsForAccount(account);
  692. }
  693. public void clearListeners() {
  694. mBoundListeners.clear();
  695. }
  696. /**
  697. * Returns True when the file described by 'file' is being uploaded to
  698. * the ownCloud account 'account' or waiting for it
  699. *
  700. * If 'file' is a directory, returns 'true' if some of its descendant files
  701. * is uploading or waiting to upload.
  702. *
  703. * Warning: If remote file exists and !forceOverwrite the original file
  704. * is being returned here. That is, it seems as if the original file is
  705. * being updated when actually a new file is being uploaded.
  706. *
  707. * @param account Owncloud account where the remote file will be stored.
  708. * @param file A file that could be in the queue of pending uploads
  709. */
  710. public boolean isUploading(Account account, OCFile file) {
  711. if (account == null || file == null) {
  712. return false;
  713. }
  714. return (mPendingUploads.contains(account.name, file.getRemotePath()));
  715. }
  716. public boolean isUploadingNow(OCUpload upload) {
  717. return (
  718. upload != null &&
  719. mCurrentAccount != null &&
  720. mCurrentUpload != null &&
  721. upload.getAccountName().equals(mCurrentAccount.name) &&
  722. upload.getRemotePath().equals(mCurrentUpload.getRemotePath())
  723. );
  724. }
  725. /**
  726. * Adds a listener interested in the progress of the upload for a concrete file.
  727. *
  728. * @param listener Object to notify about progress of transfer.
  729. * @param account ownCloud account holding the file of interest.
  730. * @param file {@link OCFile} of interest for listener.
  731. */
  732. public void addDatatransferProgressListener(
  733. OnDatatransferProgressListener listener,
  734. Account account,
  735. OCFile file
  736. ) {
  737. if (account == null || file == null || listener == null) {
  738. return;
  739. }
  740. String targetKey = buildRemoteName(account.name, file.getRemotePath());
  741. mBoundListeners.put(targetKey, listener);
  742. }
  743. /**
  744. * Adds a listener interested in the progress of the upload for a concrete file.
  745. *
  746. * @param listener Object to notify about progress of transfer.
  747. * @param ocUpload {@link OCUpload} of interest for listener.
  748. */
  749. public void addDatatransferProgressListener(
  750. OnDatatransferProgressListener listener,
  751. OCUpload ocUpload
  752. ) {
  753. if (ocUpload == null || listener == null) {
  754. return;
  755. }
  756. String targetKey = buildRemoteName(ocUpload.getAccountName(), ocUpload.getRemotePath());
  757. mBoundListeners.put(targetKey, listener);
  758. }
  759. /**
  760. * Removes a listener interested in the progress of the upload for a concrete file.
  761. *
  762. * @param listener Object to notify about progress of transfer.
  763. * @param account ownCloud account holding the file of interest.
  764. * @param file {@link OCFile} of interest for listener.
  765. */
  766. public void removeDatatransferProgressListener(
  767. OnDatatransferProgressListener listener,
  768. Account account,
  769. OCFile file
  770. ) {
  771. if (account == null || file == null || listener == null) {
  772. return;
  773. }
  774. String targetKey = buildRemoteName(account.name, file.getRemotePath());
  775. if (mBoundListeners.get(targetKey) == listener) {
  776. mBoundListeners.remove(targetKey);
  777. }
  778. }
  779. /**
  780. * Removes a listener interested in the progress of the upload for a concrete file.
  781. *
  782. * @param listener Object to notify about progress of transfer.
  783. * @param ocUpload Stored upload of interest
  784. */
  785. public void removeDatatransferProgressListener(
  786. OnDatatransferProgressListener listener,
  787. OCUpload ocUpload
  788. ) {
  789. if (ocUpload == null || listener == null) {
  790. return;
  791. }
  792. String targetKey = buildRemoteName(ocUpload.getAccountName(), ocUpload.getRemotePath());
  793. if (mBoundListeners.get(targetKey) == listener) {
  794. mBoundListeners.remove(targetKey);
  795. }
  796. }
  797. @Override
  798. public void onTransferProgress(long progressRate, long totalTransferredSoFar,
  799. long totalToTransfer, String fileName) {
  800. String key = buildRemoteName(mCurrentUpload.getAccount().name, mCurrentUpload.getFile().getRemotePath());
  801. OnDatatransferProgressListener boundListener = mBoundListeners.get(key);
  802. if (boundListener != null) {
  803. boundListener.onTransferProgress(progressRate, totalTransferredSoFar,
  804. totalToTransfer, fileName);
  805. if (MainApp.getAppContext() != null) {
  806. if (mCurrentUpload.getIsWifiRequired() && !Device.getNetworkType(MainApp.getAppContext()).
  807. equals(JobRequest.NetworkType.UNMETERED)) {
  808. cancel(mCurrentUpload.getAccount().name, mCurrentUpload.getFile().getRemotePath()
  809. , ResultCode.DELAYED_FOR_WIFI);
  810. } else if (mCurrentUpload.getIsChargingRequired() &&
  811. !Device.getBatteryStatus(MainApp.getAppContext()).isCharging()) {
  812. cancel(mCurrentUpload.getAccount().name, mCurrentUpload.getFile().getRemotePath()
  813. , ResultCode.DELAYED_FOR_CHARGING);
  814. } else if (
  815. !mCurrentUpload.getIsIgnoringPowerSaveMode() &&
  816. UploadUtils.isPowerSaveMode(MainApp.getAppContext())) {
  817. cancel(mCurrentUpload.getAccount().name, mCurrentUpload.getFile().getRemotePath()
  818. , ResultCode.DELAYED_IN_POWER_SAVE_MODE);
  819. }
  820. }
  821. }
  822. }
  823. /**
  824. * Builds a key for the map of listeners.
  825. *
  826. * TODO use method in IndexedForest, or refactor both to a common place
  827. * add to local database) to better policy (add to local database, then upload)
  828. *
  829. * @param accountName Local name of the ownCloud account where the file to upload belongs.
  830. * @param remotePath Remote path to upload the file to.
  831. * @return Key
  832. */
  833. private String buildRemoteName(String accountName, String remotePath) {
  834. return accountName + remotePath;
  835. }
  836. }
  837. /**
  838. * Upload worker. Performs the pending uploads in the order they were
  839. * requested.
  840. *
  841. * Created with the Looper of a new thread, started in
  842. * {@link FileUploader#onCreate()}.
  843. */
  844. private static class ServiceHandler extends Handler {
  845. // don't make it a final class, and don't remove the static ; lint will
  846. // warn about a possible memory leak
  847. FileUploader mService;
  848. public ServiceHandler(Looper looper, FileUploader service) {
  849. super(looper);
  850. if (service == null) {
  851. throw new IllegalArgumentException("Received invalid NULL in parameter 'service'");
  852. }
  853. mService = service;
  854. }
  855. @Override
  856. public void handleMessage(Message msg) {
  857. @SuppressWarnings("unchecked")
  858. AbstractList<String> requestedUploads = (AbstractList<String>) msg.obj;
  859. if (msg.obj != null) {
  860. Iterator<String> it = requestedUploads.iterator();
  861. while (it.hasNext()) {
  862. mService.uploadFile(it.next());
  863. }
  864. }
  865. Log_OC.d(TAG, "Stopping command after id " + msg.arg1);
  866. mService.stopForeground(true);
  867. mService.stopSelf(msg.arg1);
  868. }
  869. }
  870. /**
  871. * Core upload method: sends the file(s) to upload
  872. *
  873. * @param uploadKey Key to access the upload to perform, contained in mPendingUploads
  874. */
  875. public void uploadFile(String uploadKey) {
  876. mCurrentUpload = mPendingUploads.get(uploadKey);
  877. if (mCurrentUpload != null) {
  878. /// Check account existence
  879. if (!AccountUtils.exists(mCurrentUpload.getAccount(), this)) {
  880. Log_OC.w(TAG, "Account " + mCurrentUpload.getAccount().name +
  881. " does not exist anymore -> cancelling all its uploads");
  882. cancelUploadsForAccount(mCurrentUpload.getAccount());
  883. return;
  884. }
  885. /// OK, let's upload
  886. mUploadsStorageManager.updateDatabaseUploadStart(mCurrentUpload);
  887. notifyUploadStart(mCurrentUpload);
  888. sendBroadcastUploadStarted(mCurrentUpload);
  889. RemoteOperationResult uploadResult = null;
  890. try {
  891. /// prepare client object to send the request to the ownCloud server
  892. if (mCurrentAccount == null || !mCurrentAccount.equals(mCurrentUpload.getAccount())) {
  893. mCurrentAccount = mCurrentUpload.getAccount();
  894. mStorageManager = new FileDataStorageManager(
  895. mCurrentAccount,
  896. getContentResolver()
  897. );
  898. } // else, reuse storage manager from previous operation
  899. // always get client from client manager, to get fresh credentials in case of update
  900. OwnCloudAccount ocAccount = new OwnCloudAccount(
  901. mCurrentAccount,
  902. this
  903. );
  904. mUploadClient = OwnCloudClientManagerFactory.getDefaultSingleton().
  905. getClientFor(ocAccount, this);
  906. /// perform the upload
  907. uploadResult = mCurrentUpload.execute(mUploadClient, mStorageManager);
  908. } catch (Exception e) {
  909. Log_OC.e(TAG, "Error uploading", e);
  910. uploadResult = new RemoteOperationResult(e);
  911. } finally {
  912. Pair<UploadFileOperation, String> removeResult;
  913. if (mCurrentUpload.wasRenamed()) {
  914. removeResult = mPendingUploads.removePayload(
  915. mCurrentAccount.name,
  916. mCurrentUpload.getOldFile().getRemotePath()
  917. );
  918. // TODO: grant that name is also updated for mCurrentUpload.getOCUploadId
  919. } else {
  920. removeResult = mPendingUploads.removePayload(
  921. mCurrentAccount.name,
  922. mCurrentUpload.getRemotePath()
  923. );
  924. }
  925. mUploadsStorageManager.updateDatabaseUploadResult(uploadResult, mCurrentUpload);
  926. /// notify result
  927. notifyUploadResult(mCurrentUpload, uploadResult);
  928. sendBroadcastUploadFinished(mCurrentUpload, uploadResult, removeResult.second);
  929. }
  930. // generate new Thumbnail
  931. final ThumbnailsCacheManager.ThumbnailGenerationTask task =
  932. new ThumbnailsCacheManager.ThumbnailGenerationTask(mStorageManager, mCurrentAccount);
  933. File file = new File(mCurrentUpload.getOriginalStoragePath());
  934. String remoteId = mCurrentUpload.getFile().getRemoteId();
  935. task.execute(new ThumbnailsCacheManager.ThumbnailGenerationTaskObject(file, remoteId));
  936. }
  937. }
  938. /**
  939. * Creates a status notification to show the upload progress
  940. *
  941. * @param upload Upload operation starting.
  942. */
  943. private void notifyUploadStart(UploadFileOperation upload) {
  944. // / create status notification with a progress bar
  945. mLastPercent = 0;
  946. mNotificationBuilder = NotificationUtils.newNotificationBuilder(this);
  947. mNotificationBuilder
  948. .setOngoing(true)
  949. .setSmallIcon(R.drawable.notification_icon)
  950. .setTicker(getString(R.string.uploader_upload_in_progress_ticker))
  951. .setContentTitle(getString(R.string.uploader_upload_in_progress_ticker))
  952. .setProgress(100, 0, false)
  953. .setContentText(
  954. String.format(getString(R.string.uploader_upload_in_progress_content), 0, upload.getFileName())
  955. );
  956. /// includes a pending intent in the notification showing the details
  957. Intent showUploadListIntent = new Intent(this, UploadListActivity.class);
  958. showUploadListIntent.putExtra(FileActivity.EXTRA_FILE, upload.getFile());
  959. showUploadListIntent.putExtra(FileActivity.EXTRA_ACCOUNT, upload.getAccount());
  960. showUploadListIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
  961. mNotificationBuilder.setContentIntent(PendingIntent.getActivity(this, (int) System.currentTimeMillis(),
  962. showUploadListIntent, 0));
  963. if (!upload.isInstantPicture() && !upload.isInstantVideo()) {
  964. mNotificationManager.notify(R.string.uploader_upload_in_progress_ticker, mNotificationBuilder.build());
  965. } // else wait until the upload really start (onTransferProgress is called), so that if it's discarded
  966. // due to lack of Wifi, no notification is shown
  967. // TODO generalize for automated uploads
  968. }
  969. /**
  970. * Callback method to update the progress bar in the status notification
  971. */
  972. @Override
  973. public void onTransferProgress(long progressRate, long totalTransferredSoFar,
  974. long totalToTransfer, String filePath) {
  975. int percent = (int) (100.0 * ((double) totalTransferredSoFar) / ((double) totalToTransfer));
  976. if (percent != mLastPercent) {
  977. mNotificationBuilder.setProgress(100, percent, false);
  978. String fileName = filePath.substring(filePath.lastIndexOf(FileUtils.PATH_SEPARATOR) + 1);
  979. String text = String.format(getString(R.string.uploader_upload_in_progress_content), percent, fileName);
  980. mNotificationBuilder.setContentText(text);
  981. mNotificationManager.notify(R.string.uploader_upload_in_progress_ticker, mNotificationBuilder.build());
  982. }
  983. mLastPercent = percent;
  984. }
  985. /**
  986. * Updates the status notification with the result of an upload operation.
  987. *
  988. * @param uploadResult Result of the upload operation.
  989. * @param upload Finished upload operation
  990. */
  991. private void notifyUploadResult(UploadFileOperation upload,
  992. RemoteOperationResult uploadResult) {
  993. Log_OC.d(TAG, "NotifyUploadResult with resultCode: " + uploadResult.getCode());
  994. // / cancelled operation or success -> silent removal of progress notification
  995. mNotificationManager.cancel(R.string.uploader_upload_in_progress_ticker);
  996. // Show the result: success or fail notification
  997. if (!uploadResult.isCancelled() &&
  998. !ResultCode.LOCAL_FILE_NOT_FOUND.equals(uploadResult.getCode()) &&
  999. !uploadResult.getCode().equals(ResultCode.DELAYED_FOR_WIFI) &&
  1000. !uploadResult.getCode().equals(ResultCode.DELAYED_FOR_CHARGING) &&
  1001. !uploadResult.getCode().equals(ResultCode.DELAYED_IN_POWER_SAVE_MODE) &&
  1002. !uploadResult.getCode().equals(ResultCode.LOCK_FAILED) ) {
  1003. int tickerId = (uploadResult.isSuccess()) ? R.string.uploader_upload_succeeded_ticker :
  1004. R.string.uploader_upload_failed_ticker;
  1005. String content;
  1006. // check credentials error
  1007. boolean needsToUpdateCredentials = (ResultCode.UNAUTHORIZED.equals(uploadResult.getCode()));
  1008. tickerId = (needsToUpdateCredentials) ?
  1009. R.string.uploader_upload_failed_credentials_error : tickerId;
  1010. mNotificationBuilder
  1011. .setTicker(getString(tickerId))
  1012. .setContentTitle(getString(tickerId))
  1013. .setAutoCancel(true)
  1014. .setOngoing(false)
  1015. .setProgress(0, 0, false);
  1016. content = ErrorMessageAdapter.getErrorCauseMessage(uploadResult, upload, getResources());
  1017. if (needsToUpdateCredentials) {
  1018. // let the user update credentials with one click
  1019. Intent updateAccountCredentials = new Intent(this, AuthenticatorActivity.class);
  1020. updateAccountCredentials.putExtra(
  1021. AuthenticatorActivity.EXTRA_ACCOUNT, upload.getAccount()
  1022. );
  1023. updateAccountCredentials.putExtra(
  1024. AuthenticatorActivity.EXTRA_ACTION,
  1025. AuthenticatorActivity.ACTION_UPDATE_EXPIRED_TOKEN
  1026. );
  1027. updateAccountCredentials.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  1028. updateAccountCredentials.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
  1029. updateAccountCredentials.addFlags(Intent.FLAG_FROM_BACKGROUND);
  1030. mNotificationBuilder.setContentIntent(PendingIntent.getActivity(
  1031. this,
  1032. (int) System.currentTimeMillis(),
  1033. updateAccountCredentials,
  1034. PendingIntent.FLAG_ONE_SHOT
  1035. ));
  1036. } else {
  1037. mNotificationBuilder.setContentText(content);
  1038. }
  1039. if (!uploadResult.isSuccess() && !needsToUpdateCredentials ) {
  1040. //in case of failure, do not show details file view (because there is no file!)
  1041. Intent showUploadListIntent = new Intent(this, UploadListActivity.class);
  1042. showUploadListIntent.putExtra(FileActivity.EXTRA_FILE, upload.getFile());
  1043. showUploadListIntent.putExtra(FileActivity.EXTRA_ACCOUNT, upload.getAccount());
  1044. showUploadListIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
  1045. mNotificationBuilder.setContentIntent(PendingIntent.getActivity(this, (int) System.currentTimeMillis(),
  1046. showUploadListIntent, 0));
  1047. }
  1048. mNotificationBuilder.setContentText(content);
  1049. mNotificationManager.notify(tickerId, mNotificationBuilder.build());
  1050. if (uploadResult.isSuccess()) {
  1051. mPendingUploads.remove(upload.getAccount().name, upload.getFile().getRemotePath());
  1052. // remove success notification, with a delay of 2 seconds
  1053. NotificationUtils.cancelWithDelay(
  1054. mNotificationManager,
  1055. R.string.uploader_upload_succeeded_ticker,
  1056. 2000);
  1057. }
  1058. }
  1059. }
  1060. /**
  1061. * Sends a broadcast in order to the interested activities can update their
  1062. * view
  1063. *
  1064. * TODO - no more broadcasts, replace with a callback to subscribed listeners
  1065. */
  1066. private void sendBroadcastUploadsAdded() {
  1067. Intent start = new Intent(getUploadsAddedMessage());
  1068. // nothing else needed right now
  1069. start.setPackage(getPackageName());
  1070. sendStickyBroadcast(start);
  1071. }
  1072. /**
  1073. * Sends a broadcast in order to the interested activities can update their
  1074. * view
  1075. *
  1076. * TODO - no more broadcasts, replace with a callback to subscribed listeners
  1077. *
  1078. * @param upload Finished upload operation
  1079. */
  1080. private void sendBroadcastUploadStarted(
  1081. UploadFileOperation upload) {
  1082. Intent start = new Intent(getUploadStartMessage());
  1083. start.putExtra(EXTRA_REMOTE_PATH, upload.getRemotePath()); // real remote
  1084. start.putExtra(EXTRA_OLD_FILE_PATH, upload.getOriginalStoragePath());
  1085. start.putExtra(ACCOUNT_NAME, upload.getAccount().name);
  1086. start.setPackage(getPackageName());
  1087. sendStickyBroadcast(start);
  1088. }
  1089. /**
  1090. * Sends a broadcast in order to the interested activities can update their
  1091. * view
  1092. *
  1093. * TODO - no more broadcasts, replace with a callback to subscribed listeners
  1094. *
  1095. * @param upload Finished upload operation
  1096. * @param uploadResult Result of the upload operation
  1097. * @param unlinkedFromRemotePath Path in the uploads tree where the upload was unlinked from
  1098. */
  1099. private void sendBroadcastUploadFinished(
  1100. UploadFileOperation upload,
  1101. RemoteOperationResult uploadResult,
  1102. String unlinkedFromRemotePath) {
  1103. Intent end = new Intent(getUploadFinishMessage());
  1104. end.putExtra(EXTRA_REMOTE_PATH, upload.getRemotePath()); // real remote
  1105. // path, after
  1106. // possible
  1107. // automatic
  1108. // renaming
  1109. if (upload.wasRenamed()) {
  1110. end.putExtra(EXTRA_OLD_REMOTE_PATH, upload.getOldFile().getRemotePath());
  1111. }
  1112. end.putExtra(EXTRA_OLD_FILE_PATH, upload.getOriginalStoragePath());
  1113. end.putExtra(ACCOUNT_NAME, upload.getAccount().name);
  1114. end.putExtra(EXTRA_UPLOAD_RESULT, uploadResult.isSuccess());
  1115. if (unlinkedFromRemotePath != null) {
  1116. end.putExtra(EXTRA_LINKED_TO_PATH, unlinkedFromRemotePath);
  1117. }
  1118. end.setPackage(getPackageName());
  1119. sendStickyBroadcast(end);
  1120. }
  1121. /**
  1122. * Remove and 'forgets' pending uploads of an account.
  1123. *
  1124. * @param account Account which uploads will be cancelled
  1125. */
  1126. private void cancelUploadsForAccount(Account account) {
  1127. mPendingUploads.remove(account.name);
  1128. mUploadsStorageManager.removeUploads(account.name);
  1129. }
  1130. }