FileUploader.java 51 KB

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