DownloadFileOperation.java 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author David A. Velasco
  5. * @author masensio
  6. * Copyright (C) 2015 ownCloud Inc.
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2,
  10. * as published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. */
  21. package com.owncloud.android.operations;
  22. import android.accounts.Account;
  23. import android.content.Context;
  24. import android.webkit.MimeTypeMap;
  25. import com.owncloud.android.datamodel.DecryptedFolderMetadata;
  26. import com.owncloud.android.datamodel.FileDataStorageManager;
  27. import com.owncloud.android.datamodel.OCFile;
  28. import com.owncloud.android.lib.common.OwnCloudClient;
  29. import com.owncloud.android.lib.common.network.OnDatatransferProgressListener;
  30. import com.owncloud.android.lib.common.operations.OperationCancelledException;
  31. import com.owncloud.android.lib.common.operations.RemoteOperation;
  32. import com.owncloud.android.lib.common.operations.RemoteOperationResult;
  33. import com.owncloud.android.lib.common.utils.Log_OC;
  34. import com.owncloud.android.lib.resources.files.DownloadRemoteFileOperation;
  35. import com.owncloud.android.utils.EncryptionUtils;
  36. import com.owncloud.android.utils.FileStorageUtils;
  37. import java.io.File;
  38. import java.io.FileOutputStream;
  39. import java.util.HashSet;
  40. import java.util.Iterator;
  41. import java.util.Set;
  42. import java.util.concurrent.atomic.AtomicBoolean;
  43. /**
  44. * Remote mDownloadOperation performing the download of a file to an ownCloud server
  45. */
  46. public class DownloadFileOperation extends RemoteOperation {
  47. private static final String TAG = DownloadFileOperation.class.getSimpleName();
  48. private Account mAccount;
  49. private OCFile mFile;
  50. private String mBehaviour;
  51. private Context mContext;
  52. private Set<OnDatatransferProgressListener> mDataTransferListeners = new HashSet<OnDatatransferProgressListener>();
  53. private long mModificationTimestamp = 0;
  54. private String mEtag = "";
  55. private final AtomicBoolean mCancellationRequested = new AtomicBoolean(false);
  56. private DownloadRemoteFileOperation mDownloadOperation;
  57. private String mActivityName;
  58. private String mPackageName;
  59. public DownloadFileOperation(Account account, OCFile file, String behaviour, String activityName,
  60. String packageName, Context context) {
  61. if (account == null) {
  62. throw new IllegalArgumentException("Illegal null account in DownloadFileOperation " +
  63. "creation");
  64. }
  65. if (file == null) {
  66. throw new IllegalArgumentException("Illegal null file in DownloadFileOperation " +
  67. "creation");
  68. }
  69. mAccount = account;
  70. mFile = file;
  71. mBehaviour = behaviour;
  72. mActivityName = activityName;
  73. mPackageName = packageName;
  74. mContext = context;
  75. }
  76. public Account getAccount() {
  77. return mAccount;
  78. }
  79. public OCFile getFile() {
  80. return mFile;
  81. }
  82. public String getBehaviour() {
  83. return mBehaviour;
  84. }
  85. public String getSavePath() {
  86. if (mFile.getStoragePath() != null) {
  87. File path = new File(mFile.getStoragePath()); // re-downloads should be done over the original file
  88. if (path.canWrite()) {
  89. return path.getAbsolutePath();
  90. }
  91. }
  92. return FileStorageUtils.getDefaultSavePathFor(mAccount.name, mFile);
  93. }
  94. public String getTmpPath() {
  95. return FileStorageUtils.getTemporalPath(mAccount.name) + mFile.getRemotePath();
  96. }
  97. public String getTmpFolder() {
  98. return FileStorageUtils.getTemporalPath(mAccount.name);
  99. }
  100. public String getRemotePath() {
  101. return mFile.getRemotePath();
  102. }
  103. public String getMimeType() {
  104. String mimeType = mFile.getMimetype();
  105. if (mimeType == null || mimeType.length() <= 0) {
  106. try {
  107. mimeType = MimeTypeMap.getSingleton()
  108. .getMimeTypeFromExtension(
  109. mFile.getRemotePath().substring(
  110. mFile.getRemotePath().lastIndexOf('.') + 1));
  111. } catch (IndexOutOfBoundsException e) {
  112. Log_OC.e(TAG, "Trying to find out MIME type of a file without extension: " +
  113. mFile.getRemotePath());
  114. }
  115. }
  116. if (mimeType == null) {
  117. mimeType = "application/octet-stream";
  118. }
  119. return mimeType;
  120. }
  121. public long getSize() {
  122. return mFile.getFileLength();
  123. }
  124. public long getModificationTimestamp() {
  125. return (mModificationTimestamp > 0) ? mModificationTimestamp :
  126. mFile.getModificationTimestamp();
  127. }
  128. public String getEtag() {
  129. return mEtag;
  130. }
  131. @Override
  132. protected RemoteOperationResult run(OwnCloudClient client) {
  133. RemoteOperationResult result;
  134. File newFile;
  135. boolean moved;
  136. /// download will be performed to a temporal file, then moved to the final location
  137. File tmpFile = new File(getTmpPath());
  138. String tmpFolder = getTmpFolder();
  139. /// perform the download
  140. synchronized(mCancellationRequested) {
  141. if (mCancellationRequested.get()) {
  142. return new RemoteOperationResult(new OperationCancelledException());
  143. }
  144. }
  145. mDownloadOperation = new DownloadRemoteFileOperation(mFile.getRemotePath(), tmpFolder);
  146. Iterator<OnDatatransferProgressListener> listener = mDataTransferListeners.iterator();
  147. while (listener.hasNext()) {
  148. mDownloadOperation.addDatatransferProgressListener(listener.next());
  149. }
  150. result = mDownloadOperation.execute(client);
  151. if (result.isSuccess()) {
  152. mModificationTimestamp = mDownloadOperation.getModificationTimestamp();
  153. mEtag = mDownloadOperation.getEtag();
  154. newFile = new File(getSavePath());
  155. newFile.getParentFile().mkdirs();
  156. // decrypt file
  157. if (mFile.isEncrypted() && android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT) {
  158. FileDataStorageManager fileDataStorageManager = new FileDataStorageManager(mAccount, mContext.getContentResolver());
  159. OCFile parent = fileDataStorageManager.getFileByPath(mFile.getParentRemotePath());
  160. DecryptedFolderMetadata metadata = EncryptionUtils.downloadFolderMetadata(parent, client, mContext, mAccount);
  161. if (metadata == null) {
  162. return new RemoteOperationResult(RemoteOperationResult.ResultCode.METADATA_NOT_FOUND);
  163. }
  164. byte[] key = EncryptionUtils.decodeStringToBase64Bytes(metadata.getFiles()
  165. .get(mFile.getEncryptedFileName()).getEncrypted().getKey());
  166. byte[] iv = EncryptionUtils.decodeStringToBase64Bytes(metadata.getFiles()
  167. .get(mFile.getEncryptedFileName()).getInitializationVector());
  168. byte[] authenticationTag = EncryptionUtils.decodeStringToBase64Bytes(metadata.getFiles()
  169. .get(mFile.getEncryptedFileName()).getAuthenticationTag());
  170. try {
  171. byte[] decryptedBytes = EncryptionUtils.decryptFile(tmpFile, key, iv, authenticationTag);
  172. FileOutputStream fileOutputStream = new FileOutputStream(tmpFile);
  173. fileOutputStream.write(decryptedBytes);
  174. fileOutputStream.close();
  175. } catch (Exception e) {
  176. return new RemoteOperationResult(e);
  177. }
  178. }
  179. moved = tmpFile.renameTo(newFile);
  180. if (!moved) {
  181. result = new RemoteOperationResult(RemoteOperationResult.ResultCode.LOCAL_STORAGE_NOT_MOVED);
  182. }
  183. }
  184. Log_OC.i(TAG, "Download of " + mFile.getRemotePath() + " to " + getSavePath() + ": " +
  185. result.getLogMessage());
  186. return result;
  187. }
  188. public void cancel() {
  189. mCancellationRequested.set(true); // atomic set; there is no need of synchronizing it
  190. if (mDownloadOperation != null) {
  191. mDownloadOperation.cancel();
  192. }
  193. }
  194. public void addDatatransferProgressListener (OnDatatransferProgressListener listener) {
  195. synchronized (mDataTransferListeners) {
  196. mDataTransferListeners.add(listener);
  197. }
  198. }
  199. public void removeDatatransferProgressListener(OnDatatransferProgressListener listener) {
  200. synchronized (mDataTransferListeners) {
  201. mDataTransferListeners.remove(listener);
  202. }
  203. }
  204. public String getActivityName() {
  205. return mActivityName;
  206. }
  207. public String getPackageName() {
  208. return mPackageName;
  209. }
  210. }