2014-04-05 19:06:10 +00:00
|
|
|
package eu.siacs.conversations.persistance;
|
|
|
|
|
2016-04-07 18:29:40 +00:00
|
|
|
import android.annotation.TargetApi;
|
|
|
|
import android.content.ContentResolver;
|
2016-03-31 22:03:14 +00:00
|
|
|
import android.content.Context;
|
2016-03-23 11:20:09 +00:00
|
|
|
import android.content.Intent;
|
2016-03-31 22:03:14 +00:00
|
|
|
import android.database.Cursor;
|
2015-07-20 12:26:29 +00:00
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.BitmapFactory;
|
|
|
|
import android.graphics.Canvas;
|
|
|
|
import android.graphics.Matrix;
|
2017-01-03 13:05:10 +00:00
|
|
|
import android.graphics.Paint;
|
2015-07-20 12:26:29 +00:00
|
|
|
import android.graphics.RectF;
|
2016-07-11 19:24:33 +00:00
|
|
|
import android.media.MediaMetadataRetriever;
|
2015-07-20 12:26:29 +00:00
|
|
|
import android.net.Uri;
|
2016-04-07 18:29:40 +00:00
|
|
|
import android.os.Build;
|
2015-07-20 12:26:29 +00:00
|
|
|
import android.os.Environment;
|
2016-04-07 18:29:40 +00:00
|
|
|
import android.os.ParcelFileDescriptor;
|
2016-06-16 09:46:25 +00:00
|
|
|
import android.provider.MediaStore;
|
2016-03-31 22:03:14 +00:00
|
|
|
import android.provider.OpenableColumns;
|
2016-08-30 11:14:38 +00:00
|
|
|
import android.support.v4.content.FileProvider;
|
2016-04-07 18:29:40 +00:00
|
|
|
import android.system.Os;
|
|
|
|
import android.system.StructStat;
|
2015-07-20 12:26:29 +00:00
|
|
|
import android.util.Base64;
|
|
|
|
import android.util.Base64OutputStream;
|
|
|
|
import android.util.Log;
|
2016-04-28 18:15:28 +00:00
|
|
|
import android.util.LruCache;
|
2015-07-20 12:26:29 +00:00
|
|
|
import android.webkit.MimeTypeMap;
|
|
|
|
|
2014-08-03 18:28:13 +00:00
|
|
|
import java.io.ByteArrayOutputStream;
|
2015-04-25 12:08:24 +00:00
|
|
|
import java.io.Closeable;
|
2014-04-18 23:14:30 +00:00
|
|
|
import java.io.File;
|
2016-04-07 18:29:40 +00:00
|
|
|
import java.io.FileDescriptor;
|
2016-04-11 20:20:32 +00:00
|
|
|
import java.io.FileInputStream;
|
2014-04-05 19:06:10 +00:00
|
|
|
import java.io.FileNotFoundException;
|
|
|
|
import java.io.FileOutputStream;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.OutputStream;
|
2015-08-15 12:14:33 +00:00
|
|
|
import java.net.Socket;
|
2014-11-14 00:29:56 +00:00
|
|
|
import java.net.URL;
|
2014-08-03 18:28:13 +00:00
|
|
|
import java.security.DigestOutputStream;
|
|
|
|
import java.security.MessageDigest;
|
|
|
|
import java.security.NoSuchAlgorithmException;
|
2014-08-21 07:19:18 +00:00
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
import java.util.Date;
|
2016-03-31 22:03:14 +00:00
|
|
|
import java.util.List;
|
2014-08-21 07:19:18 +00:00
|
|
|
import java.util.Locale;
|
2014-04-05 19:06:10 +00:00
|
|
|
|
2014-08-31 14:28:21 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2014-05-14 16:32:58 +00:00
|
|
|
import eu.siacs.conversations.R;
|
2014-10-14 10:02:48 +00:00
|
|
|
import eu.siacs.conversations.entities.DownloadableFile;
|
2014-04-06 13:34:08 +00:00
|
|
|
import eu.siacs.conversations.entities.Message;
|
2014-10-21 12:57:16 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
2014-08-03 18:28:13 +00:00
|
|
|
import eu.siacs.conversations.utils.CryptoHelper;
|
2014-10-29 17:12:32 +00:00
|
|
|
import eu.siacs.conversations.utils.ExifHelper;
|
2015-08-11 14:50:00 +00:00
|
|
|
import eu.siacs.conversations.utils.FileUtils;
|
2016-11-15 14:43:04 +00:00
|
|
|
import eu.siacs.conversations.utils.FileWriterException;
|
2016-12-30 20:48:39 +00:00
|
|
|
import eu.siacs.conversations.utils.MimeUtils;
|
2014-08-03 18:28:13 +00:00
|
|
|
import eu.siacs.conversations.xmpp.pep.Avatar;
|
2014-04-05 19:06:10 +00:00
|
|
|
|
|
|
|
public class FileBackend {
|
2017-02-09 13:32:50 +00:00
|
|
|
|
|
|
|
private static final Object THUMBNAIL_LOCK = new Object();
|
|
|
|
|
2016-10-03 16:26:11 +00:00
|
|
|
private static final SimpleDateFormat IMAGE_DATE_FORMAT = new SimpleDateFormat("yyyyMMdd_HHmmss", Locale.US);
|
2014-04-07 18:05:45 +00:00
|
|
|
|
2017-05-13 06:10:47 +00:00
|
|
|
public static final String FILE_PROVIDER = ".files";
|
2016-10-03 19:04:10 +00:00
|
|
|
|
2014-10-21 12:57:16 +00:00
|
|
|
private XmppConnectionService mXmppConnectionService;
|
2014-05-14 16:32:58 +00:00
|
|
|
|
2014-10-21 12:57:16 +00:00
|
|
|
public FileBackend(XmppConnectionService service) {
|
|
|
|
this.mXmppConnectionService = service;
|
2014-04-25 14:24:56 +00:00
|
|
|
}
|
2014-05-14 16:32:58 +00:00
|
|
|
|
2016-03-23 11:20:09 +00:00
|
|
|
private void createNoMedia() {
|
2017-01-24 19:17:36 +00:00
|
|
|
final File nomedia = new File(getConversationsDirectory("Files")+".nomedia");
|
2016-03-23 11:20:09 +00:00
|
|
|
if (!nomedia.exists()) {
|
|
|
|
try {
|
|
|
|
nomedia.createNewFile();
|
|
|
|
} catch (Exception e) {
|
|
|
|
Log.d(Config.LOGTAG, "could not create nomedia file");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-23 18:23:22 +00:00
|
|
|
public void updateMediaScanner(File file) {
|
2017-01-24 19:17:36 +00:00
|
|
|
String path = file.getAbsolutePath();
|
|
|
|
if (!path.startsWith(getConversationsDirectory("Files"))) {
|
2016-03-23 11:20:09 +00:00
|
|
|
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
|
|
|
|
intent.setData(Uri.fromFile(file));
|
|
|
|
mXmppConnectionService.sendBroadcast(intent);
|
|
|
|
} else {
|
|
|
|
createNoMedia();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-23 18:23:22 +00:00
|
|
|
public boolean deleteFile(Message message) {
|
|
|
|
File file = getFile(message);
|
|
|
|
if (file.delete()) {
|
|
|
|
updateMediaScanner(file);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-15 20:08:13 +00:00
|
|
|
public DownloadableFile getFile(Message message) {
|
|
|
|
return getFile(message, true);
|
2014-05-06 19:34:30 +00:00
|
|
|
}
|
|
|
|
|
2014-10-20 19:08:33 +00:00
|
|
|
public DownloadableFile getFile(Message message, boolean decrypted) {
|
2015-01-11 14:19:36 +00:00
|
|
|
final boolean encrypted = !decrypted
|
|
|
|
&& (message.getEncryption() == Message.ENCRYPTION_PGP
|
|
|
|
|| message.getEncryption() == Message.ENCRYPTION_DECRYPTED);
|
2015-11-25 19:47:02 +00:00
|
|
|
final DownloadableFile file;
|
|
|
|
String path = message.getRelativeFilePath();
|
|
|
|
if (path == null) {
|
|
|
|
path = message.getUuid();
|
|
|
|
}
|
|
|
|
if (path.startsWith("/")) {
|
|
|
|
file = new DownloadableFile(path);
|
2015-01-11 14:19:36 +00:00
|
|
|
} else {
|
2015-10-06 14:18:23 +00:00
|
|
|
String mime = message.getMimeType();
|
2017-01-24 19:17:36 +00:00
|
|
|
if (mime != null && mime.startsWith("image/")) {
|
|
|
|
file = new DownloadableFile(getConversationsDirectory("Images") + path);
|
|
|
|
} else if (mime != null && mime.startsWith("video/")) {
|
|
|
|
file = new DownloadableFile(getConversationsDirectory("Videos") + path);
|
2014-11-13 20:04:05 +00:00
|
|
|
} else {
|
2017-01-24 19:17:36 +00:00
|
|
|
file = new DownloadableFile(getConversationsDirectory("Files") + path);
|
2014-11-13 20:04:05 +00:00
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
}
|
2015-11-25 19:47:02 +00:00
|
|
|
if (encrypted) {
|
2017-01-24 19:17:36 +00:00
|
|
|
return new DownloadableFile(getConversationsDirectory("Files") + file.getName() + ".pgp");
|
2015-11-25 19:47:02 +00:00
|
|
|
} else {
|
|
|
|
return file;
|
|
|
|
}
|
2014-08-08 09:49:23 +00:00
|
|
|
}
|
2014-10-20 19:08:33 +00:00
|
|
|
|
2017-10-27 09:34:50 +00:00
|
|
|
public static long getFileSize(Context context, Uri uri) {
|
2017-09-30 13:50:01 +00:00
|
|
|
try {
|
|
|
|
final Cursor cursor = context.getContentResolver().query(uri, null, null, null, null);
|
|
|
|
if (cursor != null && cursor.moveToFirst()) {
|
|
|
|
long size = cursor.getLong(cursor.getColumnIndex(OpenableColumns.SIZE));
|
|
|
|
cursor.close();
|
|
|
|
return size;
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
2016-03-31 22:03:14 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean allFilesUnderSize(Context context, List<Uri> uris, long max) {
|
2016-04-02 16:07:38 +00:00
|
|
|
if (max <= 0) {
|
2016-05-05 17:34:44 +00:00
|
|
|
Log.d(Config.LOGTAG,"server did not report max file size for http upload");
|
2016-04-02 16:07:38 +00:00
|
|
|
return true; //exception to be compatible with HTTP Upload < v0.2
|
|
|
|
}
|
2016-03-31 22:03:14 +00:00
|
|
|
for(Uri uri : uris) {
|
2017-09-18 20:42:25 +00:00
|
|
|
String mime = context.getContentResolver().getType(uri);
|
|
|
|
if (mime != null && mime.startsWith("video/")) {
|
|
|
|
try {
|
|
|
|
Dimensions dimensions = FileBackend.getVideoDimensions(context,uri);
|
|
|
|
if (dimensions.getMin() > 720) {
|
|
|
|
Log.d(Config.LOGTAG,"do not consider video file with min width larger than 720 for size check");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} catch (NotAVideoFile notAVideoFile) {
|
|
|
|
//ignore and fall through
|
|
|
|
}
|
|
|
|
}
|
2016-03-31 22:03:14 +00:00
|
|
|
if (FileBackend.getFileSize(context, uri) > max) {
|
2016-05-05 17:34:44 +00:00
|
|
|
Log.d(Config.LOGTAG,"not all files are under "+max+" bytes. suggesting falling back to jingle");
|
2016-03-31 22:03:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-01-24 19:17:36 +00:00
|
|
|
public String getConversationsDirectory(final String type) {
|
2016-11-08 10:45:20 +00:00
|
|
|
if (Config.ONLY_INTERNAL_STORAGE) {
|
2017-01-24 19:17:36 +00:00
|
|
|
return mXmppConnectionService.getFilesDir().getAbsolutePath()+"/"+type+"/";
|
2016-11-08 10:45:20 +00:00
|
|
|
} else {
|
2017-01-24 19:17:36 +00:00
|
|
|
return Environment.getExternalStorageDirectory() +"/Conversations/Media/Conversations "+type+"/";
|
2016-11-08 10:45:20 +00:00
|
|
|
}
|
2014-11-14 02:27:18 +00:00
|
|
|
}
|
|
|
|
|
2016-11-08 10:45:20 +00:00
|
|
|
public static String getConversationsLogsDirectory() {
|
|
|
|
return Environment.getExternalStorageDirectory().getAbsolutePath()+"/Conversations/";
|
2014-10-16 00:39:02 +00:00
|
|
|
}
|
2014-08-31 14:28:21 +00:00
|
|
|
|
2014-04-25 14:24:56 +00:00
|
|
|
public Bitmap resize(Bitmap originalBitmap, int size) {
|
2014-04-07 18:05:45 +00: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));
|
|
|
|
}
|
2015-10-02 09:39:30 +00:00
|
|
|
Bitmap result = Bitmap.createScaledBitmap(originalBitmap, scalledW, scalledH, true);
|
|
|
|
if (originalBitmap != null && !originalBitmap.isRecycled()) {
|
|
|
|
originalBitmap.recycle();
|
|
|
|
}
|
|
|
|
return result;
|
2014-04-07 18:05:45 +00:00
|
|
|
} else {
|
|
|
|
return originalBitmap;
|
|
|
|
}
|
|
|
|
}
|
2014-06-30 10:01:43 +00:00
|
|
|
|
2016-01-04 14:17:02 +00:00
|
|
|
public static Bitmap rotate(Bitmap bitmap, int degree) {
|
|
|
|
if (degree == 0) {
|
|
|
|
return bitmap;
|
|
|
|
}
|
2014-06-30 10:01:43 +00:00
|
|
|
int w = bitmap.getWidth();
|
|
|
|
int h = bitmap.getHeight();
|
|
|
|
Matrix mtx = new Matrix();
|
|
|
|
mtx.postRotate(degree);
|
2015-10-02 09:39:30 +00:00
|
|
|
Bitmap result = Bitmap.createBitmap(bitmap, 0, 0, w, h, mtx, true);
|
|
|
|
if (bitmap != null && !bitmap.isRecycled()) {
|
|
|
|
bitmap.recycle();
|
|
|
|
}
|
|
|
|
return result;
|
2014-05-20 22:39:45 +00:00
|
|
|
}
|
2014-04-07 18:05:45 +00:00
|
|
|
|
2015-08-11 14:50:00 +00:00
|
|
|
public boolean useImageAsIs(Uri uri) {
|
|
|
|
String path = getOriginalPath(uri);
|
|
|
|
if (path == null) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-08-31 18:19:26 +00:00
|
|
|
File file = new File(path);
|
|
|
|
long size = file.length();
|
2017-10-27 09:34:50 +00:00
|
|
|
if (size == 0 || size >= mXmppConnectionService.getResources().getInteger(R.integer.auto_accept_filesize)) {
|
2015-08-31 18:19:26 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-08-11 14:50:00 +00:00
|
|
|
BitmapFactory.Options options = new BitmapFactory.Options();
|
|
|
|
options.inJustDecodeBounds = true;
|
|
|
|
try {
|
|
|
|
BitmapFactory.decodeStream(mXmppConnectionService.getContentResolver().openInputStream(uri), null, options);
|
2017-10-27 09:34:50 +00:00
|
|
|
if (options.outMimeType == null || options.outHeight <= 0 || options.outWidth <= 0) {
|
2015-08-25 09:11:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-08-11 14:50:00 +00:00
|
|
|
return (options.outWidth <= Config.IMAGE_SIZE && options.outHeight <= Config.IMAGE_SIZE && options.outMimeType.contains(Config.IMAGE_FORMAT.name().toLowerCase()));
|
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
return false;
|
2014-11-13 20:04:05 +00:00
|
|
|
}
|
2015-08-11 14:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getOriginalPath(Uri uri) {
|
|
|
|
return FileUtils.getPath(mXmppConnectionService,uri);
|
2014-11-13 20:04:05 +00:00
|
|
|
}
|
|
|
|
|
2016-01-24 11:17:00 +00:00
|
|
|
public void copyFileToPrivateStorage(File file, Uri uri) throws FileCopyException {
|
2016-10-03 08:13:45 +00:00
|
|
|
Log.d(Config.LOGTAG,"copy file ("+uri.toString()+") to private storage "+file.getAbsolutePath());
|
2015-04-25 12:08:24 +00:00
|
|
|
file.getParentFile().mkdirs();
|
|
|
|
OutputStream os = null;
|
|
|
|
InputStream is = null;
|
2014-11-13 23:28:39 +00:00
|
|
|
try {
|
2015-04-28 07:35:10 +00:00
|
|
|
file.createNewFile();
|
2015-04-25 12:08:24 +00:00
|
|
|
os = new FileOutputStream(file);
|
|
|
|
is = mXmppConnectionService.getContentResolver().openInputStream(uri);
|
2014-11-13 23:28:39 +00:00
|
|
|
byte[] buffer = new byte[1024];
|
2015-04-25 12:08:24 +00:00
|
|
|
int length;
|
|
|
|
while ((length = is.read(buffer)) > 0) {
|
2016-11-15 14:43:04 +00:00
|
|
|
try {
|
|
|
|
os.write(buffer, 0, length);
|
|
|
|
} catch (IOException e) {
|
|
|
|
throw new FileWriterException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
os.flush();
|
|
|
|
} catch (IOException e) {
|
|
|
|
throw new FileWriterException();
|
2015-04-25 12:08:24 +00:00
|
|
|
}
|
2015-04-28 07:35:10 +00:00
|
|
|
} catch(FileNotFoundException e) {
|
|
|
|
throw new FileCopyException(R.string.error_file_not_found);
|
2016-11-15 14:43:04 +00:00
|
|
|
} catch(FileWriterException e) {
|
|
|
|
throw new FileCopyException(R.string.error_unable_to_create_temporary_file);
|
2014-11-13 23:28:39 +00:00
|
|
|
} catch (IOException e) {
|
2015-04-28 07:35:10 +00:00
|
|
|
e.printStackTrace();
|
2014-11-13 23:28:39 +00:00
|
|
|
throw new FileCopyException(R.string.error_io_exception);
|
2015-04-25 12:08:24 +00:00
|
|
|
} finally {
|
|
|
|
close(os);
|
|
|
|
close(is);
|
2014-11-13 23:28:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-24 11:17:00 +00:00
|
|
|
public void copyFileToPrivateStorage(Message message, Uri uri) throws FileCopyException {
|
2016-12-30 20:48:39 +00:00
|
|
|
String mime = MimeUtils.guessMimeTypeFromUri(mXmppConnectionService, uri);
|
2016-06-16 09:46:25 +00:00
|
|
|
Log.d(Config.LOGTAG, "copy " + uri.toString() + " to private storage (mime="+mime+")");
|
2016-01-24 11:17:00 +00:00
|
|
|
String extension = MimeTypeMap.getSingleton().getExtensionFromMimeType(mime);
|
2016-06-16 09:46:25 +00:00
|
|
|
if (extension == null) {
|
|
|
|
extension = getExtensionFromUri(uri);
|
|
|
|
}
|
2016-01-24 11:17:00 +00:00
|
|
|
message.setRelativeFilePath(message.getUuid() + "." + extension);
|
|
|
|
copyFileToPrivateStorage(mXmppConnectionService.getFileBackend().getFile(message), uri);
|
2014-06-30 10:01:43 +00:00
|
|
|
}
|
|
|
|
|
2016-06-16 09:46:25 +00:00
|
|
|
private String getExtensionFromUri(Uri uri) {
|
|
|
|
String[] projection = {MediaStore.MediaColumns.DATA};
|
|
|
|
String filename = null;
|
|
|
|
Cursor cursor = mXmppConnectionService.getContentResolver().query(uri, projection, null, null, null);
|
|
|
|
if (cursor != null) {
|
|
|
|
try {
|
|
|
|
if (cursor.moveToFirst()) {
|
|
|
|
filename = cursor.getString(0);
|
|
|
|
}
|
2016-06-24 11:35:39 +00:00
|
|
|
} catch (Exception e) {
|
|
|
|
filename = null;
|
2016-06-16 09:46:25 +00:00
|
|
|
} finally {
|
|
|
|
cursor.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int pos = filename == null ? -1 : filename.lastIndexOf('.');
|
|
|
|
return pos > 0 ? filename.substring(pos+1) : null;
|
|
|
|
}
|
|
|
|
|
2016-01-24 11:17:00 +00:00
|
|
|
private void copyImageToPrivateStorage(File file, Uri image, int sampleSize) throws FileCopyException {
|
2015-04-25 12:08:24 +00:00
|
|
|
file.getParentFile().mkdirs();
|
|
|
|
InputStream is = null;
|
|
|
|
OutputStream os = null;
|
2014-04-05 19:06:10 +00:00
|
|
|
try {
|
2016-11-15 14:43:04 +00:00
|
|
|
if (!file.exists() && !file.createNewFile()) {
|
|
|
|
throw new FileCopyException(R.string.error_unable_to_create_temporary_file);
|
|
|
|
}
|
2015-04-25 12:08:24 +00:00
|
|
|
is = mXmppConnectionService.getContentResolver().openInputStream(image);
|
2016-11-15 14:43:04 +00:00
|
|
|
if (is == null) {
|
|
|
|
throw new FileCopyException(R.string.error_not_an_image_file);
|
|
|
|
}
|
2014-05-20 20:52:57 +00:00
|
|
|
Bitmap originalBitmap;
|
2014-05-20 22:39:45 +00:00
|
|
|
BitmapFactory.Options options = new BitmapFactory.Options();
|
|
|
|
int inSampleSize = (int) Math.pow(2, sampleSize);
|
2015-04-25 12:08:24 +00:00
|
|
|
Log.d(Config.LOGTAG, "reading bitmap with sample size " + inSampleSize);
|
2014-05-20 22:39:45 +00:00
|
|
|
options.inSampleSize = inSampleSize;
|
|
|
|
originalBitmap = BitmapFactory.decodeStream(is, null, options);
|
|
|
|
is.close();
|
2014-05-14 16:32:58 +00:00
|
|
|
if (originalBitmap == null) {
|
2014-11-13 20:04:05 +00:00
|
|
|
throw new FileCopyException(R.string.error_not_an_image_file);
|
2014-05-14 16:32:58 +00:00
|
|
|
}
|
2015-07-21 21:49:35 +00:00
|
|
|
Bitmap scaledBitmap = resize(originalBitmap, Config.IMAGE_SIZE);
|
2014-08-13 11:44:21 +00:00
|
|
|
int rotation = getRotation(image);
|
2016-01-04 14:17:02 +00:00
|
|
|
scaledBitmap = rotate(scaledBitmap, rotation);
|
2016-01-09 15:16:18 +00:00
|
|
|
boolean targetSizeReached = false;
|
|
|
|
int quality = Config.IMAGE_QUALITY;
|
2017-10-27 09:34:50 +00:00
|
|
|
final int imageMaxSize = mXmppConnectionService.getResources().getInteger(R.integer.auto_accept_filesize);
|
2016-01-09 15:16:18 +00:00
|
|
|
while(!targetSizeReached) {
|
|
|
|
os = new FileOutputStream(file);
|
|
|
|
boolean success = scaledBitmap.compress(Config.IMAGE_FORMAT, quality, os);
|
|
|
|
if (!success) {
|
|
|
|
throw new FileCopyException(R.string.error_compressing_image);
|
|
|
|
}
|
|
|
|
os.flush();
|
2017-10-27 09:34:50 +00:00
|
|
|
targetSizeReached = file.length() <= imageMaxSize|| quality <= 50;
|
2016-01-09 15:16:18 +00:00
|
|
|
quality -= 5;
|
2014-04-05 19:06:10 +00:00
|
|
|
}
|
2016-01-24 11:17:00 +00:00
|
|
|
scaledBitmap.recycle();
|
2014-04-05 19:06:10 +00:00
|
|
|
} catch (FileNotFoundException e) {
|
2014-11-13 20:04:05 +00:00
|
|
|
throw new FileCopyException(R.string.error_file_not_found);
|
2014-04-05 19:06:10 +00:00
|
|
|
} catch (IOException e) {
|
2015-04-28 07:35:10 +00:00
|
|
|
e.printStackTrace();
|
2014-11-13 20:04:05 +00:00
|
|
|
throw new FileCopyException(R.string.error_io_exception);
|
2014-05-12 12:59:46 +00:00
|
|
|
} catch (SecurityException e) {
|
2015-04-25 12:08:24 +00:00
|
|
|
throw new FileCopyException(R.string.error_security_exception_during_image_copy);
|
2014-05-20 22:39:45 +00:00
|
|
|
} catch (OutOfMemoryError e) {
|
2014-05-21 18:27:53 +00:00
|
|
|
++sampleSize;
|
2014-06-30 10:01:43 +00:00
|
|
|
if (sampleSize <= 3) {
|
2016-01-24 11:17:00 +00:00
|
|
|
copyImageToPrivateStorage(file, image, sampleSize);
|
2014-05-21 18:27:53 +00:00
|
|
|
} else {
|
2014-11-13 20:04:05 +00:00
|
|
|
throw new FileCopyException(R.string.error_out_of_memory);
|
2014-05-21 18:27:53 +00:00
|
|
|
}
|
2015-04-25 12:08:24 +00:00
|
|
|
} finally {
|
|
|
|
close(os);
|
|
|
|
close(is);
|
2014-04-05 19:06:10 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-31 14:28:21 +00:00
|
|
|
|
2016-01-24 11:17:00 +00:00
|
|
|
public void copyImageToPrivateStorage(File file, Uri image) throws FileCopyException {
|
2016-10-03 08:13:45 +00:00
|
|
|
Log.d(Config.LOGTAG,"copy image ("+image.toString()+") to private storage "+file.getAbsolutePath());
|
2016-01-24 11:17:00 +00:00
|
|
|
copyImageToPrivateStorage(file, image, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void copyImageToPrivateStorage(Message message, Uri image) throws FileCopyException {
|
|
|
|
switch(Config.IMAGE_FORMAT) {
|
|
|
|
case JPEG:
|
|
|
|
message.setRelativeFilePath(message.getUuid()+".jpg");
|
|
|
|
break;
|
|
|
|
case PNG:
|
|
|
|
message.setRelativeFilePath(message.getUuid()+".png");
|
|
|
|
break;
|
|
|
|
case WEBP:
|
|
|
|
message.setRelativeFilePath(message.getUuid()+".webp");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
copyImageToPrivateStorage(getFile(message), image);
|
|
|
|
updateFileParams(message);
|
|
|
|
}
|
|
|
|
|
2015-09-29 10:25:32 +00:00
|
|
|
private int getRotation(File file) {
|
|
|
|
return getRotation(Uri.parse("file://"+file.getAbsolutePath()));
|
|
|
|
}
|
|
|
|
|
2014-08-13 11:44:21 +00:00
|
|
|
private int getRotation(Uri image) {
|
2015-04-25 12:08:24 +00:00
|
|
|
InputStream is = null;
|
2014-11-03 10:20:32 +00:00
|
|
|
try {
|
2015-04-25 12:08:24 +00:00
|
|
|
is = mXmppConnectionService.getContentResolver().openInputStream(image);
|
2014-11-03 10:20:32 +00:00
|
|
|
return ExifHelper.getOrientation(is);
|
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
return 0;
|
2015-04-25 12:08:24 +00:00
|
|
|
} finally {
|
|
|
|
close(is);
|
2014-08-13 11:44:21 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-07 18:05:45 +00:00
|
|
|
|
2016-04-28 18:15:28 +00:00
|
|
|
public Bitmap getThumbnail(Message message, int size, boolean cacheOnly) throws FileNotFoundException {
|
|
|
|
final String uuid = message.getUuid();
|
|
|
|
final LruCache<String,Bitmap> cache = mXmppConnectionService.getBitmapCache();
|
|
|
|
Bitmap thumbnail = cache.get(uuid);
|
2014-05-14 16:32:58 +00:00
|
|
|
if ((thumbnail == null) && (!cacheOnly)) {
|
2017-02-09 13:32:50 +00:00
|
|
|
synchronized (THUMBNAIL_LOCK) {
|
2016-04-28 18:15:28 +00:00
|
|
|
thumbnail = cache.get(uuid);
|
|
|
|
if (thumbnail != null) {
|
|
|
|
return thumbnail;
|
|
|
|
}
|
2016-07-11 19:24:33 +00:00
|
|
|
DownloadableFile file = getFile(message);
|
2017-01-03 13:05:10 +00:00
|
|
|
final String mime = file.getMimeType();
|
|
|
|
if (mime.startsWith("video/")) {
|
2016-07-11 19:24:33 +00:00
|
|
|
thumbnail = getVideoPreview(file, size);
|
|
|
|
} else {
|
|
|
|
Bitmap fullsize = getFullsizeImagePreview(file, size);
|
|
|
|
if (fullsize == null) {
|
|
|
|
throw new FileNotFoundException();
|
|
|
|
}
|
|
|
|
thumbnail = resize(fullsize, size);
|
|
|
|
thumbnail = rotate(thumbnail, getRotation(file));
|
2017-01-03 13:05:10 +00:00
|
|
|
if (mime.equals("image/gif")) {
|
|
|
|
Bitmap withGifOverlay = thumbnail.copy(Bitmap.Config.ARGB_8888,true);
|
|
|
|
drawOverlay(withGifOverlay,R.drawable.play_gif,1.0f);
|
|
|
|
thumbnail.recycle();
|
|
|
|
thumbnail = withGifOverlay;
|
|
|
|
}
|
2016-04-28 18:15:28 +00:00
|
|
|
}
|
|
|
|
this.mXmppConnectionService.getBitmapCache().put(uuid, thumbnail);
|
2014-04-18 09:57:28 +00:00
|
|
|
}
|
2014-04-07 18:05:45 +00:00
|
|
|
}
|
|
|
|
return thumbnail;
|
2014-04-06 13:34:08 +00:00
|
|
|
}
|
2014-04-18 23:14:30 +00:00
|
|
|
|
2016-07-11 19:24:33 +00:00
|
|
|
private Bitmap getFullsizeImagePreview(File file, int size) {
|
|
|
|
BitmapFactory.Options options = new BitmapFactory.Options();
|
|
|
|
options.inSampleSize = calcSampleSize(file, size);
|
2016-07-28 20:58:37 +00:00
|
|
|
try {
|
|
|
|
return BitmapFactory.decodeFile(file.getAbsolutePath(), options);
|
|
|
|
} catch (OutOfMemoryError e) {
|
|
|
|
options.inSampleSize *= 2;
|
|
|
|
return BitmapFactory.decodeFile(file.getAbsolutePath(), options);
|
|
|
|
}
|
2016-07-11 19:24:33 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 13:05:10 +00:00
|
|
|
private void drawOverlay(Bitmap bitmap, int resource, float factor) {
|
|
|
|
Bitmap overlay = BitmapFactory.decodeResource(mXmppConnectionService.getResources(), resource);
|
|
|
|
Canvas canvas = new Canvas(bitmap);
|
|
|
|
Paint paint = new Paint();
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
paint.setFilterBitmap(true);
|
|
|
|
paint.setDither(true);
|
|
|
|
float targetSize = Math.min(canvas.getWidth(),canvas.getHeight()) * factor;
|
|
|
|
Log.d(Config.LOGTAG,"target size overlay: "+targetSize+" overlay bitmap size was "+overlay.getHeight());
|
|
|
|
float left = (canvas.getWidth() - targetSize) / 2.0f;
|
|
|
|
float top = (canvas.getHeight() - targetSize) / 2.0f;
|
|
|
|
RectF dst = new RectF(left,top,left+targetSize-1,top+targetSize-1);
|
|
|
|
canvas.drawBitmap(overlay,null,dst,paint);
|
|
|
|
}
|
|
|
|
|
2016-07-11 19:24:33 +00:00
|
|
|
private Bitmap getVideoPreview(File file, int size) {
|
|
|
|
MediaMetadataRetriever metadataRetriever = new MediaMetadataRetriever();
|
2016-07-22 14:32:38 +00:00
|
|
|
Bitmap frame;
|
|
|
|
try {
|
|
|
|
metadataRetriever.setDataSource(file.getAbsolutePath());
|
|
|
|
frame = metadataRetriever.getFrameAtTime(0);
|
|
|
|
metadataRetriever.release();
|
|
|
|
frame = resize(frame, size);
|
2017-11-12 18:20:35 +00:00
|
|
|
} catch(RuntimeException e) {
|
2016-07-22 14:32:38 +00:00
|
|
|
frame = Bitmap.createBitmap(size,size, Bitmap.Config.ARGB_8888);
|
|
|
|
frame.eraseColor(0xff000000);
|
|
|
|
}
|
2017-01-03 13:05:10 +00:00
|
|
|
drawOverlay(frame,R.drawable.play_video,0.75f);
|
2016-07-11 19:24:33 +00:00
|
|
|
return frame;
|
|
|
|
}
|
|
|
|
|
2016-10-03 09:25:15 +00:00
|
|
|
private static String getTakePhotoPath() {
|
|
|
|
return Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM)+"/Camera/";
|
|
|
|
}
|
|
|
|
|
2014-08-21 07:19:18 +00:00
|
|
|
public Uri getTakePhotoUri() {
|
2016-11-08 10:45:20 +00:00
|
|
|
File file;
|
|
|
|
if (Config.ONLY_INTERNAL_STORAGE) {
|
|
|
|
file = new File(mXmppConnectionService.getCacheDir().getAbsolutePath(), "Camera/IMG_" + this.IMAGE_DATE_FORMAT.format(new Date()) + ".jpg");
|
|
|
|
} else {
|
|
|
|
file = new File(getTakePhotoPath() + "IMG_" + this.IMAGE_DATE_FORMAT.format(new Date()) + ".jpg");
|
|
|
|
}
|
2014-08-21 07:19:18 +00:00
|
|
|
file.getParentFile().mkdirs();
|
2017-01-09 16:00:08 +00:00
|
|
|
return getUriForFile(mXmppConnectionService,file);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Uri getUriForFile(Context context, File file) {
|
2016-11-08 10:45:20 +00:00
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N || Config.ONLY_INTERNAL_STORAGE) {
|
2017-01-09 16:00:08 +00:00
|
|
|
try {
|
|
|
|
String packageId = context.getPackageName();
|
|
|
|
return FileProvider.getUriForFile(context, packageId + FILE_PROVIDER, file);
|
|
|
|
} catch(IllegalArgumentException e) {
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
|
2017-11-08 19:34:08 +00:00
|
|
|
throw new SecurityException(e);
|
2017-01-09 16:00:08 +00:00
|
|
|
} else {
|
|
|
|
return Uri.fromFile(file);
|
|
|
|
}
|
|
|
|
}
|
2016-09-21 16:20:53 +00:00
|
|
|
} else {
|
|
|
|
return Uri.fromFile(file);
|
|
|
|
}
|
2014-06-30 10:01:43 +00:00
|
|
|
}
|
2014-08-31 14:28:21 +00:00
|
|
|
|
2016-10-03 09:25:15 +00:00
|
|
|
public static Uri getIndexableTakePhotoUri(Uri original) {
|
2016-11-08 10:45:20 +00:00
|
|
|
if (Config.ONLY_INTERNAL_STORAGE || "file".equals(original.getScheme())) {
|
2016-10-03 09:25:15 +00:00
|
|
|
return original;
|
|
|
|
} else {
|
|
|
|
List<String> segments = original.getPathSegments();
|
|
|
|
return Uri.parse("file://"+getTakePhotoPath()+segments.get(segments.size() - 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-03 18:28:13 +00:00
|
|
|
public Avatar getPepAvatar(Uri image, int size, Bitmap.CompressFormat format) {
|
2017-12-15 19:49:48 +00:00
|
|
|
Bitmap bm = cropCenterSquare(image, size);
|
|
|
|
if (bm == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return getPepAvatar(bm,format,100);
|
|
|
|
}
|
|
|
|
|
|
|
|
private Avatar getPepAvatar(Bitmap bitmap, Bitmap.CompressFormat format, int quality) {
|
2014-08-03 18:28:13 +00:00
|
|
|
try {
|
|
|
|
ByteArrayOutputStream mByteArrayOutputStream = new ByteArrayOutputStream();
|
2017-12-15 19:49:48 +00:00
|
|
|
Base64OutputStream mBase64OutputStream = new Base64OutputStream(mByteArrayOutputStream, Base64.DEFAULT);
|
2014-08-03 18:28:13 +00:00
|
|
|
MessageDigest digest = MessageDigest.getInstance("SHA-1");
|
2017-12-15 19:49:48 +00:00
|
|
|
DigestOutputStream mDigestOutputStream = new DigestOutputStream(mBase64OutputStream, digest);
|
|
|
|
if (!bitmap.compress(format, quality, mDigestOutputStream)) {
|
2014-08-06 16:36:33 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
mDigestOutputStream.flush();
|
|
|
|
mDigestOutputStream.close();
|
2017-12-15 19:49:48 +00:00
|
|
|
long chars = mByteArrayOutputStream.size();
|
|
|
|
if (quality >= 50 && chars >= Config.AVATAR_CHAR_LIMIT) {
|
|
|
|
int q = quality - 2;
|
|
|
|
Log.d(Config.LOGTAG,"avatar char length was "+chars+" reducing quality to "+q);
|
|
|
|
return getPepAvatar(bitmap,format,q);
|
|
|
|
}
|
|
|
|
Log.d(Config.LOGTAG,"settled on char length "+chars+" with quality="+quality);
|
|
|
|
final Avatar avatar = new Avatar();
|
2014-08-03 18:28:13 +00:00
|
|
|
avatar.sha1sum = CryptoHelper.bytesToHex(digest.digest());
|
|
|
|
avatar.image = new String(mByteArrayOutputStream.toByteArray());
|
|
|
|
return avatar;
|
2017-12-15 19:49:48 +00:00
|
|
|
} catch (Exception e) {
|
2014-08-06 16:36:33 +00:00
|
|
|
return null;
|
2014-08-03 18:28:13 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-31 14:28:21 +00:00
|
|
|
|
2016-04-11 20:20:32 +00:00
|
|
|
public Avatar getStoredPepAvatar(String hash) {
|
|
|
|
if (hash == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
Avatar avatar = new Avatar();
|
|
|
|
File file = new File(getAvatarPath(hash));
|
|
|
|
FileInputStream is = null;
|
|
|
|
try {
|
2017-01-12 11:20:10 +00:00
|
|
|
avatar.size = file.length();
|
2016-04-11 20:20:32 +00:00
|
|
|
BitmapFactory.Options options = new BitmapFactory.Options();
|
|
|
|
options.inJustDecodeBounds = true;
|
|
|
|
BitmapFactory.decodeFile(file.getAbsolutePath(), options);
|
|
|
|
is = new FileInputStream(file);
|
|
|
|
ByteArrayOutputStream mByteArrayOutputStream = new ByteArrayOutputStream();
|
|
|
|
Base64OutputStream mBase64OutputStream = new Base64OutputStream(mByteArrayOutputStream, Base64.DEFAULT);
|
|
|
|
MessageDigest digest = MessageDigest.getInstance("SHA-1");
|
|
|
|
DigestOutputStream os = new DigestOutputStream(mBase64OutputStream, digest);
|
|
|
|
byte[] buffer = new byte[4096];
|
|
|
|
int length;
|
|
|
|
while ((length = is.read(buffer)) > 0) {
|
|
|
|
os.write(buffer, 0, length);
|
|
|
|
}
|
|
|
|
os.flush();
|
|
|
|
os.close();
|
|
|
|
avatar.sha1sum = CryptoHelper.bytesToHex(digest.digest());
|
|
|
|
avatar.image = new String(mByteArrayOutputStream.toByteArray());
|
|
|
|
avatar.height = options.outHeight;
|
|
|
|
avatar.width = options.outWidth;
|
2017-01-12 11:20:10 +00:00
|
|
|
avatar.type = options.outMimeType;
|
2016-04-11 20:20:32 +00:00
|
|
|
return avatar;
|
|
|
|
} catch (IOException e) {
|
|
|
|
return null;
|
|
|
|
} catch (NoSuchAlgorithmException e) {
|
|
|
|
return null;
|
|
|
|
} finally {
|
|
|
|
close(is);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-05 20:58:46 +00:00
|
|
|
public boolean isAvatarCached(Avatar avatar) {
|
2014-10-20 19:08:33 +00:00
|
|
|
File file = new File(getAvatarPath(avatar.getFilename()));
|
2014-08-05 20:58:46 +00:00
|
|
|
return file.exists();
|
|
|
|
}
|
2014-08-31 14:28:21 +00:00
|
|
|
|
2014-08-06 16:36:33 +00:00
|
|
|
public boolean save(Avatar avatar) {
|
2015-03-17 16:36:17 +00:00
|
|
|
File file;
|
2014-08-06 16:36:33 +00:00
|
|
|
if (isAvatarCached(avatar)) {
|
2015-03-17 16:36:17 +00:00
|
|
|
file = new File(getAvatarPath(avatar.getFilename()));
|
2017-01-12 11:20:10 +00:00
|
|
|
avatar.size = file.length();
|
2015-03-17 16:36:17 +00:00
|
|
|
} else {
|
|
|
|
String filename = getAvatarPath(avatar.getFilename());
|
|
|
|
file = new File(filename + ".tmp");
|
|
|
|
file.getParentFile().mkdirs();
|
2015-04-25 12:08:24 +00:00
|
|
|
OutputStream os = null;
|
2015-03-17 16:36:17 +00:00
|
|
|
try {
|
|
|
|
file.createNewFile();
|
2015-04-25 12:08:24 +00:00
|
|
|
os = new FileOutputStream(file);
|
2015-03-17 16:36:17 +00:00
|
|
|
MessageDigest digest = MessageDigest.getInstance("SHA-1");
|
|
|
|
digest.reset();
|
2015-04-25 12:08:24 +00:00
|
|
|
DigestOutputStream mDigestOutputStream = new DigestOutputStream(os, digest);
|
2017-01-12 11:20:10 +00:00
|
|
|
final byte[] bytes = avatar.getImageAsBytes();
|
|
|
|
mDigestOutputStream.write(bytes);
|
2015-03-17 16:36:17 +00:00
|
|
|
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;
|
|
|
|
}
|
2017-01-12 11:20:10 +00:00
|
|
|
avatar.size = bytes.length;
|
2015-08-16 12:55:24 +00:00
|
|
|
} catch (IllegalArgumentException | IOException | NoSuchAlgorithmException e) {
|
2014-08-06 16:36:33 +00:00
|
|
|
return false;
|
2015-04-25 12:08:24 +00:00
|
|
|
} finally {
|
|
|
|
close(os);
|
2014-08-06 16:36:33 +00:00
|
|
|
}
|
2014-08-03 18:28:13 +00:00
|
|
|
}
|
2015-03-17 16:36:17 +00:00
|
|
|
return true;
|
2014-08-03 18:28:13 +00:00
|
|
|
}
|
2014-08-31 14:28:21 +00:00
|
|
|
|
2014-10-20 19:08:33 +00:00
|
|
|
public String getAvatarPath(String avatar) {
|
2015-04-25 12:08:24 +00:00
|
|
|
return mXmppConnectionService.getFilesDir().getAbsolutePath()+ "/avatars/" + avatar;
|
2014-08-05 11:00:06 +00:00
|
|
|
}
|
2014-08-03 18:28:13 +00:00
|
|
|
|
2014-10-20 19:08:33 +00:00
|
|
|
public Uri getAvatarUri(String avatar) {
|
|
|
|
return Uri.parse("file:" + getAvatarPath(avatar));
|
|
|
|
}
|
|
|
|
|
2014-08-03 18:28:13 +00:00
|
|
|
public Bitmap cropCenterSquare(Uri image, int size) {
|
2014-11-21 14:25:57 +00:00
|
|
|
if (image == null) {
|
|
|
|
return null;
|
|
|
|
}
|
2015-04-25 12:08:24 +00:00
|
|
|
InputStream is = null;
|
2014-08-03 18:28:13 +00:00
|
|
|
try {
|
|
|
|
BitmapFactory.Options options = new BitmapFactory.Options();
|
|
|
|
options.inSampleSize = calcSampleSize(image, size);
|
2015-04-25 12:08:24 +00:00
|
|
|
is = mXmppConnectionService.getContentResolver().openInputStream(image);
|
2015-08-19 10:25:17 +00:00
|
|
|
if (is == null) {
|
|
|
|
return null;
|
|
|
|
}
|
2014-08-03 18:28:13 +00:00
|
|
|
Bitmap input = BitmapFactory.decodeStream(is, null, options);
|
2014-08-31 14:28:21 +00:00
|
|
|
if (input == null) {
|
2014-08-16 15:31:53 +00:00
|
|
|
return null;
|
|
|
|
} else {
|
2016-01-04 14:17:02 +00:00
|
|
|
input = rotate(input, getRotation(image));
|
2014-08-16 15:31:53 +00:00
|
|
|
return cropCenterSquare(input, size);
|
|
|
|
}
|
2015-12-06 23:33:50 +00:00
|
|
|
} catch (SecurityException e) {
|
|
|
|
return null; // happens for example on Android 6.0 if contacts permissions get revoked
|
2014-08-03 18:28:13 +00:00
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
return null;
|
2015-04-25 12:08:24 +00:00
|
|
|
} finally {
|
|
|
|
close(is);
|
2014-08-03 18:28:13 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-31 14:28:21 +00:00
|
|
|
|
2014-10-20 19:08:33 +00:00
|
|
|
public Bitmap cropCenter(Uri image, int newHeight, int newWidth) {
|
2014-11-21 14:25:57 +00:00
|
|
|
if (image == null) {
|
|
|
|
return null;
|
|
|
|
}
|
2015-04-25 12:08:24 +00:00
|
|
|
InputStream is = null;
|
2014-10-20 19:08:33 +00:00
|
|
|
try {
|
|
|
|
BitmapFactory.Options options = new BitmapFactory.Options();
|
2015-12-06 23:33:50 +00:00
|
|
|
options.inSampleSize = calcSampleSize(image, Math.max(newHeight, newWidth));
|
2015-04-25 12:08:24 +00:00
|
|
|
is = mXmppConnectionService.getContentResolver().openInputStream(image);
|
2015-08-19 10:25:17 +00:00
|
|
|
if (is == null) {
|
|
|
|
return null;
|
|
|
|
}
|
2014-10-20 19:08:33 +00:00
|
|
|
Bitmap source = BitmapFactory.decodeStream(is, null, options);
|
2015-04-28 20:23:45 +00:00
|
|
|
if (source == null) {
|
|
|
|
return null;
|
|
|
|
}
|
2014-10-20 19:08:33 +00:00
|
|
|
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 14:25:57 +00:00
|
|
|
RectF targetRect = new RectF(left, top, left + scaledWidth, top + scaledHeight);
|
2015-04-26 18:26:59 +00:00
|
|
|
Bitmap dest = Bitmap.createBitmap(newWidth, newHeight, Bitmap.Config.ARGB_8888);
|
2014-10-20 19:08:33 +00:00
|
|
|
Canvas canvas = new Canvas(dest);
|
2017-12-15 19:49:48 +00:00
|
|
|
Paint p = new Paint();
|
|
|
|
p.setAntiAlias(true);
|
|
|
|
p.setFilterBitmap(true);
|
|
|
|
p.setDither(true);
|
|
|
|
canvas.drawBitmap(source, null, targetRect, p);
|
2017-01-12 11:20:10 +00:00
|
|
|
if (source.isRecycled()) {
|
2015-10-02 09:39:30 +00:00
|
|
|
source.recycle();
|
|
|
|
}
|
2014-10-20 19:08:33 +00:00
|
|
|
return dest;
|
2015-12-06 23:33:50 +00:00
|
|
|
} catch (SecurityException e) {
|
|
|
|
return null; //android 6.0 with revoked permissions for example
|
2014-10-20 19:08:33 +00:00
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
return null;
|
2015-04-25 12:08:24 +00:00
|
|
|
} finally {
|
|
|
|
close(is);
|
2014-10-20 19:08:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public Bitmap cropCenterSquare(Bitmap input, int size) {
|
2014-08-11 21:18:16 +00: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 14:28:21 +00:00
|
|
|
RectF target = new RectF(left, top, left + outWidth, top + outHeight);
|
2014-08-11 21:18:16 +00:00
|
|
|
|
2015-04-26 18:26:59 +00:00
|
|
|
Bitmap output = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888);
|
2014-08-11 21:18:16 +00:00
|
|
|
Canvas canvas = new Canvas(output);
|
|
|
|
canvas.drawBitmap(input, null, target, null);
|
2015-10-02 09:39:30 +00:00
|
|
|
if (input != null && !input.isRecycled()) {
|
|
|
|
input.recycle();
|
|
|
|
}
|
2014-08-11 21:18:16 +00:00
|
|
|
return output;
|
|
|
|
}
|
2014-08-03 18:28:13 +00:00
|
|
|
|
2015-12-06 23:33:50 +00:00
|
|
|
private int calcSampleSize(Uri image, int size) throws FileNotFoundException, SecurityException {
|
2014-08-03 18:28:13 +00:00
|
|
|
BitmapFactory.Options options = new BitmapFactory.Options();
|
|
|
|
options.inJustDecodeBounds = true;
|
2014-11-21 14:25:57 +00:00
|
|
|
BitmapFactory.decodeStream(mXmppConnectionService.getContentResolver().openInputStream(image), null, options);
|
2014-09-30 14:22:02 +00:00
|
|
|
return calcSampleSize(options, size);
|
|
|
|
}
|
|
|
|
|
2015-12-02 14:30:03 +00:00
|
|
|
private static int calcSampleSize(File image, int size) {
|
2014-09-30 14:22:02 +00:00
|
|
|
BitmapFactory.Options options = new BitmapFactory.Options();
|
|
|
|
options.inJustDecodeBounds = true;
|
|
|
|
BitmapFactory.decodeFile(image.getAbsolutePath(), options);
|
|
|
|
return calcSampleSize(options, size);
|
|
|
|
}
|
|
|
|
|
2015-12-02 14:30:03 +00:00
|
|
|
public static int calcSampleSize(BitmapFactory.Options options, int size) {
|
2014-08-03 18:28:13 +00:00
|
|
|
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 14:28:21 +00:00
|
|
|
|
2014-11-13 21:59:00 +00:00
|
|
|
public void updateFileParams(Message message) {
|
2014-11-14 00:29:56 +00:00
|
|
|
updateFileParams(message,null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void updateFileParams(Message message, URL url) {
|
2014-11-13 21:59:00 +00:00
|
|
|
DownloadableFile file = getFile(message);
|
2016-07-22 14:32:38 +00:00
|
|
|
final String mime = file.getMimeType();
|
|
|
|
boolean image = message.getType() == Message.TYPE_IMAGE || (mime != null && mime.startsWith("image/"));
|
|
|
|
boolean video = mime != null && mime.startsWith("video/");
|
2017-09-19 20:42:22 +00:00
|
|
|
boolean audio = mime != null && mime.startsWith("audio/");
|
|
|
|
final StringBuilder body = new StringBuilder();
|
|
|
|
if (url != null) {
|
|
|
|
body.append(url.toString());
|
|
|
|
}
|
|
|
|
body.append('|').append(file.getSize());
|
2016-07-11 19:24:33 +00:00
|
|
|
if (image || video) {
|
|
|
|
try {
|
|
|
|
Dimensions dimensions = image ? getImageDimensions(file) : getVideoDimensions(file);
|
2017-09-19 20:42:22 +00:00
|
|
|
body.append('|').append(dimensions.width).append('|').append(dimensions.height);
|
2016-07-11 19:24:33 +00:00
|
|
|
} catch (NotAVideoFile notAVideoFile) {
|
|
|
|
Log.d(Config.LOGTAG,"file with mime type "+file.getMimeType()+" was not a video file");
|
|
|
|
//fall threw
|
2014-11-14 00:29:56 +00:00
|
|
|
}
|
2017-09-19 20:42:22 +00:00
|
|
|
} else if (audio) {
|
|
|
|
body.append("|0|0|").append(getMediaRuntime(file));
|
2016-07-11 19:24:33 +00:00
|
|
|
}
|
2017-09-19 20:42:22 +00:00
|
|
|
message.setBody(body.toString());
|
2016-07-11 19:24:33 +00:00
|
|
|
}
|
|
|
|
|
2017-09-18 09:54:14 +00:00
|
|
|
public int getMediaRuntime(Uri uri) {
|
|
|
|
try {
|
|
|
|
MediaMetadataRetriever mediaMetadataRetriever = new MediaMetadataRetriever();
|
|
|
|
mediaMetadataRetriever.setDataSource(mXmppConnectionService,uri);
|
2017-09-19 20:42:22 +00:00
|
|
|
return Integer.parseInt(mediaMetadataRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION));
|
2017-11-10 19:17:42 +00:00
|
|
|
} catch (RuntimeException e) {
|
2017-09-19 20:42:22 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private int getMediaRuntime(File file) {
|
|
|
|
try {
|
|
|
|
MediaMetadataRetriever mediaMetadataRetriever = new MediaMetadataRetriever();
|
|
|
|
mediaMetadataRetriever.setDataSource(file.toString());
|
2017-09-18 09:54:14 +00:00
|
|
|
return Integer.parseInt(mediaMetadataRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION));
|
2017-11-12 18:20:35 +00:00
|
|
|
} catch (RuntimeException e) {
|
2017-09-18 09:54:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-11 19:24:33 +00:00
|
|
|
private Dimensions getImageDimensions(File file) {
|
|
|
|
BitmapFactory.Options options = new BitmapFactory.Options();
|
|
|
|
options.inJustDecodeBounds = true;
|
|
|
|
BitmapFactory.decodeFile(file.getAbsolutePath(), options);
|
|
|
|
int rotation = getRotation(file);
|
|
|
|
boolean rotated = rotation == 90 || rotation == 270;
|
|
|
|
int imageHeight = rotated ? options.outWidth : options.outHeight;
|
|
|
|
int imageWidth = rotated ? options.outHeight : options.outWidth;
|
|
|
|
return new Dimensions(imageHeight, imageWidth);
|
|
|
|
}
|
|
|
|
|
|
|
|
private Dimensions getVideoDimensions(File file) throws NotAVideoFile {
|
|
|
|
MediaMetadataRetriever metadataRetriever = new MediaMetadataRetriever();
|
2016-07-31 20:31:47 +00:00
|
|
|
try {
|
|
|
|
metadataRetriever.setDataSource(file.getAbsolutePath());
|
2017-11-12 18:20:35 +00:00
|
|
|
} catch (RuntimeException e) {
|
2017-11-10 19:17:42 +00:00
|
|
|
throw new NotAVideoFile(e);
|
2016-07-31 20:31:47 +00:00
|
|
|
}
|
2017-09-18 20:42:25 +00:00
|
|
|
return getVideoDimensions(metadataRetriever);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static Dimensions getVideoDimensions(Context context, Uri uri) throws NotAVideoFile {
|
|
|
|
MediaMetadataRetriever mediaMetadataRetriever = new MediaMetadataRetriever();
|
2017-11-12 18:20:35 +00:00
|
|
|
try {
|
|
|
|
mediaMetadataRetriever.setDataSource(context, uri);
|
|
|
|
} catch (RuntimeException e) {
|
|
|
|
throw new NotAVideoFile(e);
|
|
|
|
}
|
2017-09-18 20:42:25 +00:00
|
|
|
return getVideoDimensions(mediaMetadataRetriever);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static Dimensions getVideoDimensions(MediaMetadataRetriever metadataRetriever) throws NotAVideoFile {
|
2016-07-11 19:24:33 +00:00
|
|
|
String hasVideo = metadataRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_HAS_VIDEO);
|
|
|
|
if (hasVideo == null) {
|
|
|
|
throw new NotAVideoFile();
|
|
|
|
}
|
|
|
|
int rotation = extractRotationFromMediaRetriever(metadataRetriever);
|
|
|
|
boolean rotated = rotation == 90 || rotation == 270;
|
|
|
|
int height;
|
|
|
|
try {
|
|
|
|
String h = metadataRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT);
|
|
|
|
height = Integer.parseInt(h);
|
|
|
|
} catch (Exception e) {
|
|
|
|
height = -1;
|
|
|
|
}
|
|
|
|
int width;
|
|
|
|
try {
|
|
|
|
String w = metadataRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_WIDTH);
|
|
|
|
width = Integer.parseInt(w);
|
|
|
|
} catch (Exception e) {
|
|
|
|
width = -1;
|
|
|
|
}
|
|
|
|
metadataRetriever.release();
|
|
|
|
Log.d(Config.LOGTAG,"extracted video dims "+width+"x"+height);
|
|
|
|
return rotated ? new Dimensions(width, height) : new Dimensions(height, width);
|
|
|
|
}
|
|
|
|
|
2017-09-18 20:42:25 +00:00
|
|
|
private static int extractRotationFromMediaRetriever(MediaMetadataRetriever metadataRetriever) {
|
2016-07-11 19:24:33 +00:00
|
|
|
int rotation;
|
|
|
|
if (Build.VERSION.SDK_INT >= 17) {
|
|
|
|
String r = metadataRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_ROTATION);
|
|
|
|
try {
|
|
|
|
rotation = Integer.parseInt(r);
|
|
|
|
} catch (Exception e) {
|
|
|
|
rotation = 0;
|
2015-06-30 15:15:02 +00:00
|
|
|
}
|
2016-07-11 19:24:33 +00:00
|
|
|
} else {
|
|
|
|
rotation = 0;
|
2014-11-13 21:59:00 +00:00
|
|
|
}
|
2016-07-11 19:24:33 +00:00
|
|
|
return rotation;
|
|
|
|
}
|
|
|
|
|
2017-09-18 20:42:25 +00:00
|
|
|
private static class Dimensions {
|
2016-07-11 19:24:33 +00:00
|
|
|
public final int width;
|
|
|
|
public final int height;
|
|
|
|
|
|
|
|
public Dimensions(int height, int width) {
|
|
|
|
this.width = width;
|
|
|
|
this.height = height;
|
|
|
|
}
|
2017-09-18 20:42:25 +00:00
|
|
|
|
|
|
|
public int getMin() {
|
|
|
|
return Math.min(width,height);
|
|
|
|
}
|
2016-07-11 19:24:33 +00:00
|
|
|
}
|
|
|
|
|
2017-09-18 20:42:25 +00:00
|
|
|
private static class NotAVideoFile extends Exception {
|
2017-11-10 19:17:42 +00:00
|
|
|
public NotAVideoFile(Throwable t) {
|
|
|
|
super(t);
|
|
|
|
}
|
2014-11-13 21:59:00 +00:00
|
|
|
|
2017-11-10 19:17:42 +00:00
|
|
|
public NotAVideoFile() {
|
|
|
|
super();
|
|
|
|
}
|
2014-11-13 21:59:00 +00:00
|
|
|
}
|
|
|
|
|
2014-11-13 20:04:05 +00:00
|
|
|
public class FileCopyException extends Exception {
|
2014-05-14 16:32:58 +00:00
|
|
|
private static final long serialVersionUID = -1010013599132881427L;
|
|
|
|
private int resId;
|
|
|
|
|
2014-11-13 20:04:05 +00:00
|
|
|
public FileCopyException(int resId) {
|
2014-05-14 16:32:58 +00:00
|
|
|
this.resId = resId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getResId() {
|
|
|
|
return resId;
|
|
|
|
}
|
2014-05-13 14:48:39 +00:00
|
|
|
}
|
2014-08-11 21:18:16 +00:00
|
|
|
|
2014-10-20 19:08:33 +00:00
|
|
|
public Bitmap getAvatar(String avatar, int size) {
|
|
|
|
if (avatar == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
Bitmap bm = cropCenter(getAvatarUri(avatar), size, size);
|
2014-08-31 14:28:21 +00:00
|
|
|
if (bm == null) {
|
2014-08-11 21:18:16 +00:00
|
|
|
return null;
|
|
|
|
}
|
2014-10-20 19:08:33 +00:00
|
|
|
return bm;
|
2014-08-11 21:18:16 +00:00
|
|
|
}
|
2014-10-15 20:08:13 +00:00
|
|
|
|
|
|
|
public boolean isFileAvailable(Message message) {
|
|
|
|
return getFile(message).exists();
|
|
|
|
}
|
2015-04-25 12:08:24 +00:00
|
|
|
|
|
|
|
public static void close(Closeable stream) {
|
|
|
|
if (stream != null) {
|
|
|
|
try {
|
|
|
|
stream.close();
|
|
|
|
} catch (IOException e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-08-15 12:14:33 +00:00
|
|
|
|
|
|
|
public static void close(Socket socket) {
|
|
|
|
if (socket != null) {
|
|
|
|
try {
|
|
|
|
socket.close();
|
|
|
|
} catch (IOException e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-07 18:29:40 +00:00
|
|
|
|
|
|
|
|
2016-04-13 09:14:36 +00:00
|
|
|
public static boolean weOwnFile(Context context, Uri uri) {
|
|
|
|
if (uri == null || !ContentResolver.SCHEME_FILE.equals(uri.getScheme())) {
|
2016-04-07 18:29:40 +00:00
|
|
|
return false;
|
2016-04-13 09:14:36 +00:00
|
|
|
} else if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
|
|
|
|
return fileIsInFilesDir(context, uri);
|
2016-04-07 18:29:40 +00:00
|
|
|
} else {
|
2016-04-13 09:14:36 +00:00
|
|
|
return weOwnFileLollipop(uri);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is more than hacky but probably way better than doing nothing
|
|
|
|
* Further 'optimizations' might contain to get the parents of CacheDir and NoBackupDir
|
|
|
|
* and check against those as well
|
|
|
|
*/
|
|
|
|
private static boolean fileIsInFilesDir(Context context, Uri uri) {
|
|
|
|
try {
|
|
|
|
final String haystack = context.getFilesDir().getParentFile().getCanonicalPath();
|
|
|
|
final String needle = new File(uri.getPath()).getCanonicalPath();
|
|
|
|
return needle.startsWith(haystack);
|
|
|
|
} catch (IOException e) {
|
|
|
|
return false;
|
2016-04-07 18:29:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
|
|
|
|
private static boolean weOwnFileLollipop(Uri uri) {
|
|
|
|
try {
|
|
|
|
File file = new File(uri.getPath());
|
|
|
|
FileDescriptor fd = ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_ONLY).getFileDescriptor();
|
|
|
|
StructStat st = Os.fstat(fd);
|
|
|
|
return st.st_uid == android.os.Process.myUid();
|
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
return false;
|
2016-04-08 16:28:40 +00:00
|
|
|
} catch (Exception e) {
|
|
|
|
return true;
|
2016-04-07 18:29:40 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-05 19:06:10 +00:00
|
|
|
}
|