2012-09-30 19:56:29 -07:00
|
|
|
/**
|
2011-12-20 10:20:44 -08:00
|
|
|
* Copyright (C) 2011 Whisper Systems
|
2012-09-30 19:56:29 -07:00
|
|
|
*
|
2011-12-20 10:20:44 -08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2012-09-30 19:56:29 -07:00
|
|
|
*
|
2011-12-20 10:20:44 -08:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package org.thoughtcrime.securesms.database;
|
|
|
|
|
2012-09-30 19:56:29 -07:00
|
|
|
import android.content.ContentUris;
|
|
|
|
import android.content.ContentValues;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.database.Cursor;
|
|
|
|
import android.database.sqlite.SQLiteDatabase;
|
|
|
|
import android.database.sqlite.SQLiteOpenHelper;
|
2014-02-26 12:42:16 -08:00
|
|
|
import android.text.TextUtils;
|
2012-09-30 19:56:29 -07:00
|
|
|
import android.util.Log;
|
2013-09-08 18:19:05 -07:00
|
|
|
import android.util.Pair;
|
2011-12-20 10:20:44 -08:00
|
|
|
|
2014-12-17 11:47:19 -08:00
|
|
|
import org.thoughtcrime.securesms.ApplicationContext;
|
2014-12-12 01:03:24 -08:00
|
|
|
import org.thoughtcrime.securesms.crypto.DecryptingPartInputStream;
|
|
|
|
import org.thoughtcrime.securesms.crypto.EncryptingPartOutputStream;
|
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
2014-12-17 11:47:19 -08:00
|
|
|
import org.thoughtcrime.securesms.jobs.ThumbnailGenerateJob;
|
2014-12-12 01:03:24 -08:00
|
|
|
import org.thoughtcrime.securesms.mms.PartAuthority;
|
2013-04-26 11:23:43 -07:00
|
|
|
import org.thoughtcrime.securesms.util.Util;
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2013-09-08 18:19:05 -07:00
|
|
|
import java.io.ByteArrayInputStream;
|
2012-09-30 19:56:29 -07:00
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileNotFoundException;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
2014-12-12 01:03:24 -08:00
|
|
|
import java.io.OutputStream;
|
2013-09-08 18:19:05 -07:00
|
|
|
import java.util.LinkedList;
|
|
|
|
import java.util.List;
|
2013-04-26 11:23:43 -07:00
|
|
|
|
|
|
|
import ws.com.google.android.mms.ContentType;
|
|
|
|
import ws.com.google.android.mms.MmsException;
|
|
|
|
import ws.com.google.android.mms.pdu.PduBody;
|
|
|
|
import ws.com.google.android.mms.pdu.PduPart;
|
2011-12-20 10:20:44 -08:00
|
|
|
|
|
|
|
public class PartDatabase extends Database {
|
2014-12-12 01:03:24 -08:00
|
|
|
private static final String TAG = PartDatabase.class.getSimpleName();
|
2011-12-20 10:20:44 -08:00
|
|
|
|
2013-09-08 18:19:05 -07:00
|
|
|
private static final String TABLE_NAME = "part";
|
|
|
|
private static final String ID = "_id";
|
|
|
|
private static final String MMS_ID = "mid";
|
|
|
|
private static final String SEQUENCE = "seq";
|
|
|
|
private static final String CONTENT_TYPE = "ct";
|
|
|
|
private static final String NAME = "name";
|
|
|
|
private static final String CHARSET = "chset";
|
|
|
|
private static final String CONTENT_DISPOSITION = "cd";
|
|
|
|
private static final String FILENAME = "fn";
|
|
|
|
private static final String CONTENT_ID = "cid";
|
|
|
|
private static final String CONTENT_LOCATION = "cl";
|
|
|
|
private static final String CONTENT_TYPE_START = "ctt_s";
|
|
|
|
private static final String CONTENT_TYPE_TYPE = "ctt_t";
|
|
|
|
private static final String ENCRYPTED = "encrypted";
|
|
|
|
private static final String DATA = "_data";
|
|
|
|
private static final String PENDING_PUSH_ATTACHMENT = "pending_push";
|
2014-12-12 01:03:24 -08:00
|
|
|
private static final String SIZE = "data_size";
|
2014-12-17 11:47:19 -08:00
|
|
|
private static final String THUMBNAIL = "thumbnail";
|
|
|
|
private static final String ASPECT_RATIO = "aspect_ratio";
|
2011-12-20 10:20:44 -08:00
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
public static final String CREATE_TABLE = "CREATE TABLE " + TABLE_NAME + " (" + ID + " INTEGER PRIMARY KEY, " +
|
|
|
|
MMS_ID + " INTEGER, " + SEQUENCE + " INTEGER DEFAULT 0, " +
|
|
|
|
CONTENT_TYPE + " TEXT, " + NAME + " TEXT, " + CHARSET + " INTEGER, " +
|
|
|
|
CONTENT_DISPOSITION + " TEXT, " + FILENAME + " TEXT, " + CONTENT_ID + " TEXT, " +
|
|
|
|
CONTENT_LOCATION + " TEXT, " + CONTENT_TYPE_START + " INTEGER, " +
|
|
|
|
CONTENT_TYPE_TYPE + " TEXT, " + ENCRYPTED + " INTEGER, " +
|
2014-12-17 11:47:19 -08:00
|
|
|
PENDING_PUSH_ATTACHMENT + " INTEGER, "+ DATA + " TEXT, " + SIZE + " INTEGER, " +
|
|
|
|
THUMBNAIL + " TEXT, " + ASPECT_RATIO + " REAL);";
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2012-10-29 17:41:06 -07:00
|
|
|
public static final String[] CREATE_INDEXS = {
|
2013-09-08 18:19:05 -07:00
|
|
|
"CREATE INDEX IF NOT EXISTS part_mms_id_index ON " + TABLE_NAME + " (" + MMS_ID + ");",
|
|
|
|
"CREATE INDEX IF NOT EXISTS pending_push_index ON " + TABLE_NAME + " (" + PENDING_PUSH_ATTACHMENT + ");",
|
2012-10-29 17:41:06 -07:00
|
|
|
};
|
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
public PartDatabase(Context context, SQLiteOpenHelper databaseHelper) {
|
|
|
|
super(context, databaseHelper);
|
|
|
|
}
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
public InputStream getPartStream(MasterSecret masterSecret, long partId)
|
|
|
|
throws FileNotFoundException
|
|
|
|
{
|
|
|
|
return getDataStream(masterSecret, partId, DATA);
|
|
|
|
}
|
|
|
|
|
2014-12-17 11:47:19 -08:00
|
|
|
public InputStream getThumbnailStream(MasterSecret masterSecret, long partId)
|
|
|
|
throws FileNotFoundException
|
|
|
|
{
|
|
|
|
return getDataStream(masterSecret, partId, THUMBNAIL);
|
|
|
|
}
|
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
public void updateFailedDownloadedPart(long messageId, long partId, PduPart part)
|
|
|
|
throws MmsException
|
|
|
|
{
|
|
|
|
SQLiteDatabase database = databaseHelper.getWritableDatabase();
|
|
|
|
|
|
|
|
part.setContentDisposition(new byte[0]);
|
|
|
|
part.setPendingPush(false);
|
|
|
|
|
|
|
|
ContentValues values = getContentValuesForPart(part);
|
|
|
|
|
|
|
|
values.put(DATA, (String)null);
|
|
|
|
|
|
|
|
database.update(TABLE_NAME, values, ID_WHERE, new String[] {partId+""});
|
|
|
|
notifyConversationListeners(DatabaseFactory.getMmsDatabase(context).getThreadIdForMessage(messageId));
|
|
|
|
}
|
|
|
|
|
|
|
|
public PduPart getPart(long partId) {
|
|
|
|
SQLiteDatabase database = databaseHelper.getReadableDatabase();
|
|
|
|
Cursor cursor = null;
|
|
|
|
|
|
|
|
try {
|
|
|
|
cursor = database.query(TABLE_NAME, null, ID_WHERE, new String[] {partId+""}, null, null, null);
|
|
|
|
|
|
|
|
if (cursor != null && cursor.moveToFirst()) return getPart(cursor);
|
|
|
|
else return null;
|
|
|
|
|
|
|
|
} finally {
|
|
|
|
if (cursor != null)
|
|
|
|
cursor.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<Pair<Long, PduPart>> getParts(long mmsId) {
|
|
|
|
SQLiteDatabase database = databaseHelper.getReadableDatabase();
|
|
|
|
List<Pair<Long, PduPart>> results = new LinkedList<>();
|
|
|
|
Cursor cursor = null;
|
|
|
|
|
|
|
|
try {
|
|
|
|
cursor = database.query(TABLE_NAME, null, MMS_ID + " = ?", new String[] {mmsId+""},
|
|
|
|
null, null, null);
|
|
|
|
|
|
|
|
while (cursor != null && cursor.moveToNext()) {
|
|
|
|
PduPart part = getPart(cursor);
|
|
|
|
results.add(new Pair<>(cursor.getLong(cursor.getColumnIndexOrThrow(ID)),
|
2014-12-17 11:47:19 -08:00
|
|
|
part));
|
2014-12-12 01:03:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return results;
|
|
|
|
} finally {
|
|
|
|
if (cursor != null)
|
|
|
|
cursor.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-17 11:47:19 -08:00
|
|
|
@SuppressWarnings("ResultOfMethodCallIgnored")
|
2014-12-12 01:03:24 -08:00
|
|
|
public void deleteParts(long mmsId) {
|
|
|
|
SQLiteDatabase database = databaseHelper.getWritableDatabase();
|
|
|
|
Cursor cursor = null;
|
|
|
|
|
|
|
|
try {
|
2014-12-17 11:47:19 -08:00
|
|
|
cursor = database.query(TABLE_NAME, new String[] {DATA, THUMBNAIL}, MMS_ID + " = ?",
|
2014-12-12 01:03:24 -08:00
|
|
|
new String[] {mmsId+""}, null, null, null);
|
|
|
|
|
|
|
|
while (cursor != null && cursor.moveToNext()) {
|
|
|
|
String data = cursor.getString(0);
|
2014-12-17 11:47:19 -08:00
|
|
|
String thumbnail = cursor.getString(1);
|
2014-12-12 01:03:24 -08:00
|
|
|
|
|
|
|
if (!TextUtils.isEmpty(data)) {
|
|
|
|
new File(data).delete();
|
|
|
|
}
|
2014-12-17 11:47:19 -08:00
|
|
|
|
|
|
|
if (!TextUtils.isEmpty(thumbnail)) {
|
|
|
|
new File(thumbnail).delete();
|
|
|
|
}
|
2014-12-12 01:03:24 -08:00
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
if (cursor != null)
|
|
|
|
cursor.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
database.delete(TABLE_NAME, MMS_ID + " = ?", new String[] {mmsId+""});
|
|
|
|
}
|
|
|
|
|
2014-12-17 11:47:19 -08:00
|
|
|
@SuppressWarnings("ResultOfMethodCallIgnored")
|
2014-12-12 01:03:24 -08:00
|
|
|
public void deleteAllParts() {
|
|
|
|
SQLiteDatabase database = databaseHelper.getWritableDatabase();
|
|
|
|
database.delete(TABLE_NAME, null, null);
|
|
|
|
|
|
|
|
File partsDirectory = context.getDir("parts", Context.MODE_PRIVATE);
|
|
|
|
File[] parts = partsDirectory.listFiles();
|
|
|
|
|
|
|
|
for (File part : parts) {
|
|
|
|
part.delete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void insertParts(MasterSecret masterSecret, long mmsId, PduBody body) throws MmsException {
|
|
|
|
for (int i=0;i<body.getPartsNum();i++) {
|
|
|
|
long partId = insertPart(masterSecret, body.getPart(i), mmsId);
|
|
|
|
Log.w(TAG, "Inserted part at ID: " + partId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
private void getPartValues(PduPart part, Cursor cursor) {
|
|
|
|
int charsetColumn = cursor.getColumnIndexOrThrow(CHARSET);
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
if (!cursor.isNull(charsetColumn))
|
|
|
|
part.setCharset(cursor.getInt(charsetColumn));
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
int contentTypeColumn = cursor.getColumnIndexOrThrow(CONTENT_TYPE);
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
if (!cursor.isNull(contentTypeColumn))
|
2013-04-26 11:23:43 -07:00
|
|
|
part.setContentType(Util.toIsoBytes(cursor.getString(contentTypeColumn)));
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
int nameColumn = cursor.getColumnIndexOrThrow(NAME);
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
if (!cursor.isNull(nameColumn))
|
2013-04-26 11:23:43 -07:00
|
|
|
part.setName(Util.toIsoBytes(cursor.getString(nameColumn)));
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
int fileNameColumn = cursor.getColumnIndexOrThrow(FILENAME);
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
if (!cursor.isNull(fileNameColumn))
|
2013-04-26 11:23:43 -07:00
|
|
|
part.setFilename(Util.toIsoBytes(cursor.getString(fileNameColumn)));
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
int contentDispositionColumn = cursor.getColumnIndexOrThrow(CONTENT_DISPOSITION);
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
if (!cursor.isNull(contentDispositionColumn))
|
2013-04-26 11:23:43 -07:00
|
|
|
part.setContentDisposition(Util.toIsoBytes(cursor.getString(contentDispositionColumn)));
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
int contentIdColumn = cursor.getColumnIndexOrThrow(CONTENT_ID);
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
if (!cursor.isNull(contentIdColumn))
|
2013-04-26 11:23:43 -07:00
|
|
|
part.setContentId(Util.toIsoBytes(cursor.getString(contentIdColumn)));
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
int contentLocationColumn = cursor.getColumnIndexOrThrow(CONTENT_LOCATION);
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
if (!cursor.isNull(contentLocationColumn))
|
2013-04-26 11:23:43 -07:00
|
|
|
part.setContentLocation(Util.toIsoBytes(cursor.getString(contentLocationColumn)));
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
int encryptedColumn = cursor.getColumnIndexOrThrow(ENCRYPTED);
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
if (!cursor.isNull(encryptedColumn))
|
|
|
|
part.setEncrypted(cursor.getInt(encryptedColumn) == 1);
|
2013-09-08 18:19:05 -07:00
|
|
|
|
|
|
|
int pendingPushColumn = cursor.getColumnIndexOrThrow(PENDING_PUSH_ATTACHMENT);
|
|
|
|
|
|
|
|
if (!cursor.isNull(pendingPushColumn))
|
|
|
|
part.setPendingPush(cursor.getInt(pendingPushColumn) == 1);
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2014-12-17 11:47:19 -08:00
|
|
|
int thumbnailColumn = cursor.getColumnIndexOrThrow(THUMBNAIL);
|
|
|
|
|
|
|
|
if (!cursor.isNull(thumbnailColumn))
|
|
|
|
part.setThumbnailUri(ContentUris.withAppendedId(PartAuthority.THUMB_CONTENT_URI,
|
|
|
|
cursor.getLong(cursor.getColumnIndexOrThrow(ID))));
|
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
int sizeColumn = cursor.getColumnIndexOrThrow(SIZE);
|
|
|
|
|
|
|
|
if (!cursor.isNull(sizeColumn))
|
|
|
|
part.setDataSize(cursor.getLong(cursor.getColumnIndexOrThrow(SIZE)));
|
|
|
|
}
|
2011-12-20 10:20:44 -08:00
|
|
|
|
|
|
|
private ContentValues getContentValuesForPart(PduPart part) throws MmsException {
|
|
|
|
ContentValues contentValues = new ContentValues();
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
if (part.getCharset() != 0 ) {
|
|
|
|
contentValues.put(CHARSET, part.getCharset());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (part.getContentType() != null) {
|
2013-04-26 11:23:43 -07:00
|
|
|
contentValues.put(CONTENT_TYPE, Util.toIsoString(part.getContentType()));
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2013-09-08 18:19:05 -07:00
|
|
|
if (Util.toIsoString(part.getContentType()).equals(ContentType.APP_SMIL)) {
|
2012-09-30 19:56:29 -07:00
|
|
|
contentValues.put(SEQUENCE, -1);
|
2013-09-08 18:19:05 -07:00
|
|
|
}
|
2011-12-20 10:20:44 -08:00
|
|
|
} else {
|
|
|
|
throw new MmsException("There is no content type for this part.");
|
|
|
|
}
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
if (part.getName() != null) {
|
|
|
|
contentValues.put(NAME, new String(part.getName()));
|
|
|
|
}
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
if (part.getFilename() != null) {
|
|
|
|
contentValues.put(FILENAME, new String(part.getFilename()));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (part.getContentDisposition() != null) {
|
2013-04-26 11:23:43 -07:00
|
|
|
contentValues.put(CONTENT_DISPOSITION, Util.toIsoString(part.getContentDisposition()));
|
2011-12-20 10:20:44 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (part.getContentId() != null) {
|
2013-04-26 11:23:43 -07:00
|
|
|
contentValues.put(CONTENT_ID, Util.toIsoString(part.getContentId()));
|
2011-12-20 10:20:44 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (part.getContentLocation() != null) {
|
2013-04-26 11:23:43 -07:00
|
|
|
contentValues.put(CONTENT_LOCATION, Util.toIsoString(part.getContentLocation()));
|
2011-12-20 10:20:44 -08:00
|
|
|
}
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
contentValues.put(ENCRYPTED, part.getEncrypted() ? 1 : 0);
|
2013-09-08 18:19:05 -07:00
|
|
|
contentValues.put(PENDING_PUSH_ATTACHMENT, part.isPendingPush() ? 1 : 0);
|
2011-12-20 10:20:44 -08:00
|
|
|
|
|
|
|
return contentValues;
|
|
|
|
}
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
private InputStream getPartInputStream(MasterSecret masterSecret, File path)
|
|
|
|
throws FileNotFoundException
|
|
|
|
{
|
|
|
|
Log.w(TAG, "Getting part at: " + path.getAbsolutePath());
|
|
|
|
return new DecryptingPartInputStream(path, masterSecret);
|
2011-12-20 10:20:44 -08:00
|
|
|
}
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
protected OutputStream getPartOutputStream(MasterSecret masterSecret, File path, PduPart part)
|
|
|
|
throws FileNotFoundException
|
|
|
|
{
|
|
|
|
Log.w(TAG, "Writing part to: " + path.getAbsolutePath());
|
|
|
|
part.setEncrypted(true);
|
|
|
|
return new EncryptingPartOutputStream(path, masterSecret);
|
2011-12-20 10:20:44 -08:00
|
|
|
}
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
private InputStream getDataStream(MasterSecret masterSecret, long partId, String dataType)
|
|
|
|
throws FileNotFoundException
|
|
|
|
{
|
|
|
|
SQLiteDatabase database = databaseHelper.getReadableDatabase();
|
|
|
|
Cursor cursor = null;
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
try {
|
2014-12-12 01:03:24 -08:00
|
|
|
cursor = database.query(TABLE_NAME, new String[]{dataType}, ID_WHERE,
|
|
|
|
new String[] {partId+""}, null, null, null);
|
2011-12-20 10:20:44 -08:00
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
if (cursor != null && cursor.moveToFirst()) {
|
|
|
|
if (cursor.isNull(0)) {
|
|
|
|
throw new FileNotFoundException("No part data for id: " + partId);
|
|
|
|
}
|
2013-09-08 18:19:05 -07:00
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
return getPartInputStream(masterSecret, new File(cursor.getString(0)));
|
|
|
|
} else {
|
|
|
|
throw new FileNotFoundException("No part for id: " + partId);
|
2013-09-08 18:19:05 -07:00
|
|
|
}
|
2014-12-12 01:03:24 -08:00
|
|
|
} finally {
|
|
|
|
if (cursor != null)
|
|
|
|
cursor.close();
|
|
|
|
}
|
|
|
|
}
|
2013-09-08 18:19:05 -07:00
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
private Pair<File, Long> writePartData(MasterSecret masterSecret, PduPart part, InputStream in)
|
|
|
|
throws MmsException
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
File partsDirectory = context.getDir("parts", Context.MODE_PRIVATE);
|
|
|
|
File dataFile = File.createTempFile("part", ".mms", partsDirectory);
|
|
|
|
OutputStream out = getPartOutputStream(masterSecret, dataFile, part);
|
|
|
|
long plaintextLength = Util.copy(in, out);
|
2013-09-08 18:19:05 -07:00
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
return new Pair<>(dataFile, plaintextLength);
|
2013-09-08 18:19:05 -07:00
|
|
|
} catch (IOException e) {
|
2014-12-12 01:03:24 -08:00
|
|
|
throw new MmsException(e);
|
2013-09-08 18:19:05 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
private Pair<File, Long> writePartData(MasterSecret masterSecret, PduPart part)
|
|
|
|
throws MmsException
|
|
|
|
{
|
2013-09-08 18:19:05 -07:00
|
|
|
try {
|
2011-12-20 10:20:44 -08:00
|
|
|
if (part.getData() != null) {
|
2014-12-12 01:03:24 -08:00
|
|
|
Log.w(TAG, "Writing part data from buffer");
|
|
|
|
return writePartData(masterSecret, part, new ByteArrayInputStream(part.getData()));
|
2011-12-20 10:20:44 -08:00
|
|
|
} else if (part.getDataUri() != null) {
|
2014-12-12 01:03:24 -08:00
|
|
|
Log.w(TAG, "Writing part data from URI");
|
2014-12-23 19:02:46 -08:00
|
|
|
InputStream in = PartAuthority.getPartStream(context, masterSecret, part.getDataUri());
|
2014-12-12 01:03:24 -08:00
|
|
|
return writePartData(masterSecret, part, in);
|
2011-12-20 10:20:44 -08:00
|
|
|
} else {
|
2012-09-30 19:56:29 -07:00
|
|
|
throw new MmsException("Part is empty!");
|
2011-12-20 10:20:44 -08:00
|
|
|
}
|
|
|
|
} catch (FileNotFoundException e) {
|
2014-12-12 01:03:24 -08:00
|
|
|
throw new MmsException(e);
|
2011-12-20 10:20:44 -08:00
|
|
|
}
|
|
|
|
}
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
private PduPart getPart(Cursor cursor) {
|
2014-12-17 11:47:19 -08:00
|
|
|
PduPart part = new PduPart();
|
|
|
|
long partId = cursor.getLong(cursor.getColumnIndexOrThrow(ID));
|
2011-12-20 10:20:44 -08:00
|
|
|
|
|
|
|
getPartValues(part, cursor);
|
2014-12-12 01:03:24 -08:00
|
|
|
|
|
|
|
part.setDataUri(ContentUris.withAppendedId(PartAuthority.PART_CONTENT_URI, partId));
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
return part;
|
|
|
|
}
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
private long insertPart(MasterSecret masterSecret, PduPart part, long mmsId) throws MmsException {
|
|
|
|
Log.w(TAG, "inserting part to mms " + mmsId);
|
|
|
|
SQLiteDatabase database = databaseHelper.getWritableDatabase();
|
|
|
|
Pair<File, Long> partData = null;
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2013-09-08 18:19:05 -07:00
|
|
|
if (!part.isPendingPush()) {
|
2014-12-12 01:03:24 -08:00
|
|
|
partData = writePartData(masterSecret, part);
|
|
|
|
Log.w(TAG, "Wrote part to file: " + partData.first.getAbsolutePath());
|
2013-09-08 18:19:05 -07:00
|
|
|
}
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2013-09-08 18:19:05 -07:00
|
|
|
ContentValues contentValues = getContentValuesForPart(part);
|
2011-12-20 10:20:44 -08:00
|
|
|
contentValues.put(MMS_ID, mmsId);
|
2013-09-08 18:19:05 -07:00
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
if (partData != null) {
|
|
|
|
contentValues.put(DATA, partData.first.getAbsolutePath());
|
|
|
|
contentValues.put(SIZE, partData.second);
|
2013-09-08 18:19:05 -07:00
|
|
|
}
|
2011-12-20 10:20:44 -08:00
|
|
|
|
2014-12-17 11:47:19 -08:00
|
|
|
long partId = database.insert(TABLE_NAME, null, contentValues);
|
|
|
|
|
|
|
|
ApplicationContext.getInstance(context).getJobManager().add(new ThumbnailGenerateJob(context, partId));
|
|
|
|
|
|
|
|
return partId;
|
2011-12-20 10:20:44 -08:00
|
|
|
}
|
2012-09-30 19:56:29 -07:00
|
|
|
|
2014-12-12 01:03:24 -08:00
|
|
|
public void updateDownloadedPart(MasterSecret masterSecret, long messageId,
|
|
|
|
long partId, PduPart part, InputStream data)
|
2013-09-08 18:19:05 -07:00
|
|
|
throws MmsException
|
|
|
|
{
|
2014-12-12 01:03:24 -08:00
|
|
|
SQLiteDatabase database = databaseHelper.getWritableDatabase();
|
|
|
|
Pair<File, Long> partData = writePartData(masterSecret, part, data);
|
2013-09-08 18:19:05 -07:00
|
|
|
|
|
|
|
part.setContentDisposition(new byte[0]);
|
|
|
|
part.setPendingPush(false);
|
|
|
|
|
|
|
|
ContentValues values = getContentValuesForPart(part);
|
|
|
|
|
|
|
|
if (partData != null) {
|
2014-12-12 01:03:24 -08:00
|
|
|
values.put(DATA, partData.first.getAbsolutePath());
|
|
|
|
values.put(SIZE, partData.second);
|
2013-09-08 18:19:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
database.update(TABLE_NAME, values, ID_WHERE, new String[] {partId+""});
|
|
|
|
|
2014-12-17 11:47:19 -08:00
|
|
|
ApplicationContext.getInstance(context).getJobManager().add(new ThumbnailGenerateJob(context, partId));
|
|
|
|
|
2013-09-08 18:19:05 -07:00
|
|
|
notifyConversationListeners(DatabaseFactory.getMmsDatabase(context).getThreadIdForMessage(messageId));
|
|
|
|
}
|
2014-12-17 11:47:19 -08:00
|
|
|
|
|
|
|
public void updatePartThumbnail(MasterSecret masterSecret, long partId, PduPart part, InputStream in, float aspectRatio)
|
|
|
|
throws MmsException
|
|
|
|
{
|
|
|
|
Log.w(TAG, "updating part thumbnail for #" + partId);
|
|
|
|
|
|
|
|
Pair<File, Long> thumbnailFile = writePartData(masterSecret, part, in);
|
|
|
|
|
|
|
|
SQLiteDatabase database = databaseHelper.getWritableDatabase();
|
|
|
|
ContentValues values = new ContentValues(2);
|
|
|
|
|
|
|
|
values.put(THUMBNAIL, thumbnailFile.first.getAbsolutePath());
|
|
|
|
values.put(ASPECT_RATIO, aspectRatio);
|
|
|
|
|
|
|
|
database.update(TABLE_NAME, values, ID_WHERE, new String[] {partId + ""});
|
|
|
|
}
|
2011-12-20 10:20:44 -08:00
|
|
|
}
|