Conversations/src/main/java/eu/siacs/conversations/persistance/FileBackend.java

542 lines
17 KiB
Java
Raw Normal View History

2014-04-05 15:06:10 -04:00
package eu.siacs.conversations.persistance;
import java.io.ByteArrayOutputStream;
2015-04-25 08:08:24 -04:00
import java.io.Closeable;
2014-04-18 19:14:30 -04:00
import java.io.File;
2014-04-05 15:06:10 -04:00
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URL;
import java.security.DigestOutputStream;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
2014-08-21 03:19:18 -04:00
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
2014-04-05 15:06:10 -04:00
2014-08-13 07:44:21 -04:00
import android.database.Cursor;
2014-04-05 15:06:10 -04:00
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
2014-06-30 06:01:43 -04:00
import android.graphics.Matrix;
import android.graphics.RectF;
2014-04-05 15:06:10 -04:00
import android.net.Uri;
import android.os.Environment;
2014-08-13 07:44:21 -04:00
import android.provider.MediaStore;
import android.util.Base64;
import android.util.Base64OutputStream;
2014-04-18 19:14:30 -04:00
import android.util.Log;
import android.webkit.MimeTypeMap;
2014-08-31 10:28:21 -04:00
import eu.siacs.conversations.Config;
2014-05-14 12:32:58 -04:00
import eu.siacs.conversations.R;
2014-10-14 06:02:48 -04:00
import eu.siacs.conversations.entities.DownloadableFile;
2014-04-06 09:34:08 -04:00
import eu.siacs.conversations.entities.Message;
2014-10-21 08:57:16 -04:00
import eu.siacs.conversations.services.XmppConnectionService;
import eu.siacs.conversations.utils.CryptoHelper;
import eu.siacs.conversations.utils.ExifHelper;
import eu.siacs.conversations.xmpp.pep.Avatar;
2014-04-05 15:06:10 -04:00
public class FileBackend {
2014-04-05 15:06:10 -04:00
private static int IMAGE_SIZE = 1920;
2015-04-25 08:08:24 -04:00
private final SimpleDateFormat imageDateFormat = new SimpleDateFormat("yyyyMMdd_HHmmssSSS", Locale.US);
2014-10-21 08:57:16 -04:00
private XmppConnectionService mXmppConnectionService;
2014-05-14 12:32:58 -04:00
2014-10-21 08:57:16 -04:00
public FileBackend(XmppConnectionService service) {
this.mXmppConnectionService = service;
2014-04-25 10:24:56 -04:00
}
2014-05-14 12:32:58 -04:00
public DownloadableFile getFile(Message message) {
return getFile(message, true);
2014-05-06 15:34:30 -04:00
}
public DownloadableFile getFile(Message message, boolean decrypted) {
2014-11-13 15:04:05 -05:00
String path = message.getRelativeFilePath();
2015-01-11 09:19:36 -05:00
String extension;
if (path != null && !path.isEmpty()) {
String[] parts = path.split("\\.");
extension = "."+parts[parts.length - 1];
} else {
if (message.getType() == Message.TYPE_IMAGE || message.getType() == Message.TYPE_TEXT) {
2014-11-13 21:27:18 -05:00
extension = ".webp";
} else {
extension = "";
}
2015-01-11 09:19:36 -05:00
path = message.getUuid()+extension;
}
final boolean encrypted = !decrypted
&& (message.getEncryption() == Message.ENCRYPTION_PGP
|| message.getEncryption() == Message.ENCRYPTION_DECRYPTED);
if (encrypted) {
2014-11-13 21:27:18 -05:00
return new DownloadableFile(getConversationsFileDirectory()+message.getUuid()+extension+".pgp");
2015-01-11 09:19:36 -05:00
} else {
2014-11-13 15:04:05 -05:00
if (path.startsWith("/")) {
return new DownloadableFile(path);
} else {
2015-01-11 09:19:36 -05:00
if (message.getType() == Message.TYPE_FILE) {
return new DownloadableFile(getConversationsFileDirectory() + path);
} else {
return new DownloadableFile(getConversationsImageDirectory()+path);
}
2014-11-13 15:04:05 -05:00
}
}
}
2014-11-13 21:27:18 -05:00
public static String getConversationsFileDirectory() {
return Environment.getExternalStorageDirectory().getAbsolutePath()+"/Conversations/";
}
public static String getConversationsImageDirectory() {
return Environment.getExternalStoragePublicDirectory(
2014-11-13 15:04:05 -05:00
Environment.DIRECTORY_PICTURES).getAbsolutePath()
+ "/Conversations/";
}
2014-08-31 10:28:21 -04:00
2014-04-25 10:24:56 -04:00
public Bitmap resize(Bitmap originalBitmap, int size) {
int w = originalBitmap.getWidth();
int h = originalBitmap.getHeight();
if (Math.max(w, h) > size) {
int scalledW;
int scalledH;
if (w <= h) {
scalledW = (int) (w / ((double) h / size));
scalledH = size;
} else {
scalledW = size;
scalledH = (int) (h / ((double) w / size));
}
2015-04-25 08:08:24 -04:00
return Bitmap.createScaledBitmap(originalBitmap, scalledW, scalledH, true);
} else {
return originalBitmap;
}
}
2014-06-30 06:01:43 -04:00
public Bitmap rotate(Bitmap bitmap, int degree) {
int w = bitmap.getWidth();
int h = bitmap.getHeight();
Matrix mtx = new Matrix();
mtx.postRotate(degree);
return Bitmap.createBitmap(bitmap, 0, 0, w, h, mtx, true);
}
2014-11-13 15:04:05 -05:00
public String getOriginalPath(Uri uri) {
String path = null;
if (uri.getScheme().equals("file")) {
return uri.getPath();
} else if (uri.toString().startsWith("content://media/")) {
2014-11-13 15:04:05 -05:00
String[] projection = {MediaStore.MediaColumns.DATA};
Cursor metaCursor = mXmppConnectionService.getContentResolver().query(uri,
projection, null, null, null);
if (metaCursor != null) {
try {
if (metaCursor.moveToFirst()) {
path = metaCursor.getString(0);
}
} finally {
metaCursor.close();
}
}
}
return path;
}
public DownloadableFile copyFileToPrivateStorage(Message message, Uri uri) throws FileCopyException {
2015-04-25 08:08:24 -04:00
Log.d(Config.LOGTAG, "copy " + uri.toString() + " to private storage");
String mime = mXmppConnectionService.getContentResolver().getType(uri);
String extension = MimeTypeMap.getSingleton().getExtensionFromMimeType(mime);
message.setRelativeFilePath(message.getUuid() + "." + extension);
DownloadableFile file = mXmppConnectionService.getFileBackend().getFile(message);
file.getParentFile().mkdirs();
OutputStream os = null;
InputStream is = null;
try {
2015-04-25 08:08:24 -04:00
if (!file.createNewFile()) {
throw new FileCopyException(R.string.error_io_exception);
}
os = new FileOutputStream(file);
is = mXmppConnectionService.getContentResolver().openInputStream(uri);
byte[] buffer = new byte[1024];
2015-04-25 08:08:24 -04:00
int length;
while ((length = is.read(buffer)) > 0) {
os.write(buffer, 0, length);
2015-04-25 08:08:24 -04:00
}
os.flush();
} catch (IOException e) {
throw new FileCopyException(R.string.error_io_exception);
2015-04-25 08:08:24 -04:00
} finally {
close(os);
close(is);
}
2015-04-25 08:08:24 -04:00
Log.d(Config.LOGTAG, "output file name " + mXmppConnectionService.getFileBackend().getFile(message));
return file;
}
2014-10-13 19:06:45 -04:00
public DownloadableFile copyImageToPrivateStorage(Message message, Uri image)
2014-11-13 15:04:05 -05:00
throws FileCopyException {
2014-06-30 06:01:43 -04:00
return this.copyImageToPrivateStorage(message, image, 0);
}
private DownloadableFile copyImageToPrivateStorage(Message message,
2014-11-13 15:04:05 -05:00
Uri image, int sampleSize) throws FileCopyException {
2015-04-25 08:08:24 -04:00
DownloadableFile file = getFile(message);
file.getParentFile().mkdirs();
InputStream is = null;
OutputStream os = null;
2014-04-05 15:06:10 -04:00
try {
2015-04-25 08:08:24 -04:00
if (!file.createNewFile()) {
throw new FileCopyException(R.string.error_io_exception);
}
is = mXmppConnectionService.getContentResolver().openInputStream(image);
os = new FileOutputStream(file);
2014-05-20 16:52:57 -04:00
Bitmap originalBitmap;
BitmapFactory.Options options = new BitmapFactory.Options();
int inSampleSize = (int) Math.pow(2, sampleSize);
2015-04-25 08:08:24 -04:00
Log.d(Config.LOGTAG, "reading bitmap with sample size " + inSampleSize);
options.inSampleSize = inSampleSize;
originalBitmap = BitmapFactory.decodeStream(is, null, options);
is.close();
2014-05-14 12:32:58 -04:00
if (originalBitmap == null) {
2014-11-13 15:04:05 -05:00
throw new FileCopyException(R.string.error_not_an_image_file);
2014-05-14 12:32:58 -04:00
}
2015-04-25 08:08:24 -04:00
Bitmap scaledBitmap = resize(originalBitmap, IMAGE_SIZE);
2014-08-13 07:44:21 -04:00
int rotation = getRotation(image);
if (rotation > 0) {
2015-04-25 08:08:24 -04:00
scaledBitmap = rotate(scaledBitmap, rotation);
2014-06-30 06:01:43 -04:00
}
2015-04-25 08:08:24 -04:00
boolean success = scaledBitmap.compress(Bitmap.CompressFormat.WEBP, 75, os);
2014-04-05 15:06:10 -04:00
if (!success) {
2014-11-13 15:04:05 -05:00
throw new FileCopyException(R.string.error_compressing_image);
2014-04-05 15:06:10 -04:00
}
2014-04-25 10:24:56 -04:00
os.flush();
long size = file.getSize();
2015-04-25 08:08:24 -04:00
int width = scaledBitmap.getWidth();
int height = scaledBitmap.getHeight();
2014-09-01 04:40:45 -04:00
message.setBody(Long.toString(size) + ',' + width + ',' + height);
2014-04-05 15:06:10 -04:00
return file;
} catch (FileNotFoundException e) {
2014-11-13 15:04:05 -05:00
throw new FileCopyException(R.string.error_file_not_found);
2014-04-05 15:06:10 -04:00
} catch (IOException e) {
2014-11-13 15:04:05 -05:00
throw new FileCopyException(R.string.error_io_exception);
} catch (SecurityException e) {
2015-04-25 08:08:24 -04:00
throw new FileCopyException(R.string.error_security_exception_during_image_copy);
} catch (OutOfMemoryError e) {
++sampleSize;
2014-06-30 06:01:43 -04:00
if (sampleSize <= 3) {
return copyImageToPrivateStorage(message, image, sampleSize);
} else {
2014-11-13 15:04:05 -05:00
throw new FileCopyException(R.string.error_out_of_memory);
}
2015-04-25 08:08:24 -04:00
} finally {
close(os);
close(is);
2014-04-05 15:06:10 -04:00
}
}
2014-08-31 10:28:21 -04:00
2014-08-13 07:44:21 -04:00
private int getRotation(Uri image) {
2015-04-25 08:08:24 -04:00
InputStream is = null;
2014-11-03 05:20:32 -05:00
try {
2015-04-25 08:08:24 -04:00
is = mXmppConnectionService.getContentResolver().openInputStream(image);
2014-11-03 05:20:32 -05:00
return ExifHelper.getOrientation(is);
} catch (FileNotFoundException e) {
return 0;
2015-04-25 08:08:24 -04:00
} finally {
close(is);
2014-08-13 07:44:21 -04:00
}
}
public Bitmap getThumbnail(Message message, int size, boolean cacheOnly)
2014-04-18 19:14:30 -04:00
throws FileNotFoundException {
2014-10-21 08:57:16 -04:00
Bitmap thumbnail = mXmppConnectionService.getBitmapCache().get(
message.getUuid());
2014-05-14 12:32:58 -04:00
if ((thumbnail == null) && (!cacheOnly)) {
File file = getFile(message);
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = calcSampleSize(file, size);
2015-04-25 08:08:24 -04:00
Bitmap fullsize = BitmapFactory.decodeFile(file.getAbsolutePath(),options);
2014-04-18 19:14:30 -04:00
if (fullsize == null) {
throw new FileNotFoundException();
}
thumbnail = resize(fullsize, size);
2014-10-21 08:57:16 -04:00
this.mXmppConnectionService.getBitmapCache().put(message.getUuid(),
thumbnail);
}
return thumbnail;
2014-04-06 09:34:08 -04:00
}
2014-04-18 19:14:30 -04:00
2014-08-21 03:19:18 -04:00
public Uri getTakePhotoUri() {
StringBuilder pathBuilder = new StringBuilder();
2015-04-25 08:08:24 -04:00
pathBuilder.append(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM));
2014-08-21 03:19:18 -04:00
pathBuilder.append('/');
pathBuilder.append("Camera");
pathBuilder.append('/');
2015-04-25 08:08:24 -04:00
pathBuilder.append("IMG_" + this.imageDateFormat.format(new Date()) + ".jpg");
2014-08-31 10:28:21 -04:00
Uri uri = Uri.parse("file://" + pathBuilder.toString());
2014-08-21 03:19:18 -04:00
File file = new File(uri.toString());
file.getParentFile().mkdirs();
return uri;
2014-06-30 06:01:43 -04:00
}
2014-08-31 10:28:21 -04:00
public Avatar getPepAvatar(Uri image, int size, Bitmap.CompressFormat format) {
try {
Avatar avatar = new Avatar();
Bitmap bm = cropCenterSquare(image, size);
2014-08-31 10:28:21 -04:00
if (bm == null) {
return null;
}
ByteArrayOutputStream mByteArrayOutputStream = new ByteArrayOutputStream();
2014-08-31 10:28:21 -04:00
Base64OutputStream mBase64OutputSttream = new Base64OutputStream(
mByteArrayOutputStream, Base64.DEFAULT);
MessageDigest digest = MessageDigest.getInstance("SHA-1");
2014-08-31 10:28:21 -04:00
DigestOutputStream mDigestOutputStream = new DigestOutputStream(
mBase64OutputSttream, digest);
if (!bm.compress(format, 75, mDigestOutputStream)) {
return null;
}
mDigestOutputStream.flush();
mDigestOutputStream.close();
avatar.sha1sum = CryptoHelper.bytesToHex(digest.digest());
avatar.image = new String(mByteArrayOutputStream.toByteArray());
return avatar;
} catch (NoSuchAlgorithmException e) {
return null;
} catch (IOException e) {
return null;
}
}
2014-08-31 10:28:21 -04:00
2014-08-05 16:58:46 -04:00
public boolean isAvatarCached(Avatar avatar) {
File file = new File(getAvatarPath(avatar.getFilename()));
2014-08-05 16:58:46 -04:00
return file.exists();
}
2014-08-31 10:28:21 -04:00
public boolean save(Avatar avatar) {
2015-03-17 12:36:17 -04:00
File file;
if (isAvatarCached(avatar)) {
2015-03-17 12:36:17 -04:00
file = new File(getAvatarPath(avatar.getFilename()));
} else {
String filename = getAvatarPath(avatar.getFilename());
file = new File(filename + ".tmp");
file.getParentFile().mkdirs();
2015-04-25 08:08:24 -04:00
OutputStream os = null;
2015-03-17 12:36:17 -04:00
try {
file.createNewFile();
2015-04-25 08:08:24 -04:00
os = new FileOutputStream(file);
2015-03-17 12:36:17 -04:00
MessageDigest digest = MessageDigest.getInstance("SHA-1");
digest.reset();
2015-04-25 08:08:24 -04:00
DigestOutputStream mDigestOutputStream = new DigestOutputStream(os, digest);
2015-03-17 12:36:17 -04:00
mDigestOutputStream.write(avatar.getImageAsBytes());
mDigestOutputStream.flush();
mDigestOutputStream.close();
String sha1sum = CryptoHelper.bytesToHex(digest.digest());
if (sha1sum.equals(avatar.sha1sum)) {
file.renameTo(new File(filename));
} else {
Log.d(Config.LOGTAG, "sha1sum mismatch for " + avatar.owner);
file.delete();
return false;
}
} catch (FileNotFoundException e) {
return false;
} catch (IOException e) {
return false;
} catch (NoSuchAlgorithmException e) {
return false;
2015-04-25 08:08:24 -04:00
} finally {
close(os);
}
}
2015-03-17 12:36:17 -04:00
avatar.size = file.length();
return true;
}
2014-08-31 10:28:21 -04:00
public String getAvatarPath(String avatar) {
2015-04-25 08:08:24 -04:00
return mXmppConnectionService.getFilesDir().getAbsolutePath()+ "/avatars/" + avatar;
}
public Uri getAvatarUri(String avatar) {
return Uri.parse("file:" + getAvatarPath(avatar));
}
public Bitmap cropCenterSquare(Uri image, int size) {
2014-11-21 09:25:57 -05:00
if (image == null) {
return null;
}
2015-04-25 08:08:24 -04:00
InputStream is = null;
try {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = calcSampleSize(image, size);
2015-04-25 08:08:24 -04:00
is = mXmppConnectionService.getContentResolver().openInputStream(image);
Bitmap input = BitmapFactory.decodeStream(is, null, options);
2014-08-31 10:28:21 -04:00
if (input == null) {
return null;
} else {
2014-09-02 05:19:05 -04:00
int rotation = getRotation(image);
if (rotation > 0) {
input = rotate(input, rotation);
}
return cropCenterSquare(input, size);
}
} catch (FileNotFoundException e) {
return null;
2015-04-25 08:08:24 -04:00
} finally {
close(is);
}
}
2014-08-31 10:28:21 -04:00
public Bitmap cropCenter(Uri image, int newHeight, int newWidth) {
2014-11-21 09:25:57 -05:00
if (image == null) {
return null;
}
2015-04-25 08:08:24 -04:00
InputStream is = null;
try {
BitmapFactory.Options options = new BitmapFactory.Options();
2014-11-21 09:25:57 -05:00
options.inSampleSize = calcSampleSize(image,Math.max(newHeight, newWidth));
2015-04-25 08:08:24 -04:00
is = mXmppConnectionService.getContentResolver().openInputStream(image);
Bitmap source = BitmapFactory.decodeStream(is, null, options);
int sourceWidth = source.getWidth();
int sourceHeight = source.getHeight();
float xScale = (float) newWidth / sourceWidth;
float yScale = (float) newHeight / sourceHeight;
float scale = Math.max(xScale, yScale);
float scaledWidth = scale * sourceWidth;
float scaledHeight = scale * sourceHeight;
float left = (newWidth - scaledWidth) / 2;
float top = (newHeight - scaledHeight) / 2;
2014-11-21 09:25:57 -05:00
RectF targetRect = new RectF(left, top, left + scaledWidth, top + scaledHeight);
2015-04-26 14:26:59 -04:00
Bitmap dest = Bitmap.createBitmap(newWidth, newHeight, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(dest);
canvas.drawBitmap(source, null, targetRect, null);
return dest;
} catch (FileNotFoundException e) {
return null;
2015-04-25 08:08:24 -04:00
} catch (IOException e) {
return null;
} finally {
close(is);
}
}
public Bitmap cropCenterSquare(Bitmap input, int size) {
2014-08-11 17:18:16 -04:00
int w = input.getWidth();
int h = input.getHeight();
float scale = Math.max((float) size / h, (float) size / w);
float outWidth = scale * w;
float outHeight = scale * h;
float left = (size - outWidth) / 2;
float top = (size - outHeight) / 2;
2014-08-31 10:28:21 -04:00
RectF target = new RectF(left, top, left + outWidth, top + outHeight);
2014-08-11 17:18:16 -04:00
2015-04-26 14:26:59 -04:00
Bitmap output = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888);
2014-08-11 17:18:16 -04:00
Canvas canvas = new Canvas(output);
canvas.drawBitmap(input, null, target, null);
return output;
}
2014-11-21 09:25:57 -05:00
private int calcSampleSize(Uri image, int size) throws FileNotFoundException {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
2014-11-21 09:25:57 -05:00
BitmapFactory.decodeStream(mXmppConnectionService.getContentResolver().openInputStream(image), null, options);
return calcSampleSize(options, size);
}
private int calcSampleSize(File image, int size) {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(image.getAbsolutePath(), options);
return calcSampleSize(options, size);
}
private int calcSampleSize(BitmapFactory.Options options, int size) {
int height = options.outHeight;
int width = options.outWidth;
int inSampleSize = 1;
if (height > size || width > size) {
int halfHeight = height / 2;
int halfWidth = width / 2;
while ((halfHeight / inSampleSize) > size
&& (halfWidth / inSampleSize) > size) {
inSampleSize *= 2;
}
}
return inSampleSize;
}
2014-08-31 10:28:21 -04:00
public Uri getJingleFileUri(Message message) {
File file = getFile(message);
return Uri.parse("file://" + file.getAbsolutePath());
}
2014-05-14 12:32:58 -04:00
public void updateFileParams(Message message) {
updateFileParams(message,null);
}
public void updateFileParams(Message message, URL url) {
DownloadableFile file = getFile(message);
if (message.getType() == Message.TYPE_IMAGE || file.getMimeType().startsWith("image/")) {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(file.getAbsolutePath(), options);
int imageHeight = options.outHeight;
int imageWidth = options.outWidth;
if (url == null) {
message.setBody(Long.toString(file.getSize()) + '|' + imageWidth + '|' + imageHeight);
} else {
message.setBody(url.toString()+"|"+Long.toString(file.getSize()) + '|' + imageWidth + '|' + imageHeight);
}
} else {
message.setBody(Long.toString(file.getSize()));
}
}
2014-11-13 15:04:05 -05:00
public class FileCopyException extends Exception {
2014-05-14 12:32:58 -04:00
private static final long serialVersionUID = -1010013599132881427L;
private int resId;
2014-11-13 15:04:05 -05:00
public FileCopyException(int resId) {
2014-05-14 12:32:58 -04:00
this.resId = resId;
}
public int getResId() {
return resId;
}
2014-05-13 10:48:39 -04:00
}
2014-08-11 17:18:16 -04:00
public Bitmap getAvatar(String avatar, int size) {
if (avatar == null) {
return null;
}
Bitmap bm = cropCenter(getAvatarUri(avatar), size, size);
2014-08-31 10:28:21 -04:00
if (bm == null) {
2014-08-11 17:18:16 -04:00
return null;
}
return bm;
2014-08-11 17:18:16 -04:00
}
public boolean isFileAvailable(Message message) {
return getFile(message).exists();
}
2015-04-25 08:08:24 -04:00
public static void close(Closeable stream) {
if (stream != null) {
try {
stream.close();
} catch (IOException e) {
}
}
}
2014-04-05 15:06:10 -04:00
}