123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- /*
- * ownCloud Android client application
- *
- * @author David A. Velasco
- * @author masensio
- * Copyright (C) 2015 ownCloud Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- package com.owncloud.android.operations;
- import android.accounts.Account;
- import android.content.Context;
- import android.webkit.MimeTypeMap;
- import com.owncloud.android.datamodel.DecryptedFolderMetadata;
- import com.owncloud.android.datamodel.FileDataStorageManager;
- import com.owncloud.android.datamodel.OCFile;
- import com.owncloud.android.lib.common.OwnCloudClient;
- import com.owncloud.android.lib.common.network.OnDatatransferProgressListener;
- import com.owncloud.android.lib.common.operations.OperationCancelledException;
- import com.owncloud.android.lib.common.operations.RemoteOperation;
- import com.owncloud.android.lib.common.operations.RemoteOperationResult;
- import com.owncloud.android.lib.common.utils.Log_OC;
- import com.owncloud.android.lib.resources.files.DownloadFileRemoteOperation;
- import com.owncloud.android.utils.EncryptionUtils;
- import com.owncloud.android.utils.FileStorageUtils;
- import java.io.File;
- import java.io.FileOutputStream;
- import java.util.HashSet;
- import java.util.Iterator;
- import java.util.Set;
- import java.util.concurrent.atomic.AtomicBoolean;
- import lombok.Getter;
- /**
- * Remote DownloadOperation performing the download of a file to an ownCloud server
- */
- public class DownloadFileOperation extends RemoteOperation {
- private static final String TAG = DownloadFileOperation.class.getSimpleName();
- @Getter private Account account;
- @Getter private OCFile file;
- @Getter private String behaviour;
- @Getter private String etag = "";
- @Getter private String activityName;
- @Getter private String packageName;
- private Context context;
- private Set<OnDatatransferProgressListener> dataTransferListeners = new HashSet<>();
- private long modificationTimestamp;
- private DownloadFileRemoteOperation downloadOperation;
- private final AtomicBoolean cancellationRequested = new AtomicBoolean(false);
- public DownloadFileOperation(Account account, OCFile file, String behaviour, String activityName,
- String packageName, Context context) {
- if (account == null) {
- throw new IllegalArgumentException("Illegal null account in DownloadFileOperation " +
- "creation");
- }
- if (file == null) {
- throw new IllegalArgumentException("Illegal null file in DownloadFileOperation " +
- "creation");
- }
- this.account = account;
- this.file = file;
- this.behaviour = behaviour;
- this.activityName = activityName;
- this.packageName = packageName;
- this.context = context;
- }
- public String getSavePath() {
- if (file.getStoragePath() != null) {
- File path = new File(file.getStoragePath()); // re-downloads should be done over the original file
- if (path.canWrite()) {
- return path.getAbsolutePath();
- }
- }
- return FileStorageUtils.getDefaultSavePathFor(account.name, file);
- }
- public String getTmpPath() {
- return FileStorageUtils.getTemporalPath(account.name) + file.getRemotePath();
- }
- public String getTmpFolder() {
- return FileStorageUtils.getTemporalPath(account.name);
- }
- public String getRemotePath() {
- return file.getRemotePath();
- }
- public String getMimeType() {
- String mimeType = file.getMimeType();
- if (mimeType == null || mimeType.length() <= 0) {
- try {
- mimeType = MimeTypeMap.getSingleton()
- .getMimeTypeFromExtension(
- file.getRemotePath().substring(
- file.getRemotePath().lastIndexOf('.') + 1));
- } catch (IndexOutOfBoundsException e) {
- Log_OC.e(TAG, "Trying to find out MIME type of a file without extension: " +
- file.getRemotePath());
- }
- }
- if (mimeType == null) {
- mimeType = "application/octet-stream";
- }
- return mimeType;
- }
- public long getSize() {
- return file.getFileLength();
- }
- public long getModificationTimestamp() {
- return modificationTimestamp > 0 ? modificationTimestamp : file.getModificationTimestamp();
- }
- @Override
- protected RemoteOperationResult run(OwnCloudClient client) {
- /// perform the download
- synchronized(cancellationRequested) {
- if (cancellationRequested.get()) {
- return new RemoteOperationResult(new OperationCancelledException());
- }
- }
- RemoteOperationResult result;
- File newFile;
- boolean moved;
- /// download will be performed to a temporal file, then moved to the final location
- File tmpFile = new File(getTmpPath());
- String tmpFolder = getTmpFolder();
- downloadOperation = new DownloadFileRemoteOperation(file.getRemotePath(), tmpFolder);
- Iterator<OnDatatransferProgressListener> listener = dataTransferListeners.iterator();
- while (listener.hasNext()) {
- downloadOperation.addDatatransferProgressListener(listener.next());
- }
- result = downloadOperation.execute(client);
- if (result.isSuccess()) {
- modificationTimestamp = downloadOperation.getModificationTimestamp();
- etag = downloadOperation.getEtag();
- newFile = new File(getSavePath());
- if (!newFile.getParentFile().mkdirs()) {
- Log_OC.e(TAG, "Unable to create parent folder " + newFile.getParentFile().getAbsolutePath());
- }
- // decrypt file
- if (file.isEncrypted() && android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT) {
- FileDataStorageManager fileDataStorageManager = new FileDataStorageManager(account, context.getContentResolver());
- OCFile parent = fileDataStorageManager.getFileByPath(file.getParentRemotePath());
- DecryptedFolderMetadata metadata = EncryptionUtils.downloadFolderMetadata(parent, client, context, account);
- if (metadata == null) {
- return new RemoteOperationResult(RemoteOperationResult.ResultCode.METADATA_NOT_FOUND);
- }
- byte[] key = EncryptionUtils.decodeStringToBase64Bytes(metadata.getFiles()
- .get(file.getEncryptedFileName()).getEncrypted().getKey());
- byte[] iv = EncryptionUtils.decodeStringToBase64Bytes(metadata.getFiles()
- .get(file.getEncryptedFileName()).getInitializationVector());
- byte[] authenticationTag = EncryptionUtils.decodeStringToBase64Bytes(metadata.getFiles()
- .get(file.getEncryptedFileName()).getAuthenticationTag());
- try {
- byte[] decryptedBytes = EncryptionUtils.decryptFile(tmpFile, key, iv, authenticationTag);
- try (FileOutputStream fileOutputStream = new FileOutputStream(tmpFile)) {
- fileOutputStream.write(decryptedBytes);
- }
- } catch (Exception e) {
- return new RemoteOperationResult(e);
- }
- }
- moved = tmpFile.renameTo(newFile);
- newFile.setLastModified(file.getModificationTimestamp());
- if (!moved) {
- result = new RemoteOperationResult(RemoteOperationResult.ResultCode.LOCAL_STORAGE_NOT_MOVED);
- }
- }
- Log_OC.i(TAG, "Download of " + file.getRemotePath() + " to " + getSavePath() + ": " +
- result.getLogMessage());
- return result;
- }
- public void cancel() {
- cancellationRequested.set(true); // atomic set; there is no need of synchronizing it
- if (downloadOperation != null) {
- downloadOperation.cancel();
- }
- }
- public void addDatatransferProgressListener (OnDatatransferProgressListener listener) {
- synchronized (dataTransferListeners) {
- dataTransferListeners.add(listener);
- }
- }
- public void removeDatatransferProgressListener(OnDatatransferProgressListener listener) {
- synchronized (dataTransferListeners) {
- dataTransferListeners.remove(listener);
- }
- }
- }
|