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

480 lines
14 KiB
Java
Raw Normal View History

2014-04-05 15:06:10 -04:00
package eu.siacs.conversations.persistance;
import java.io.ByteArrayOutputStream;
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.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
import android.content.Context;
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-06-30 06:01:43 -04:00
import android.media.ExifInterface;
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.util.LruCache;
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-04-05 15:06:10 -04:00
import eu.siacs.conversations.entities.Conversation;
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;
import eu.siacs.conversations.services.ImageProvider;
import eu.siacs.conversations.utils.CryptoHelper;
2014-08-11 17:18:16 -04:00
import eu.siacs.conversations.utils.UIHelper;
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;
2014-04-05 15:06:10 -04:00
private Context context;
private LruCache<String, Bitmap> thumbnailCache;
2014-08-31 10:28:21 -04:00
private SimpleDateFormat imageDateFormat = new SimpleDateFormat(
"yyyyMMdd_HHmmssSSS", Locale.US);
2014-04-05 15:06:10 -04:00
public FileBackend(Context context) {
this.context = context;
int maxMemory = (int) (Runtime.getRuntime().maxMemory() / 1024);
int cacheSize = maxMemory / 8;
thumbnailCache = new LruCache<String, Bitmap>(cacheSize) {
@Override
protected int sizeOf(String key, Bitmap bitmap) {
return bitmap.getByteCount() / 1024;
}
};
2014-04-05 15:06:10 -04:00
}
2014-05-14 12:32:58 -04:00
2014-04-25 10:24:56 -04:00
public LruCache<String, Bitmap> getThumbnailCache() {
return thumbnailCache;
}
2014-05-14 12:32:58 -04:00
2014-10-13 19:06:45 -04:00
public DownloadableFile getJingleFileLegacy(Message message) {
return getJingleFileLegacy(message, true);
2014-05-06 15:34:30 -04:00
}
public DownloadableFile getJingleFileLegacy(Message message,
boolean decrypted) {
2014-04-06 09:34:08 -04:00
Conversation conversation = message.getConversation();
String prefix = context.getFilesDir().getAbsolutePath();
String path = prefix + "/" + conversation.getAccount().getJid() + "/"
+ conversation.getContactJid();
2014-05-06 15:34:30 -04:00
String filename;
2014-05-14 12:32:58 -04:00
if ((decrypted) || (message.getEncryption() == Message.ENCRYPTION_NONE)) {
2014-05-06 15:34:30 -04:00
filename = message.getUuid() + ".webp";
} else {
if (message.getEncryption() == Message.ENCRYPTION_OTR) {
filename = message.getUuid() + ".webp";
} else {
filename = message.getUuid() + ".webp.pgp";
}
2014-05-06 15:34:30 -04:00
}
2014-10-13 19:06:45 -04:00
return new DownloadableFile(path + "/" + filename);
2014-04-06 09:34:08 -04:00
}
2014-08-31 10:28:21 -04:00
2014-10-13 19:06:45 -04:00
public DownloadableFile getJingleFile(Message message) {
return getConversationsFile(message, true);
}
2014-04-18 19:14:30 -04:00
public DownloadableFile getConversationsFile(Message message,
boolean decrypted) {
StringBuilder filename = new StringBuilder();
2014-08-31 10:28:21 -04:00
filename.append(Environment.getExternalStoragePublicDirectory(
Environment.DIRECTORY_PICTURES).getAbsolutePath());
filename.append("/Conversations/");
filename.append(message.getUuid());
if ((decrypted) || (message.getEncryption() == Message.ENCRYPTION_NONE)) {
filename.append(".webp");
} else {
if (message.getEncryption() == Message.ENCRYPTION_OTR) {
filename.append(".webp");
} else {
filename.append(".webp.pgp");
}
}
2014-10-13 19:06:45 -04:00
return new DownloadableFile(filename.toString());
}
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));
}
2014-04-18 19:14:30 -04:00
Bitmap scalledBitmap = Bitmap.createScaledBitmap(originalBitmap,
scalledW, scalledH, true);
return scalledBitmap;
} 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-10-13 19:06:45 -04:00
public DownloadableFile copyImageToPrivateStorage(Message message, Uri image)
2014-05-14 12:32:58 -04:00
throws ImageCopyException {
2014-06-30 06:01:43 -04:00
return this.copyImageToPrivateStorage(message, image, 0);
}
private DownloadableFile copyImageToPrivateStorage(Message message,
Uri image, int sampleSize) throws ImageCopyException {
2014-04-05 15:06:10 -04:00
try {
2014-08-31 10:28:21 -04:00
InputStream is = context.getContentResolver()
.openInputStream(image);
2014-10-13 19:06:45 -04:00
DownloadableFile file = getJingleFile(message);
2014-04-05 15:06:10 -04:00
file.getParentFile().mkdirs();
file.createNewFile();
2014-05-20 16:52:57 -04:00
Bitmap originalBitmap;
BitmapFactory.Options options = new BitmapFactory.Options();
int inSampleSize = (int) Math.pow(2, sampleSize);
2014-08-31 10:28:21 -04:00
Log.d(Config.LOGTAG, "reading bitmap with sample size "
2014-06-30 06:01:43 -04:00
+ inSampleSize);
options.inSampleSize = inSampleSize;
originalBitmap = BitmapFactory.decodeStream(is, null, options);
is.close();
2014-05-14 12:32:58 -04:00
if (originalBitmap == null) {
throw new ImageCopyException(R.string.error_not_an_image_file);
}
Bitmap scalledBitmap = resize(originalBitmap, IMAGE_SIZE);
2014-06-30 06:01:43 -04:00
originalBitmap = null;
2014-08-13 07:44:21 -04:00
int rotation = getRotation(image);
if (rotation > 0) {
scalledBitmap = rotate(scalledBitmap, rotation);
2014-06-30 06:01:43 -04:00
}
2014-05-20 16:52:57 -04:00
OutputStream os = new FileOutputStream(file);
2014-04-18 19:14:30 -04:00
boolean success = scalledBitmap.compress(
Bitmap.CompressFormat.WEBP, 75, os);
2014-04-05 15:06:10 -04:00
if (!success) {
2014-05-14 12:32:58 -04:00
throw new ImageCopyException(R.string.error_compressing_image);
2014-04-05 15:06:10 -04:00
}
2014-04-25 10:24:56 -04:00
os.flush();
2014-04-05 15:06:10 -04:00
os.close();
2014-04-25 10:24:56 -04:00
long size = file.getSize();
int width = scalledBitmap.getWidth();
int height = scalledBitmap.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-05-14 12:32:58 -04:00
throw new ImageCopyException(R.string.error_file_not_found);
2014-04-05 15:06:10 -04:00
} catch (IOException e) {
2014-05-14 12:32:58 -04:00
throw new ImageCopyException(R.string.error_io_exception);
} catch (SecurityException e) {
2014-05-14 12:32:58 -04:00
throw new ImageCopyException(
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 {
throw new ImageCopyException(R.string.error_out_of_memory);
}
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) {
if ("content".equals(image.getScheme())) {
2014-09-02 05:19:05 -04:00
try {
Cursor cursor = context
.getContentResolver()
.query(image,
new String[] { MediaStore.Images.ImageColumns.ORIENTATION },
null, null, null);
if (cursor.getCount() != 1) {
return -1;
}
cursor.moveToFirst();
return cursor.getInt(0);
} catch (IllegalArgumentException e) {
2014-08-31 10:28:21 -04:00
return -1;
}
2014-08-13 07:44:21 -04:00
} else {
ExifInterface exif;
try {
exif = new ExifInterface(image.toString());
if (exif.getAttribute(ExifInterface.TAG_ORIENTATION)
.equalsIgnoreCase("6")) {
return 90;
} else if (exif.getAttribute(ExifInterface.TAG_ORIENTATION)
.equalsIgnoreCase("8")) {
return 270;
} else if (exif.getAttribute(ExifInterface.TAG_ORIENTATION)
.equalsIgnoreCase("3")) {
return 180;
} else {
return 0;
}
} catch (IOException e) {
return -1;
}
}
}
2014-04-06 09:34:08 -04:00
public Bitmap getImageFromMessage(Message message) {
2014-04-18 19:14:30 -04:00
return BitmapFactory.decodeFile(getJingleFile(message)
.getAbsolutePath());
}
public Bitmap getThumbnail(Message message, int size, boolean cacheOnly)
2014-04-18 19:14:30 -04:00
throws FileNotFoundException {
Bitmap thumbnail = thumbnailCache.get(message.getUuid());
2014-05-14 12:32:58 -04:00
if ((thumbnail == null) && (!cacheOnly)) {
File file = getJingleFile(message);
if (!file.exists()) {
file = getJingleFileLegacy(message);
}
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = calcSampleSize(file, size);
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);
this.thumbnailCache.put(message.getUuid(), thumbnail);
}
return thumbnail;
2014-04-06 09:34:08 -04:00
}
2014-04-18 19:14:30 -04:00
public void removeFiles(Conversation conversation) {
String prefix = context.getFilesDir().getAbsolutePath();
String path = prefix + "/" + conversation.getAccount().getJid() + "/"
+ conversation.getContactJid();
File file = new File(path);
try {
this.deleteFile(file);
} catch (IOException e) {
2014-08-31 10:28:21 -04:00
Log.d(Config.LOGTAG,
2014-04-18 19:14:30 -04:00
"error deleting file: " + file.getAbsolutePath());
}
}
private void deleteFile(File f) throws IOException {
if (f.isDirectory()) {
for (File c : f.listFiles())
deleteFile(c);
}
f.delete();
}
2014-05-13 10:48:39 -04:00
2014-08-21 03:19:18 -04:00
public Uri getTakePhotoUri() {
StringBuilder pathBuilder = new StringBuilder();
2014-08-31 10:28:21 -04:00
pathBuilder.append(Environment
.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM));
2014-08-21 03:19:18 -04:00
pathBuilder.append('/');
pathBuilder.append("Camera");
pathBuilder.append('/');
2014-08-31 10:28:21 -04:00
pathBuilder.append("IMG_" + this.imageDateFormat.format(new Date())
+ ".jpg");
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(context, avatar.getFilename()));
return file.exists();
}
2014-08-31 10:28:21 -04:00
public boolean save(Avatar avatar) {
if (isAvatarCached(avatar)) {
return true;
}
String filename = getAvatarPath(context, avatar.getFilename());
2014-08-31 10:28:21 -04:00
File file = new File(filename + ".tmp");
file.getParentFile().mkdirs();
try {
file.createNewFile();
FileOutputStream mFileOutputStream = new FileOutputStream(file);
MessageDigest digest = MessageDigest.getInstance("SHA-1");
digest.reset();
2014-08-31 10:28:21 -04:00
DigestOutputStream mDigestOutputStream = new DigestOutputStream(
mFileOutputStream, digest);
mDigestOutputStream.write(avatar.getImageAsBytes());
mDigestOutputStream.flush();
mDigestOutputStream.close();
2014-08-04 19:36:17 -04:00
avatar.size = file.length();
String sha1sum = CryptoHelper.bytesToHex(digest.digest());
if (sha1sum.equals(avatar.sha1sum)) {
file.renameTo(new File(filename));
return true;
} else {
2014-08-31 10:28:21 -04:00
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;
}
}
2014-08-31 10:28:21 -04:00
public static String getAvatarPath(Context context, String avatar) {
2014-08-31 10:28:21 -04:00
return context.getFilesDir().getAbsolutePath() + "/avatars/" + avatar;
}
public Bitmap cropCenterSquare(Uri image, int size) {
try {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = calcSampleSize(image, size);
InputStream is = context.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;
}
}
2014-08-31 10:28:21 -04:00
2014-08-11 17:18:16 -04:00
public static Bitmap cropCenterSquare(Bitmap input, int size) {
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
Bitmap output = Bitmap.createBitmap(size, size, input.getConfig());
Canvas canvas = new Canvas(output);
canvas.drawBitmap(input, null, target, null);
return output;
}
private int calcSampleSize(Uri image, int size)
throws FileNotFoundException {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeStream(context.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 = getJingleFile(message);
if (file.exists()) {
2014-08-31 10:28:21 -04:00
return Uri.parse("file://" + file.getAbsolutePath());
} else {
return ImageProvider.getProviderUri(message);
}
}
2014-05-14 12:32:58 -04:00
public class ImageCopyException extends Exception {
private static final long serialVersionUID = -1010013599132881427L;
private int resId;
public ImageCopyException(int resId) {
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 static Bitmap getAvatar(String avatar, int size, Context context) {
2014-08-31 10:28:21 -04:00
Bitmap bm = BitmapFactory.decodeFile(FileBackend.getAvatarPath(context,
avatar));
if (bm == null) {
2014-08-11 17:18:16 -04:00
return null;
}
return cropCenterSquare(bm, UIHelper.getRealPx(size, context));
}
2014-04-05 15:06:10 -04:00
}