FileUploader.java 49 KB

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