2014-04-05 21:06:10 +02:00
|
|
|
package eu.siacs.conversations.persistance;
|
|
|
|
|
2014-08-03 20:28:13 +02:00
|
|
|
import java.io.ByteArrayOutputStream;
|
2014-04-19 01:14:30 +02:00
|
|
|
import java.io.File;
|
2014-04-05 21:06:10 +02:00
|
|
|
import java.io.FileNotFoundException;
|
|
|
|
import java.io.FileOutputStream;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.OutputStream;
|
2014-08-03 20:28:13 +02:00
|
|
|
import java.security.DigestOutputStream;
|
|
|
|
import java.security.MessageDigest;
|
|
|
|
import java.security.NoSuchAlgorithmException;
|
2014-08-21 09:19:18 +02:00
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.Locale;
|
2014-04-05 21:06:10 +02:00
|
|
|
|
|
|
|
import android.content.Context;
|
2014-08-13 13:44:21 +02:00
|
|
|
import android.database.Cursor;
|
2014-04-05 21:06:10 +02:00
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.BitmapFactory;
|
2014-08-03 20:28:13 +02:00
|
|
|
import android.graphics.Canvas;
|
2014-06-30 12:01:43 +02:00
|
|
|
import android.graphics.Matrix;
|
2014-08-03 20:28:13 +02:00
|
|
|
import android.graphics.RectF;
|
2014-06-30 12:01:43 +02:00
|
|
|
import android.media.ExifInterface;
|
2014-04-05 21:06:10 +02:00
|
|
|
import android.net.Uri;
|
2014-08-08 11:49:23 +02:00
|
|
|
import android.os.Environment;
|
2014-08-13 13:44:21 +02:00
|
|
|
import android.provider.MediaStore;
|
2014-08-03 20:28:13 +02:00
|
|
|
import android.util.Base64;
|
|
|
|
import android.util.Base64OutputStream;
|
2014-04-19 01:14:30 +02:00
|
|
|
import android.util.Log;
|
2014-04-07 20:05:45 +02:00
|
|
|
import android.util.LruCache;
|
2014-08-31 16:28:21 +02:00
|
|
|
import eu.siacs.conversations.Config;
|
2014-05-14 18:32:58 +02:00
|
|
|
import eu.siacs.conversations.R;
|
2014-04-05 21:06:10 +02:00
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
2014-04-06 15:34:08 +02:00
|
|
|
import eu.siacs.conversations.entities.Message;
|
2014-08-08 11:49:23 +02:00
|
|
|
import eu.siacs.conversations.services.ImageProvider;
|
2014-08-03 20:28:13 +02:00
|
|
|
import eu.siacs.conversations.utils.CryptoHelper;
|
2014-08-11 23:18:16 +02:00
|
|
|
import eu.siacs.conversations.utils.UIHelper;
|
2014-04-13 11:32:45 +02:00
|
|
|
import eu.siacs.conversations.xmpp.jingle.JingleFile;
|
2014-08-03 20:28:13 +02:00
|
|
|
import eu.siacs.conversations.xmpp.pep.Avatar;
|
2014-04-05 21:06:10 +02:00
|
|
|
|
|
|
|
public class FileBackend {
|
2014-04-07 20:05:45 +02:00
|
|
|
|
2014-04-05 21:06:10 +02:00
|
|
|
private static int IMAGE_SIZE = 1920;
|
2014-04-07 20:05:45 +02:00
|
|
|
|
2014-04-05 21:06:10 +02:00
|
|
|
private Context context;
|
2014-04-07 20:05:45 +02:00
|
|
|
private LruCache<String, Bitmap> thumbnailCache;
|
2014-08-31 16:28:21 +02:00
|
|
|
|
|
|
|
private SimpleDateFormat imageDateFormat = new SimpleDateFormat(
|
|
|
|
"yyyyMMdd_HHmmssSSS", Locale.US);
|
2014-04-07 20:05:45 +02:00
|
|
|
|
2014-04-05 21:06:10 +02:00
|
|
|
public FileBackend(Context context) {
|
|
|
|
this.context = context;
|
2014-04-07 20:05:45 +02:00
|
|
|
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 21:06:10 +02:00
|
|
|
}
|
2014-05-14 18:32:58 +02:00
|
|
|
|
2014-04-25 16:24:56 +02:00
|
|
|
public LruCache<String, Bitmap> getThumbnailCache() {
|
|
|
|
return thumbnailCache;
|
|
|
|
}
|
2014-05-14 18:32:58 +02:00
|
|
|
|
2014-08-08 11:49:23 +02:00
|
|
|
public JingleFile getJingleFileLegacy(Message message) {
|
|
|
|
return getJingleFileLegacy(message, true);
|
2014-05-06 21:34:30 +02:00
|
|
|
}
|
|
|
|
|
2014-08-08 11:49:23 +02:00
|
|
|
public JingleFile getJingleFileLegacy(Message message, boolean decrypted) {
|
2014-04-06 15:34:08 +02:00
|
|
|
Conversation conversation = message.getConversation();
|
2014-04-07 20:05:45 +02:00
|
|
|
String prefix = context.getFilesDir().getAbsolutePath();
|
|
|
|
String path = prefix + "/" + conversation.getAccount().getJid() + "/"
|
|
|
|
+ conversation.getContactJid();
|
2014-05-06 21:34:30 +02:00
|
|
|
String filename;
|
2014-05-14 18:32:58 +02:00
|
|
|
if ((decrypted) || (message.getEncryption() == Message.ENCRYPTION_NONE)) {
|
2014-05-06 21:34:30 +02:00
|
|
|
filename = message.getUuid() + ".webp";
|
|
|
|
} else {
|
2014-06-20 17:30:19 +02:00
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_OTR) {
|
|
|
|
filename = message.getUuid() + ".webp";
|
|
|
|
} else {
|
|
|
|
filename = message.getUuid() + ".webp.pgp";
|
|
|
|
}
|
2014-05-06 21:34:30 +02:00
|
|
|
}
|
2014-04-13 11:32:45 +02:00
|
|
|
return new JingleFile(path + "/" + filename);
|
2014-04-06 15:34:08 +02:00
|
|
|
}
|
2014-08-31 16:28:21 +02:00
|
|
|
|
2014-08-08 11:49:23 +02:00
|
|
|
public JingleFile getJingleFile(Message message) {
|
|
|
|
return getJingleFile(message, true);
|
|
|
|
}
|
2014-04-19 01:14:30 +02:00
|
|
|
|
2014-08-08 11:49:23 +02:00
|
|
|
public JingleFile getJingleFile(Message message, boolean decrypted) {
|
|
|
|
StringBuilder filename = new StringBuilder();
|
2014-08-31 16:28:21 +02:00
|
|
|
filename.append(Environment.getExternalStoragePublicDirectory(
|
|
|
|
Environment.DIRECTORY_PICTURES).getAbsolutePath());
|
2014-08-08 11:49:23 +02:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return new JingleFile(filename.toString());
|
|
|
|
}
|
2014-08-31 16:28:21 +02:00
|
|
|
|
2014-04-25 16:24:56 +02:00
|
|
|
public Bitmap resize(Bitmap originalBitmap, int size) {
|
2014-04-07 20:05:45 +02:00
|
|
|
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-19 01:14:30 +02:00
|
|
|
Bitmap scalledBitmap = Bitmap.createScaledBitmap(originalBitmap,
|
|
|
|
scalledW, scalledH, true);
|
2014-04-07 20:05:45 +02:00
|
|
|
return scalledBitmap;
|
|
|
|
} else {
|
|
|
|
return originalBitmap;
|
|
|
|
}
|
|
|
|
}
|
2014-06-30 12:01:43 +02: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-05-21 00:39:45 +02:00
|
|
|
}
|
2014-04-07 20:05:45 +02:00
|
|
|
|
2014-06-30 12:01:43 +02:00
|
|
|
public JingleFile copyImageToPrivateStorage(Message message, Uri image)
|
2014-05-14 18:32:58 +02:00
|
|
|
throws ImageCopyException {
|
2014-06-30 12:01:43 +02:00
|
|
|
return this.copyImageToPrivateStorage(message, image, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
private JingleFile copyImageToPrivateStorage(Message message, Uri image,
|
|
|
|
int sampleSize) throws ImageCopyException {
|
2014-04-05 21:06:10 +02:00
|
|
|
try {
|
2014-08-31 16:28:21 +02:00
|
|
|
InputStream is = context.getContentResolver()
|
|
|
|
.openInputStream(image);
|
2014-04-13 18:09:40 +02:00
|
|
|
JingleFile file = getJingleFile(message);
|
2014-04-05 21:06:10 +02:00
|
|
|
file.getParentFile().mkdirs();
|
|
|
|
file.createNewFile();
|
2014-05-20 22:52:57 +02:00
|
|
|
Bitmap originalBitmap;
|
2014-05-21 00:39:45 +02:00
|
|
|
BitmapFactory.Options options = new BitmapFactory.Options();
|
|
|
|
int inSampleSize = (int) Math.pow(2, sampleSize);
|
2014-08-31 16:28:21 +02:00
|
|
|
Log.d(Config.LOGTAG, "reading bitmap with sample size "
|
2014-06-30 12:01:43 +02:00
|
|
|
+ inSampleSize);
|
2014-05-21 00:39:45 +02:00
|
|
|
options.inSampleSize = inSampleSize;
|
|
|
|
originalBitmap = BitmapFactory.decodeStream(is, null, options);
|
|
|
|
is.close();
|
2014-05-14 18:32:58 +02:00
|
|
|
if (originalBitmap == null) {
|
|
|
|
throw new ImageCopyException(R.string.error_not_an_image_file);
|
|
|
|
}
|
2014-04-07 20:05:45 +02:00
|
|
|
Bitmap scalledBitmap = resize(originalBitmap, IMAGE_SIZE);
|
2014-06-30 12:01:43 +02:00
|
|
|
originalBitmap = null;
|
2014-08-13 13:44:21 +02:00
|
|
|
int rotation = getRotation(image);
|
|
|
|
if (rotation > 0) {
|
|
|
|
scalledBitmap = rotate(scalledBitmap, rotation);
|
2014-06-30 12:01:43 +02:00
|
|
|
}
|
2014-05-20 22:52:57 +02:00
|
|
|
OutputStream os = new FileOutputStream(file);
|
2014-04-19 01:14:30 +02:00
|
|
|
boolean success = scalledBitmap.compress(
|
|
|
|
Bitmap.CompressFormat.WEBP, 75, os);
|
2014-04-05 21:06:10 +02:00
|
|
|
if (!success) {
|
2014-05-14 18:32:58 +02:00
|
|
|
throw new ImageCopyException(R.string.error_compressing_image);
|
2014-04-05 21:06:10 +02:00
|
|
|
}
|
2014-04-25 16:24:56 +02:00
|
|
|
os.flush();
|
2014-04-05 21:06:10 +02:00
|
|
|
os.close();
|
2014-04-25 16:24:56 +02:00
|
|
|
long size = file.getSize();
|
|
|
|
int width = scalledBitmap.getWidth();
|
|
|
|
int height = scalledBitmap.getHeight();
|
2014-09-01 10:40:45 +02:00
|
|
|
message.setBody(Long.toString(size) + ',' + width + ',' + height);
|
2014-04-05 21:06:10 +02:00
|
|
|
return file;
|
|
|
|
} catch (FileNotFoundException e) {
|
2014-05-14 18:32:58 +02:00
|
|
|
throw new ImageCopyException(R.string.error_file_not_found);
|
2014-04-05 21:06:10 +02:00
|
|
|
} catch (IOException e) {
|
2014-05-14 18:32:58 +02:00
|
|
|
throw new ImageCopyException(R.string.error_io_exception);
|
2014-05-12 14:59:46 +02:00
|
|
|
} catch (SecurityException e) {
|
2014-05-14 18:32:58 +02:00
|
|
|
throw new ImageCopyException(
|
|
|
|
R.string.error_security_exception_during_image_copy);
|
2014-05-21 00:39:45 +02:00
|
|
|
} catch (OutOfMemoryError e) {
|
2014-05-21 20:27:53 +02:00
|
|
|
++sampleSize;
|
2014-06-30 12:01:43 +02:00
|
|
|
if (sampleSize <= 3) {
|
2014-05-21 20:27:53 +02:00
|
|
|
return copyImageToPrivateStorage(message, image, sampleSize);
|
|
|
|
} else {
|
|
|
|
throw new ImageCopyException(R.string.error_out_of_memory);
|
|
|
|
}
|
2014-04-05 21:06:10 +02:00
|
|
|
}
|
|
|
|
}
|
2014-08-31 16:28:21 +02:00
|
|
|
|
2014-08-13 13:44:21 +02:00
|
|
|
private int getRotation(Uri image) {
|
|
|
|
if ("content".equals(image.getScheme())) {
|
2014-09-02 11:19:05 +02: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 16:28:21 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2014-08-13 13:44:21 +02: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-07 20:05:45 +02:00
|
|
|
|
2014-04-06 15:34:08 +02:00
|
|
|
public Bitmap getImageFromMessage(Message message) {
|
2014-04-19 01:14:30 +02:00
|
|
|
return BitmapFactory.decodeFile(getJingleFile(message)
|
|
|
|
.getAbsolutePath());
|
2014-04-07 20:05:45 +02:00
|
|
|
}
|
|
|
|
|
2014-04-25 23:06:20 +02:00
|
|
|
public Bitmap getThumbnail(Message message, int size, boolean cacheOnly)
|
2014-04-19 01:14:30 +02:00
|
|
|
throws FileNotFoundException {
|
2014-04-07 20:05:45 +02:00
|
|
|
Bitmap thumbnail = thumbnailCache.get(message.getUuid());
|
2014-05-14 18:32:58 +02:00
|
|
|
if ((thumbnail == null) && (!cacheOnly)) {
|
2014-08-08 11:49:23 +02:00
|
|
|
File file = getJingleFile(message);
|
|
|
|
if (!file.exists()) {
|
|
|
|
file = getJingleFileLegacy(message);
|
|
|
|
}
|
|
|
|
Bitmap fullsize = BitmapFactory.decodeFile(file.getAbsolutePath());
|
2014-04-19 01:14:30 +02:00
|
|
|
if (fullsize == null) {
|
2014-04-18 11:57:28 +02:00
|
|
|
throw new FileNotFoundException();
|
|
|
|
}
|
2014-04-07 20:05:45 +02:00
|
|
|
thumbnail = resize(fullsize, size);
|
|
|
|
this.thumbnailCache.put(message.getUuid(), thumbnail);
|
|
|
|
}
|
|
|
|
return thumbnail;
|
2014-04-06 15:34:08 +02:00
|
|
|
}
|
2014-04-19 01:14:30 +02: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 16:28:21 +02:00
|
|
|
Log.d(Config.LOGTAG,
|
2014-04-19 01:14:30 +02: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 16:48:39 +02:00
|
|
|
|
2014-08-21 09:19:18 +02:00
|
|
|
public Uri getTakePhotoUri() {
|
|
|
|
StringBuilder pathBuilder = new StringBuilder();
|
2014-08-31 16:28:21 +02:00
|
|
|
pathBuilder.append(Environment
|
|
|
|
.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM));
|
2014-08-21 09:19:18 +02:00
|
|
|
pathBuilder.append('/');
|
|
|
|
pathBuilder.append("Camera");
|
|
|
|
pathBuilder.append('/');
|
2014-08-31 16:28:21 +02:00
|
|
|
pathBuilder.append("IMG_" + this.imageDateFormat.format(new Date())
|
|
|
|
+ ".jpg");
|
|
|
|
Uri uri = Uri.parse("file://" + pathBuilder.toString());
|
2014-08-21 09:19:18 +02:00
|
|
|
File file = new File(uri.toString());
|
|
|
|
file.getParentFile().mkdirs();
|
|
|
|
return uri;
|
2014-06-30 12:01:43 +02:00
|
|
|
}
|
2014-08-31 16:28:21 +02:00
|
|
|
|
2014-08-03 20:28:13 +02:00
|
|
|
public Avatar getPepAvatar(Uri image, int size, Bitmap.CompressFormat format) {
|
|
|
|
try {
|
|
|
|
Avatar avatar = new Avatar();
|
|
|
|
Bitmap bm = cropCenterSquare(image, size);
|
2014-08-31 16:28:21 +02:00
|
|
|
if (bm == null) {
|
2014-08-16 17:31:53 +02:00
|
|
|
return null;
|
|
|
|
}
|
2014-08-03 20:28:13 +02:00
|
|
|
ByteArrayOutputStream mByteArrayOutputStream = new ByteArrayOutputStream();
|
2014-08-31 16:28:21 +02:00
|
|
|
Base64OutputStream mBase64OutputSttream = new Base64OutputStream(
|
|
|
|
mByteArrayOutputStream, Base64.DEFAULT);
|
2014-08-03 20:28:13 +02:00
|
|
|
MessageDigest digest = MessageDigest.getInstance("SHA-1");
|
2014-08-31 16:28:21 +02:00
|
|
|
DigestOutputStream mDigestOutputStream = new DigestOutputStream(
|
|
|
|
mBase64OutputSttream, digest);
|
2014-08-06 18:36:33 +02:00
|
|
|
if (!bm.compress(format, 75, mDigestOutputStream)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
mDigestOutputStream.flush();
|
|
|
|
mDigestOutputStream.close();
|
2014-08-03 20:28:13 +02:00
|
|
|
avatar.sha1sum = CryptoHelper.bytesToHex(digest.digest());
|
|
|
|
avatar.image = new String(mByteArrayOutputStream.toByteArray());
|
|
|
|
return avatar;
|
|
|
|
} catch (NoSuchAlgorithmException e) {
|
|
|
|
return null;
|
2014-08-06 18:36:33 +02:00
|
|
|
} catch (IOException e) {
|
|
|
|
return null;
|
2014-08-03 20:28:13 +02:00
|
|
|
}
|
|
|
|
}
|
2014-08-31 16:28:21 +02:00
|
|
|
|
2014-08-05 22:58:46 +02:00
|
|
|
public boolean isAvatarCached(Avatar avatar) {
|
|
|
|
File file = new File(getAvatarPath(context, avatar.getFilename()));
|
|
|
|
return file.exists();
|
|
|
|
}
|
2014-08-31 16:28:21 +02:00
|
|
|
|
2014-08-06 18:36:33 +02:00
|
|
|
public boolean save(Avatar avatar) {
|
|
|
|
if (isAvatarCached(avatar)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
String filename = getAvatarPath(context, avatar.getFilename());
|
2014-08-31 16:28:21 +02:00
|
|
|
File file = new File(filename + ".tmp");
|
2014-08-03 20:28:13 +02:00
|
|
|
file.getParentFile().mkdirs();
|
|
|
|
try {
|
|
|
|
file.createNewFile();
|
|
|
|
FileOutputStream mFileOutputStream = new FileOutputStream(file);
|
|
|
|
MessageDigest digest = MessageDigest.getInstance("SHA-1");
|
2014-08-06 18:36:33 +02:00
|
|
|
digest.reset();
|
2014-08-31 16:28:21 +02:00
|
|
|
DigestOutputStream mDigestOutputStream = new DigestOutputStream(
|
|
|
|
mFileOutputStream, digest);
|
2014-08-03 20:28:13 +02:00
|
|
|
mDigestOutputStream.write(avatar.getImageAsBytes());
|
|
|
|
mDigestOutputStream.flush();
|
|
|
|
mDigestOutputStream.close();
|
2014-08-05 01:36:17 +02:00
|
|
|
avatar.size = file.length();
|
2014-08-06 18:36:33 +02:00
|
|
|
String sha1sum = CryptoHelper.bytesToHex(digest.digest());
|
|
|
|
if (sha1sum.equals(avatar.sha1sum)) {
|
|
|
|
file.renameTo(new File(filename));
|
|
|
|
return true;
|
|
|
|
} else {
|
2014-08-31 16:28:21 +02:00
|
|
|
Log.d(Config.LOGTAG, "sha1sum mismatch for " + avatar.owner);
|
2014-08-06 18:36:33 +02:00
|
|
|
file.delete();
|
|
|
|
return false;
|
|
|
|
}
|
2014-08-03 20:28:13 +02:00
|
|
|
} catch (FileNotFoundException e) {
|
2014-08-06 18:36:33 +02:00
|
|
|
return false;
|
2014-08-03 20:28:13 +02:00
|
|
|
} catch (IOException e) {
|
2014-08-06 18:36:33 +02:00
|
|
|
return false;
|
2014-08-03 20:28:13 +02:00
|
|
|
} catch (NoSuchAlgorithmException e) {
|
2014-08-06 18:36:33 +02:00
|
|
|
return false;
|
2014-08-03 20:28:13 +02:00
|
|
|
}
|
|
|
|
}
|
2014-08-31 16:28:21 +02:00
|
|
|
|
2014-08-05 13:00:06 +02:00
|
|
|
public static String getAvatarPath(Context context, String avatar) {
|
2014-08-31 16:28:21 +02:00
|
|
|
return context.getFilesDir().getAbsolutePath() + "/avatars/" + avatar;
|
2014-08-05 13:00:06 +02:00
|
|
|
}
|
2014-08-03 20:28:13 +02:00
|
|
|
|
|
|
|
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 16:28:21 +02:00
|
|
|
if (input == null) {
|
2014-08-16 17:31:53 +02:00
|
|
|
return null;
|
|
|
|
} else {
|
2014-09-02 11:19:05 +02:00
|
|
|
int rotation = getRotation(image);
|
|
|
|
if (rotation > 0) {
|
|
|
|
input = rotate(input, rotation);
|
|
|
|
}
|
2014-08-16 17:31:53 +02:00
|
|
|
return cropCenterSquare(input, size);
|
|
|
|
}
|
2014-08-03 20:28:13 +02:00
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2014-08-31 16:28:21 +02:00
|
|
|
|
2014-08-11 23:18:16 +02: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 16:28:21 +02:00
|
|
|
RectF target = new RectF(left, top, left + outWidth, top + outHeight);
|
2014-08-11 23:18:16 +02:00
|
|
|
|
|
|
|
Bitmap output = Bitmap.createBitmap(size, size, input.getConfig());
|
|
|
|
Canvas canvas = new Canvas(output);
|
|
|
|
canvas.drawBitmap(input, null, target, null);
|
|
|
|
return output;
|
|
|
|
}
|
2014-08-03 20:28:13 +02:00
|
|
|
|
|
|
|
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);
|
|
|
|
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 16:28:21 +02:00
|
|
|
|
2014-08-08 11:49:23 +02:00
|
|
|
public Uri getJingleFileUri(Message message) {
|
|
|
|
File file = getJingleFile(message);
|
|
|
|
if (file.exists()) {
|
2014-08-31 16:28:21 +02:00
|
|
|
return Uri.parse("file://" + file.getAbsolutePath());
|
2014-08-08 11:49:23 +02:00
|
|
|
} else {
|
|
|
|
return ImageProvider.getProviderUri(message);
|
|
|
|
}
|
|
|
|
}
|
2014-05-14 18:32:58 +02: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 16:48:39 +02:00
|
|
|
}
|
2014-08-11 23:18:16 +02:00
|
|
|
|
|
|
|
public static Bitmap getAvatar(String avatar, int size, Context context) {
|
2014-08-31 16:28:21 +02:00
|
|
|
Bitmap bm = BitmapFactory.decodeFile(FileBackend.getAvatarPath(context,
|
|
|
|
avatar));
|
|
|
|
if (bm == null) {
|
2014-08-11 23:18:16 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return cropCenterSquare(bm, UIHelper.getRealPx(size, context));
|
|
|
|
}
|
2014-04-05 21:06:10 +02:00
|
|
|
}
|