2017-09-18 15:56:25 +00:00
|
|
|
package eu.siacs.conversations.services;
|
|
|
|
|
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.Build;
|
|
|
|
import android.os.ParcelFileDescriptor;
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
import net.ypresto.androidtranscoder.MediaTranscoder;
|
|
|
|
import net.ypresto.androidtranscoder.format.MediaFormatStrategy;
|
|
|
|
import net.ypresto.androidtranscoder.format.MediaFormatStrategyPresets;
|
|
|
|
|
2017-10-27 09:34:50 +00:00
|
|
|
import java.io.File;
|
2017-09-18 15:56:25 +00:00
|
|
|
import java.io.FileDescriptor;
|
|
|
|
import java.io.FileNotFoundException;
|
2017-09-18 20:42:25 +00:00
|
|
|
import java.util.concurrent.ExecutionException;
|
|
|
|
import java.util.concurrent.Future;
|
2017-09-18 15:56:25 +00:00
|
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.Config;
|
|
|
|
import eu.siacs.conversations.R;
|
|
|
|
import eu.siacs.conversations.crypto.PgpEngine;
|
|
|
|
import eu.siacs.conversations.entities.DownloadableFile;
|
|
|
|
import eu.siacs.conversations.entities.Message;
|
|
|
|
import eu.siacs.conversations.persistance.FileBackend;
|
|
|
|
import eu.siacs.conversations.ui.UiCallback;
|
|
|
|
import eu.siacs.conversations.utils.MimeUtils;
|
|
|
|
|
|
|
|
public class AttachFileToConversationRunnable implements Runnable, MediaTranscoder.Listener {
|
|
|
|
|
|
|
|
private final XmppConnectionService mXmppConnectionService;
|
|
|
|
private final Message message;
|
|
|
|
private final Uri uri;
|
|
|
|
private final UiCallback<Message> callback;
|
|
|
|
private final boolean isVideoMessage;
|
2017-10-27 09:34:50 +00:00
|
|
|
private final long originalFileSize;
|
2017-09-18 15:56:25 +00:00
|
|
|
private int currentProgress = -1;
|
|
|
|
|
|
|
|
public AttachFileToConversationRunnable(XmppConnectionService xmppConnectionService, Uri uri, Message message, UiCallback<Message> callback) {
|
|
|
|
this.uri = uri;
|
|
|
|
this.mXmppConnectionService = xmppConnectionService;
|
|
|
|
this.message = message;
|
|
|
|
this.callback = callback;
|
|
|
|
final String mimeType = MimeUtils.guessMimeTypeFromUri(mXmppConnectionService, uri);
|
2017-10-27 09:34:50 +00:00
|
|
|
final int autoAcceptFileSize = mXmppConnectionService.getResources().getInteger(R.integer.auto_accept_filesize);
|
|
|
|
this.originalFileSize = FileBackend.getFileSize(mXmppConnectionService,uri);
|
|
|
|
this.isVideoMessage = (mimeType != null && mimeType.startsWith("video/")
|
|
|
|
&& Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2)
|
|
|
|
&& originalFileSize > autoAcceptFileSize;
|
2017-09-18 15:56:25 +00:00
|
|
|
}
|
|
|
|
|
2017-09-21 19:54:10 +00:00
|
|
|
public boolean isVideoMessage() {
|
|
|
|
return this.isVideoMessage;
|
|
|
|
}
|
2017-09-18 15:56:25 +00:00
|
|
|
|
|
|
|
private void processAsFile() {
|
|
|
|
final String path = mXmppConnectionService.getFileBackend().getOriginalPath(uri);
|
2018-02-12 11:31:59 +00:00
|
|
|
if (path != null && !FileBackend.isPathBlacklisted(path)) {
|
2017-09-18 15:56:25 +00:00
|
|
|
message.setRelativeFilePath(path);
|
|
|
|
mXmppConnectionService.getFileBackend().updateFileParams(message);
|
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_DECRYPTED) {
|
|
|
|
mXmppConnectionService.getPgpEngine().encrypt(message, callback);
|
|
|
|
} else {
|
|
|
|
callback.success(message);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
mXmppConnectionService.getFileBackend().copyFileToPrivateStorage(message, uri);
|
|
|
|
mXmppConnectionService.getFileBackend().updateFileParams(message);
|
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_DECRYPTED) {
|
|
|
|
final PgpEngine pgpEngine = mXmppConnectionService.getPgpEngine();
|
|
|
|
if (pgpEngine != null) {
|
|
|
|
pgpEngine.encrypt(message, callback);
|
|
|
|
} else if (callback != null) {
|
|
|
|
callback.error(R.string.unable_to_connect_to_keychain, null);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
callback.success(message);
|
|
|
|
}
|
|
|
|
} catch (FileBackend.FileCopyException e) {
|
|
|
|
callback.error(e.getResId(), message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void processAsVideo() throws FileNotFoundException {
|
|
|
|
Log.d(Config.LOGTAG,"processing file as video");
|
|
|
|
mXmppConnectionService.startForcingForegroundNotification();
|
|
|
|
message.setRelativeFilePath(message.getUuid() + ".mp4");
|
|
|
|
final DownloadableFile file = mXmppConnectionService.getFileBackend().getFile(message);
|
|
|
|
final int runtime = mXmppConnectionService.getFileBackend().getMediaRuntime(uri);
|
|
|
|
MediaFormatStrategy formatStrategy = runtime >= 8000 ? MediaFormatStrategyPresets.createExportPreset960x540Strategy() : MediaFormatStrategyPresets.createAndroid720pStrategy();
|
|
|
|
file.getParentFile().mkdirs();
|
2017-10-14 00:38:05 +00:00
|
|
|
final ParcelFileDescriptor parcelFileDescriptor = mXmppConnectionService.getContentResolver().openFileDescriptor(uri, "r");
|
|
|
|
if (parcelFileDescriptor == null) {
|
|
|
|
throw new FileNotFoundException("Parcel File Descriptor was null");
|
|
|
|
}
|
2017-09-18 15:56:25 +00:00
|
|
|
FileDescriptor fileDescriptor = parcelFileDescriptor.getFileDescriptor();
|
2017-09-18 20:42:25 +00:00
|
|
|
Future<Void> future = MediaTranscoder.getInstance().transcodeVideo(fileDescriptor, file.getAbsolutePath(), formatStrategy, this);
|
|
|
|
try {
|
|
|
|
future.get();
|
2017-10-14 00:38:05 +00:00
|
|
|
} catch (InterruptedException e) {
|
2017-09-18 20:42:25 +00:00
|
|
|
throw new AssertionError(e);
|
2017-10-14 00:38:05 +00:00
|
|
|
} catch (ExecutionException e) {
|
|
|
|
Log.d(Config.LOGTAG,"ignoring execution exception. Should get handled by onTranscodeFiled() instead",e);
|
2017-09-18 20:42:25 +00:00
|
|
|
}
|
2017-09-18 15:56:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTranscodeProgress(double progress) {
|
|
|
|
final int p = (int) Math.round(progress * 100);
|
|
|
|
if (p > currentProgress) {
|
|
|
|
currentProgress = p;
|
|
|
|
mXmppConnectionService.getNotificationService().updateFileAddingNotification(p,message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTranscodeCompleted() {
|
|
|
|
mXmppConnectionService.stopForcingForegroundNotification();
|
2017-10-27 09:34:50 +00:00
|
|
|
final File file = mXmppConnectionService.getFileBackend().getFile(message);
|
|
|
|
long convertedFileSize = mXmppConnectionService.getFileBackend().getFile(message).getSize();
|
|
|
|
Log.d(Config.LOGTAG,"originalFileSize="+originalFileSize+" convertedFileSize="+convertedFileSize);
|
|
|
|
if (originalFileSize != 0 && convertedFileSize >= originalFileSize) {
|
|
|
|
if (file.delete()) {
|
|
|
|
Log.d(Config.LOGTAG,"original file size was smaller. deleting and processing as file");
|
|
|
|
processAsFile();
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
Log.d(Config.LOGTAG,"unable to delete converted file");
|
|
|
|
}
|
|
|
|
}
|
2017-09-18 15:56:25 +00:00
|
|
|
mXmppConnectionService.getFileBackend().updateFileParams(message);
|
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_DECRYPTED) {
|
|
|
|
mXmppConnectionService.getPgpEngine().encrypt(message, callback);
|
|
|
|
} else {
|
|
|
|
callback.success(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTranscodeCanceled() {
|
|
|
|
mXmppConnectionService.stopForcingForegroundNotification();
|
|
|
|
processAsFile();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTranscodeFailed(Exception e) {
|
|
|
|
mXmppConnectionService.stopForcingForegroundNotification();
|
2017-09-18 20:42:25 +00:00
|
|
|
Log.d(Config.LOGTAG,"video transcoding failed",e);
|
2017-09-18 15:56:25 +00:00
|
|
|
processAsFile();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
if (isVideoMessage) {
|
|
|
|
try {
|
|
|
|
processAsVideo();
|
2017-10-14 00:38:05 +00:00
|
|
|
} catch (FileNotFoundException e) {
|
2017-09-18 15:56:25 +00:00
|
|
|
processAsFile();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
processAsFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|