FileUploader.java 59 KB

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