mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-28 20:45:17 +00:00
ef6a5c69af
1) Only attempt direct connect outside of MMS radio mode on CDMA. 2) Don't switch back to normal radio state if pending messages remain.
237 lines
8.7 KiB
Java
237 lines
8.7 KiB
Java
/**
|
|
* Copyright (C) 2011 Whisper Systems
|
|
*
|
|
* 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.
|
|
*
|
|
* 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.service;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.telephony.TelephonyManager;
|
|
import android.util.Log;
|
|
|
|
import org.thoughtcrime.securesms.R;
|
|
import org.thoughtcrime.securesms.crypto.DecryptingQueue;
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
import org.thoughtcrime.securesms.database.MmsDatabase;
|
|
import org.thoughtcrime.securesms.mms.MmsDownloadHelper;
|
|
import org.thoughtcrime.securesms.protocol.WirePrefix;
|
|
|
|
import ws.com.google.android.mms.MmsException;
|
|
import ws.com.google.android.mms.pdu.RetrieveConf;
|
|
|
|
import java.io.IOException;
|
|
import java.util.LinkedList;
|
|
|
|
public class MmsDownloader extends MmscProcessor {
|
|
|
|
private final LinkedList<DownloadItem> pendingMessages = new LinkedList<DownloadItem>();
|
|
private final SendReceiveService.ToastHandler toastHandler;
|
|
|
|
public MmsDownloader(Context context, SendReceiveService.ToastHandler toastHandler) {
|
|
super(context);
|
|
this.toastHandler = toastHandler;
|
|
}
|
|
|
|
public void process(MasterSecret masterSecret, Intent intent) {
|
|
if (intent.getAction().equals(SendReceiveService.DOWNLOAD_MMS_ACTION)) {
|
|
boolean isCdma = ((TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE)).getPhoneType() == TelephonyManager.PHONE_TYPE_CDMA;
|
|
DownloadItem item = new DownloadItem(masterSecret, !isCdma, false,
|
|
intent.getLongExtra("message_id", -1),
|
|
intent.getLongExtra("thread_id", -1),
|
|
intent.getStringExtra("content_location"),
|
|
intent.getByteArrayExtra("transaction_id"));
|
|
|
|
handleDownloadMmsAction(item);
|
|
} else if (intent.getAction().equals(SendReceiveService.DOWNLOAD_MMS_CONNECTIVITY_ACTION)) {
|
|
handleConnectivityChange();
|
|
}
|
|
}
|
|
|
|
private void handleDownloadMmsAction(DownloadItem item) {
|
|
if (!isConnectivityPossible()) {
|
|
Log.w("MmsDownloader", "No MMS connectivity available!");
|
|
DatabaseFactory.getMmsDatabase(context).markDownloadState(item.getMessageId(), MmsDatabase.Types.DOWNLOAD_NO_CONNECTIVITY);
|
|
toastHandler.makeToast(context.getString(R.string.MmsDownloader_no_connectivity_available_for_mms_download_try_again_later));
|
|
return;
|
|
}
|
|
|
|
DatabaseFactory.getMmsDatabase(context).markDownloadState(item.getMessageId(), MmsDatabase.Types.DOWNLOAD_CONNECTING);
|
|
|
|
if (item.useMmsRadioMode()) downloadMmsWithRadioChange(item);
|
|
else downloadMms(item);
|
|
}
|
|
|
|
private void downloadMmsWithRadioChange(DownloadItem item) {
|
|
Log.w("MmsDownloader", "Handling MMS download with radio change...");
|
|
pendingMessages.add(item);
|
|
issueConnectivityRequest();
|
|
}
|
|
|
|
private void downloadMms(DownloadItem item) {
|
|
Log.w("MmsDownloadService", "Handling actual MMS download...");
|
|
MmsDatabase mmsDatabase;
|
|
|
|
if (item.getMasterSecret() == null) {
|
|
mmsDatabase = DatabaseFactory.getMmsDatabase(context);
|
|
} else {
|
|
mmsDatabase = DatabaseFactory.getEncryptingMmsDatabase(context, item.getMasterSecret());
|
|
}
|
|
|
|
try {
|
|
RetrieveConf retrieved = MmsDownloadHelper.retrieveMms(context, item.getContentLocation(),
|
|
getApnInformation(),
|
|
item.useMmsRadioMode(),
|
|
item.proxyRequestIfPossible());
|
|
|
|
for (int i=0;i<retrieved.getBody().getPartsNum();i++) {
|
|
Log.w("MmsDownloader", "Got MMS part of content-type: " +
|
|
new String(retrieved.getBody().getPart(i).getContentType()));
|
|
}
|
|
|
|
storeRetrievedMms(mmsDatabase, item, retrieved);
|
|
|
|
// NotifyRespInd notifyResponse = new NotifyRespInd(PduHeaders.CURRENT_MMS_VERSION, item.getTransactionId(), PduHeaders.STATUS_RETRIEVED);
|
|
// MmsSendHelper.sendMms(context, new PduComposer(context, notifyResponse).make());
|
|
|
|
} catch (IOException e) {
|
|
Log.w("MmsDownloader", e);
|
|
if (!item.useMmsRadioMode() && !item.proxyRequestIfPossible()) {
|
|
scheduleDownloadWithRadioMode(item);
|
|
} else if (!item.proxyRequestIfPossible()) {
|
|
scheduleDownloadWithRadioModeAndProxy(item);
|
|
} else {
|
|
DatabaseFactory.getMmsDatabase(context).markDownloadState(item.getMessageId(), MmsDatabase.Types.DOWNLOAD_SOFT_FAILURE);
|
|
toastHandler.makeToast(context.getString(R.string.MmsDownloader_error_connecting_to_mms_provider));
|
|
}
|
|
} catch (MmsException e) {
|
|
Log.w("MmsDownloader", e);
|
|
DatabaseFactory.getMmsDatabase(context).markDownloadState(item.getMessageId(), MmsDatabase.Types.DOWNLOAD_HARD_FAILURE);
|
|
toastHandler.makeToast(context.getString(R.string.MmsDownloader_error_storing_mms));
|
|
}
|
|
}
|
|
|
|
private void storeRetrievedMms(MmsDatabase mmsDatabase, DownloadItem item, RetrieveConf retrieved)
|
|
throws MmsException
|
|
{
|
|
if (retrieved.getSubject() != null && WirePrefix.isEncryptedMmsSubject(retrieved.getSubject().getString())) {
|
|
long messageId = mmsDatabase.insertSecureMessageReceived(retrieved, item.getContentLocation(), item.getThreadId());
|
|
|
|
if (item.getMasterSecret() != null)
|
|
DecryptingQueue.scheduleDecryption(context, item.getMasterSecret(), messageId, item.getThreadId(), retrieved);
|
|
|
|
} else {
|
|
mmsDatabase.insertMessageReceived(retrieved, item.getContentLocation(), item.getThreadId());
|
|
}
|
|
|
|
mmsDatabase.delete(item.getMessageId());
|
|
}
|
|
|
|
protected void handleConnectivityChange() {
|
|
LinkedList<DownloadItem> downloadItems = (LinkedList<DownloadItem>)pendingMessages.clone();
|
|
|
|
if (isConnected()) {
|
|
pendingMessages.clear();
|
|
|
|
for (DownloadItem item : downloadItems) {
|
|
downloadMms(item);
|
|
}
|
|
|
|
if (pendingMessages.isEmpty())
|
|
finishConnectivity();
|
|
|
|
} else if (!isConnected() && !isConnectivityPossible()) {
|
|
pendingMessages.clear();
|
|
|
|
for (DownloadItem item : downloadItems) {
|
|
DatabaseFactory.getMmsDatabase(context).markDownloadState(item.getMessageId(), MmsDatabase.Types.DOWNLOAD_NO_CONNECTIVITY);
|
|
}
|
|
|
|
toastHandler.makeToast(context
|
|
.getString(R.string.MmsDownloader_no_connectivity_available_for_mms_download_try_again_later));
|
|
|
|
finishConnectivity();
|
|
}
|
|
}
|
|
|
|
|
|
private void scheduleDownloadWithRadioMode(DownloadItem item) {
|
|
item.mmsRadioMode = true;
|
|
handleDownloadMmsAction(item);
|
|
}
|
|
|
|
private void scheduleDownloadWithRadioModeAndProxy(DownloadItem item) {
|
|
item.mmsRadioMode = true;
|
|
item.proxyIfPossible = true;
|
|
handleDownloadMmsAction(item);
|
|
}
|
|
|
|
private static class DownloadItem {
|
|
private final MasterSecret masterSecret;
|
|
private boolean mmsRadioMode;
|
|
private boolean proxyIfPossible;
|
|
|
|
private long threadId;
|
|
private long messageId;
|
|
private byte[] transactionId;
|
|
private String contentLocation;
|
|
|
|
public DownloadItem(MasterSecret masterSecret, boolean mmsRadioMode, boolean proxyIfPossible,
|
|
long messageId, long threadId, String contentLocation, byte[] transactionId)
|
|
{
|
|
this.masterSecret = masterSecret;
|
|
this.mmsRadioMode = mmsRadioMode;
|
|
this.proxyIfPossible = proxyIfPossible;
|
|
this.threadId = threadId;
|
|
this.messageId = messageId;
|
|
this.contentLocation = contentLocation;
|
|
this.transactionId = transactionId;
|
|
}
|
|
|
|
public long getThreadId() {
|
|
return threadId;
|
|
}
|
|
|
|
public long getMessageId() {
|
|
return messageId;
|
|
}
|
|
|
|
public String getContentLocation() {
|
|
return contentLocation;
|
|
}
|
|
|
|
public byte[] getTransactionId() {
|
|
return transactionId;
|
|
}
|
|
|
|
public MasterSecret getMasterSecret() {
|
|
return masterSecret;
|
|
}
|
|
|
|
public boolean proxyRequestIfPossible() {
|
|
return proxyIfPossible;
|
|
}
|
|
|
|
public boolean useMmsRadioMode() {
|
|
return mmsRadioMode;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected String getConnectivityAction() {
|
|
return SendReceiveService.DOWNLOAD_MMS_CONNECTIVITY_ACTION;
|
|
}
|
|
}
|