2014-02-28 17:46:01 +00:00
|
|
|
package eu.siacs.conversations.services;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
2014-02-11 14:34:24 +00:00
|
|
|
import java.text.ParseException;
|
|
|
|
import java.text.SimpleDateFormat;
|
2014-03-19 15:16:40 +00:00
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.Comparator;
|
2014-02-11 14:34:24 +00:00
|
|
|
import java.util.Date;
|
2014-02-01 14:07:20 +00:00
|
|
|
import java.util.Hashtable;
|
2014-01-25 18:33:12 +00:00
|
|
|
import java.util.List;
|
2014-03-21 21:14:52 +00:00
|
|
|
import java.util.Locale;
|
2014-03-06 02:30:03 +00:00
|
|
|
import java.util.Random;
|
2014-02-13 22:40:08 +00:00
|
|
|
|
2014-02-27 23:22:56 +00:00
|
|
|
import org.openintents.openpgp.util.OpenPgpApi;
|
|
|
|
import org.openintents.openpgp.util.OpenPgpServiceConnection;
|
|
|
|
|
2014-02-13 22:40:08 +00:00
|
|
|
import net.java.otr4j.OtrException;
|
|
|
|
import net.java.otr4j.session.Session;
|
|
|
|
import net.java.otr4j.session.SessionStatus;
|
2014-02-28 17:46:01 +00:00
|
|
|
import eu.siacs.conversations.crypto.PgpEngine;
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
|
|
|
import eu.siacs.conversations.entities.Message;
|
2014-03-03 04:01:02 +00:00
|
|
|
import eu.siacs.conversations.entities.MucOptions;
|
|
|
|
import eu.siacs.conversations.entities.MucOptions.OnRenameListener;
|
2014-02-28 17:46:01 +00:00
|
|
|
import eu.siacs.conversations.entities.Presences;
|
2014-05-14 10:56:34 +00:00
|
|
|
import eu.siacs.conversations.parser.MessageParser;
|
2014-02-28 17:46:01 +00:00
|
|
|
import eu.siacs.conversations.persistance.DatabaseBackend;
|
2014-04-05 19:06:10 +00:00
|
|
|
import eu.siacs.conversations.persistance.FileBackend;
|
2014-02-28 17:46:01 +00:00
|
|
|
import eu.siacs.conversations.ui.OnAccountListChangedListener;
|
|
|
|
import eu.siacs.conversations.ui.OnConversationListChangedListener;
|
2014-05-12 12:59:46 +00:00
|
|
|
import eu.siacs.conversations.ui.UiCallback;
|
2014-03-09 12:21:28 +00:00
|
|
|
import eu.siacs.conversations.utils.ExceptionHelper;
|
2014-02-28 17:46:01 +00:00
|
|
|
import eu.siacs.conversations.utils.OnPhoneContactsLoadedListener;
|
|
|
|
import eu.siacs.conversations.utils.PhoneHelper;
|
|
|
|
import eu.siacs.conversations.utils.UIHelper;
|
|
|
|
import eu.siacs.conversations.xml.Element;
|
2014-03-14 19:43:54 +00:00
|
|
|
import eu.siacs.conversations.xmpp.OnBindListener;
|
2014-02-28 17:46:01 +00:00
|
|
|
import eu.siacs.conversations.xmpp.OnIqPacketReceived;
|
|
|
|
import eu.siacs.conversations.xmpp.OnMessagePacketReceived;
|
|
|
|
import eu.siacs.conversations.xmpp.OnPresencePacketReceived;
|
|
|
|
import eu.siacs.conversations.xmpp.OnStatusChanged;
|
2014-03-07 13:24:33 +00:00
|
|
|
import eu.siacs.conversations.xmpp.OnTLSExceptionReceived;
|
2014-02-28 17:46:01 +00:00
|
|
|
import eu.siacs.conversations.xmpp.XmppConnection;
|
2014-04-08 21:15:55 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jingle.JingleConnectionManager;
|
|
|
|
import eu.siacs.conversations.xmpp.jingle.OnJinglePacketReceived;
|
|
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.JinglePacket;
|
2014-03-10 18:22:13 +00:00
|
|
|
import eu.siacs.conversations.xmpp.stanzas.IqPacket;
|
|
|
|
import eu.siacs.conversations.xmpp.stanzas.MessagePacket;
|
|
|
|
import eu.siacs.conversations.xmpp.stanzas.PresencePacket;
|
2014-03-06 02:30:03 +00:00
|
|
|
import android.app.AlarmManager;
|
|
|
|
import android.app.PendingIntent;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.app.Service;
|
2014-01-30 15:42:35 +00:00
|
|
|
import android.content.Context;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.content.Intent;
|
2014-02-23 20:33:37 +00:00
|
|
|
import android.content.SharedPreferences;
|
2014-02-10 14:24:34 +00:00
|
|
|
import android.database.ContentObserver;
|
2014-03-06 02:57:29 +00:00
|
|
|
import android.net.ConnectivityManager;
|
|
|
|
import android.net.NetworkInfo;
|
2014-04-06 13:34:08 +00:00
|
|
|
import android.net.Uri;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.os.Binder;
|
2014-02-05 21:33:39 +00:00
|
|
|
import android.os.Bundle;
|
2014-01-24 01:04:05 +00:00
|
|
|
import android.os.IBinder;
|
2014-05-19 13:15:09 +00:00
|
|
|
import android.os.Looper;
|
2014-01-30 15:42:35 +00:00
|
|
|
import android.os.PowerManager;
|
2014-03-23 13:15:14 +00:00
|
|
|
import android.os.PowerManager.WakeLock;
|
2014-03-06 02:30:03 +00:00
|
|
|
import android.os.SystemClock;
|
2014-02-23 20:33:37 +00:00
|
|
|
import android.preference.PreferenceManager;
|
2014-02-05 21:33:39 +00:00
|
|
|
import android.provider.ContactsContract;
|
2014-01-25 18:33:12 +00:00
|
|
|
import android.util.Log;
|
2014-01-24 01:04:05 +00:00
|
|
|
|
|
|
|
public class XmppConnectionService extends Service {
|
2014-02-03 17:38:47 +00:00
|
|
|
|
2014-01-30 15:42:35 +00:00
|
|
|
protected static final String LOGTAG = "xmppService";
|
2014-02-19 00:35:23 +00:00
|
|
|
public DatabaseBackend databaseBackend;
|
2014-04-05 19:06:10 +00:00
|
|
|
private FileBackend fileBackend;
|
2014-02-03 17:38:47 +00:00
|
|
|
|
2014-01-30 15:42:35 +00:00
|
|
|
public long startDate;
|
2014-02-03 17:38:47 +00:00
|
|
|
|
2014-03-11 15:27:33 +00:00
|
|
|
private static final int PING_MAX_INTERVAL = 300;
|
2014-03-11 14:44:22 +00:00
|
|
|
private static final int PING_MIN_INTERVAL = 10;
|
2014-03-15 14:13:35 +00:00
|
|
|
private static final int PING_TIMEOUT = 5;
|
2014-03-12 21:31:50 +00:00
|
|
|
private static final int CONNECT_TIMEOUT = 60;
|
2014-04-07 21:58:59 +00:00
|
|
|
private static final long CARBON_GRACE_PERIOD = 60000L;
|
2014-05-22 07:36:00 +00:00
|
|
|
|
2014-05-19 13:15:09 +00:00
|
|
|
private static String ACTION_MERGE_PHONE_CONTACTS = "merge_phone_contacts";
|
2014-03-11 14:44:22 +00:00
|
|
|
|
2014-05-14 10:56:34 +00:00
|
|
|
private MessageParser mMessageParser = new MessageParser(this);
|
|
|
|
|
2014-01-30 15:42:35 +00:00
|
|
|
private List<Account> accounts;
|
2014-02-01 14:07:20 +00:00
|
|
|
private List<Conversation> conversations = null;
|
2014-05-01 20:33:49 +00:00
|
|
|
private JingleConnectionManager mJingleConnectionManager = new JingleConnectionManager(
|
|
|
|
this);
|
|
|
|
|
2014-05-06 19:34:30 +00:00
|
|
|
private OnConversationListChangedListener convChangedListener = null;
|
2014-03-29 19:29:03 +00:00
|
|
|
private int convChangedListenerCount = 0;
|
2014-02-04 14:09:50 +00:00
|
|
|
private OnAccountListChangedListener accountChangedListener = null;
|
2014-03-07 13:24:33 +00:00
|
|
|
private OnTLSExceptionReceived tlsException = null;
|
2014-03-19 15:16:40 +00:00
|
|
|
|
2014-03-11 14:44:22 +00:00
|
|
|
public void setOnTLSExceptionReceivedListener(
|
|
|
|
OnTLSExceptionReceived listener) {
|
2014-03-07 13:24:33 +00:00
|
|
|
tlsException = listener;
|
|
|
|
}
|
2014-03-11 14:44:22 +00:00
|
|
|
|
2014-03-06 02:30:03 +00:00
|
|
|
private Random mRandom = new Random(System.currentTimeMillis());
|
2014-02-11 22:55:03 +00:00
|
|
|
|
2014-04-07 21:58:59 +00:00
|
|
|
private long lastCarbonMessageReceived = -CARBON_GRACE_PERIOD;
|
|
|
|
|
2014-02-10 14:24:34 +00:00
|
|
|
private ContentObserver contactObserver = new ContentObserver(null) {
|
|
|
|
@Override
|
2014-02-11 22:55:03 +00:00
|
|
|
public void onChange(boolean selfChange) {
|
|
|
|
super.onChange(selfChange);
|
2014-05-22 07:36:00 +00:00
|
|
|
Intent intent = new Intent(getApplicationContext(),
|
|
|
|
XmppConnectionService.class);
|
2014-05-19 13:15:09 +00:00
|
|
|
intent.setAction(ACTION_MERGE_PHONE_CONTACTS);
|
|
|
|
startService(intent);
|
2014-02-11 22:55:03 +00:00
|
|
|
}
|
2014-02-10 14:24:34 +00:00
|
|
|
};
|
2014-02-03 17:38:47 +00:00
|
|
|
|
|
|
|
private final IBinder mBinder = new XmppConnectionBinder();
|
2014-02-01 14:07:20 +00:00
|
|
|
private OnMessagePacketReceived messageListener = new OnMessagePacketReceived() {
|
2014-02-03 17:38:47 +00:00
|
|
|
|
2014-02-01 14:07:20 +00:00
|
|
|
@Override
|
2014-02-03 17:38:47 +00:00
|
|
|
public void onMessagePacketReceived(Account account,
|
|
|
|
MessagePacket packet) {
|
2014-02-19 00:35:23 +00:00
|
|
|
Message message = null;
|
2014-03-08 04:59:31 +00:00
|
|
|
boolean notify = true;
|
2014-05-01 20:33:49 +00:00
|
|
|
if (getPreferences().getBoolean(
|
|
|
|
"notification_grace_period_after_carbon_received", true)) {
|
|
|
|
notify = (SystemClock.elapsedRealtime() - lastCarbonMessageReceived) > CARBON_GRACE_PERIOD;
|
2014-04-07 21:58:59 +00:00
|
|
|
}
|
|
|
|
|
2014-02-19 00:35:23 +00:00
|
|
|
if ((packet.getType() == MessagePacket.TYPE_CHAT)) {
|
2014-05-14 10:56:34 +00:00
|
|
|
String pgpBody = mMessageParser.getPgpBody(packet);
|
2014-02-27 23:22:56 +00:00
|
|
|
if (pgpBody != null) {
|
2014-05-14 10:56:34 +00:00
|
|
|
message = mMessageParser.parsePgpChat(pgpBody, packet,
|
|
|
|
account);
|
2014-03-08 04:59:31 +00:00
|
|
|
message.markUnread();
|
2014-05-01 20:33:49 +00:00
|
|
|
} else if ((packet.getBody() != null)
|
|
|
|
&& (packet.getBody().startsWith("?OTR"))) {
|
2014-05-14 10:56:34 +00:00
|
|
|
message = mMessageParser.parseOtrChat(packet, account);
|
2014-03-11 14:44:22 +00:00
|
|
|
if (message != null) {
|
2014-03-08 19:14:47 +00:00
|
|
|
message.markUnread();
|
|
|
|
}
|
2014-02-19 00:35:23 +00:00
|
|
|
} else if (packet.hasChild("body")) {
|
2014-05-14 10:56:34 +00:00
|
|
|
message = mMessageParser
|
|
|
|
.parsePlainTextChat(packet, account);
|
2014-03-08 04:59:31 +00:00
|
|
|
message.markUnread();
|
2014-02-19 00:35:23 +00:00
|
|
|
} else if (packet.hasChild("received")
|
|
|
|
|| (packet.hasChild("sent"))) {
|
2014-05-14 10:56:34 +00:00
|
|
|
message = mMessageParser
|
|
|
|
.parseCarbonMessage(packet, account);
|
2014-04-04 20:52:32 +00:00
|
|
|
if (message != null) {
|
|
|
|
if (message.getStatus() == Message.STATUS_SEND) {
|
2014-05-01 20:33:49 +00:00
|
|
|
lastCarbonMessageReceived = SystemClock
|
|
|
|
.elapsedRealtime();
|
2014-04-04 20:52:32 +00:00
|
|
|
notify = false;
|
|
|
|
message.getConversation().markRead();
|
|
|
|
} else {
|
|
|
|
message.markUnread();
|
|
|
|
}
|
2014-03-10 18:22:13 +00:00
|
|
|
}
|
2014-02-05 21:33:39 +00:00
|
|
|
}
|
2014-02-19 00:35:23 +00:00
|
|
|
|
|
|
|
} else if (packet.getType() == MessagePacket.TYPE_GROUPCHAT) {
|
2014-05-14 10:56:34 +00:00
|
|
|
message = mMessageParser.parseGroupchat(packet, account);
|
2014-02-19 00:35:23 +00:00
|
|
|
if (message != null) {
|
2014-03-08 04:59:31 +00:00
|
|
|
if (message.getStatus() == Message.STATUS_RECIEVED) {
|
|
|
|
message.markUnread();
|
2014-03-08 05:04:06 +00:00
|
|
|
} else {
|
|
|
|
message.getConversation().markRead();
|
|
|
|
notify = false;
|
2014-03-08 04:59:31 +00:00
|
|
|
}
|
2014-02-05 21:33:39 +00:00
|
|
|
}
|
2014-02-20 16:00:50 +00:00
|
|
|
} else if (packet.getType() == MessagePacket.TYPE_ERROR) {
|
2014-05-14 10:56:34 +00:00
|
|
|
mMessageParser.parseError(packet, account);
|
2014-04-11 07:13:56 +00:00
|
|
|
return;
|
2014-03-15 03:59:18 +00:00
|
|
|
} else if (packet.getType() == MessagePacket.TYPE_NORMAL) {
|
|
|
|
if (packet.hasChild("x")) {
|
|
|
|
Element x = packet.findChild("x");
|
|
|
|
if (x.hasChild("invite")) {
|
2014-03-19 15:16:40 +00:00
|
|
|
findOrCreateConversation(account, packet.getFrom(),
|
|
|
|
true);
|
2014-03-15 03:59:18 +00:00
|
|
|
if (convChangedListener != null) {
|
|
|
|
convChangedListener.onConversationListChanged();
|
|
|
|
}
|
2014-03-19 15:16:40 +00:00
|
|
|
Log.d(LOGTAG,
|
|
|
|
"invitation received to " + packet.getFrom());
|
2014-03-15 03:59:18 +00:00
|
|
|
}
|
2014-03-19 15:16:40 +00:00
|
|
|
|
2014-03-15 03:59:18 +00:00
|
|
|
} else {
|
2014-03-19 15:16:40 +00:00
|
|
|
// Log.d(LOGTAG, "unparsed message " + packet.toString());
|
2014-03-15 03:59:18 +00:00
|
|
|
}
|
2014-02-19 00:35:23 +00:00
|
|
|
}
|
2014-03-19 15:16:40 +00:00
|
|
|
if ((message == null) || (message.getBody() == null)) {
|
2014-02-19 00:35:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (packet.hasChild("delay")) {
|
|
|
|
try {
|
|
|
|
String stamp = packet.findChild("delay").getAttribute(
|
|
|
|
"stamp");
|
|
|
|
stamp = stamp.replace("Z", "+0000");
|
|
|
|
Date date = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ")
|
|
|
|
.parse(stamp);
|
|
|
|
message.setTime(date.getTime());
|
|
|
|
} catch (ParseException e) {
|
|
|
|
Log.d(LOGTAG, "error trying to parse date" + e.getMessage());
|
2014-02-11 14:34:24 +00:00
|
|
|
}
|
2014-02-19 00:35:23 +00:00
|
|
|
}
|
|
|
|
Conversation conversation = message.getConversation();
|
|
|
|
conversation.getMessages().add(message);
|
2014-02-20 16:00:50 +00:00
|
|
|
if (packet.getType() != MessagePacket.TYPE_ERROR) {
|
|
|
|
databaseBackend.createMessage(message);
|
|
|
|
}
|
2014-02-19 00:35:23 +00:00
|
|
|
if (convChangedListener != null) {
|
|
|
|
convChangedListener.onConversationListChanged();
|
|
|
|
} else {
|
2014-03-11 14:44:22 +00:00
|
|
|
UIHelper.updateNotification(getApplicationContext(),
|
2014-03-12 13:55:23 +00:00
|
|
|
getConversations(), message.getConversation(), notify);
|
2014-02-01 14:07:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2014-02-04 14:09:50 +00:00
|
|
|
private OnStatusChanged statusListener = new OnStatusChanged() {
|
2014-02-05 21:33:39 +00:00
|
|
|
|
2014-02-04 14:09:50 +00:00
|
|
|
@Override
|
|
|
|
public void onStatusChanged(Account account) {
|
|
|
|
if (accountChangedListener != null) {
|
|
|
|
accountChangedListener.onAccountListChangedListener();
|
|
|
|
}
|
2014-02-05 21:33:39 +00:00
|
|
|
if (account.getStatus() == Account.STATUS_ONLINE) {
|
2014-03-21 18:58:47 +00:00
|
|
|
List<Conversation> conversations = getConversations();
|
|
|
|
for (int i = 0; i < conversations.size(); ++i) {
|
|
|
|
if (conversations.get(i).getAccount() == account) {
|
|
|
|
sendUnsendMessages(conversations.get(i));
|
|
|
|
}
|
|
|
|
}
|
2014-03-11 14:44:22 +00:00
|
|
|
scheduleWakeupCall(PING_MAX_INTERVAL, true);
|
2014-03-06 02:30:03 +00:00
|
|
|
} else if (account.getStatus() == Account.STATUS_OFFLINE) {
|
|
|
|
if (!account.isOptionSet(Account.OPTION_DISABLED)) {
|
2014-03-11 14:44:22 +00:00
|
|
|
int timeToReconnect = mRandom.nextInt(50) + 10;
|
|
|
|
scheduleWakeupCall(timeToReconnect, false);
|
2014-03-06 02:30:03 +00:00
|
|
|
}
|
|
|
|
|
2014-03-13 16:29:22 +00:00
|
|
|
} else if (account.getStatus() == Account.STATUS_REGISTRATION_SUCCESSFULL) {
|
|
|
|
databaseBackend.updateAccount(account);
|
|
|
|
reconnectAccount(account, true);
|
2014-05-22 07:36:00 +00:00
|
|
|
} else if ((account.getStatus() != Account.STATUS_CONNECTING)
|
|
|
|
&& (account.getStatus() != Account.STATUS_NO_INTERNET)) {
|
2014-05-18 09:25:04 +00:00
|
|
|
int next = account.getXmppConnection().getTimeToNextAttempt();
|
|
|
|
Log.d(LOGTAG, account.getJid()
|
|
|
|
+ ": error connecting account. try again in " + next
|
|
|
|
+ "s for the "
|
|
|
|
+ (account.getXmppConnection().getAttempt() + 1)
|
|
|
|
+ " time");
|
|
|
|
scheduleWakeupCall(next, false);
|
2014-02-05 21:33:39 +00:00
|
|
|
}
|
2014-05-18 09:25:04 +00:00
|
|
|
UIHelper.showErrorNotification(getApplicationContext(),
|
|
|
|
getAccounts());
|
2014-02-04 14:09:50 +00:00
|
|
|
}
|
|
|
|
};
|
2014-02-08 23:47:11 +00:00
|
|
|
|
2014-02-07 01:57:36 +00:00
|
|
|
private OnPresencePacketReceived presenceListener = new OnPresencePacketReceived() {
|
2014-02-08 23:47:11 +00:00
|
|
|
|
2014-02-07 01:57:36 +00:00
|
|
|
@Override
|
2014-05-01 20:33:49 +00:00
|
|
|
public void onPresencePacketReceived(final Account account,
|
2014-02-08 23:47:11 +00:00
|
|
|
PresencePacket packet) {
|
2014-05-01 20:33:49 +00:00
|
|
|
if (packet.hasChild("x", "http://jabber.org/protocol/muc#user")) {
|
2014-03-19 15:16:40 +00:00
|
|
|
Conversation muc = findMuc(
|
|
|
|
packet.getAttribute("from").split("/")[0], account);
|
2014-03-11 14:44:22 +00:00
|
|
|
if (muc != null) {
|
2014-03-27 01:02:59 +00:00
|
|
|
muc.getMucOptions().processPacket(packet);
|
|
|
|
} else {
|
2014-05-01 20:33:49 +00:00
|
|
|
Log.d(LOGTAG, account.getJid()
|
|
|
|
+ ": could not find muc for received muc package "
|
|
|
|
+ packet.toString());
|
2014-03-27 01:02:59 +00:00
|
|
|
}
|
2014-05-01 20:33:49 +00:00
|
|
|
} else if (packet.hasChild("x", "http://jabber.org/protocol/muc")) {
|
|
|
|
Conversation muc = findMuc(
|
|
|
|
packet.getAttribute("from").split("/")[0], account);
|
2014-03-27 01:02:59 +00:00
|
|
|
if (muc != null) {
|
2014-05-01 20:33:49 +00:00
|
|
|
Log.d(LOGTAG,
|
|
|
|
account.getJid() + ": reading muc status packet "
|
|
|
|
+ packet.toString());
|
2014-03-04 03:36:19 +00:00
|
|
|
int error = muc.getMucOptions().getError();
|
2014-03-03 04:01:02 +00:00
|
|
|
muc.getMucOptions().processPacket(packet);
|
2014-03-11 14:44:22 +00:00
|
|
|
if ((muc.getMucOptions().getError() != error)
|
|
|
|
&& (convChangedListener != null)) {
|
|
|
|
Log.d(LOGTAG, "muc error status changed");
|
2014-03-03 04:01:02 +00:00
|
|
|
convChangedListener.onConversationListChanged();
|
|
|
|
}
|
|
|
|
}
|
2014-02-28 17:46:01 +00:00
|
|
|
} else {
|
|
|
|
String[] fromParts = packet.getAttribute("from").split("/");
|
|
|
|
String type = packet.getAttribute("type");
|
2014-03-19 15:16:40 +00:00
|
|
|
if (fromParts[0].equals(account.getJid())) {
|
2014-05-01 20:33:49 +00:00
|
|
|
if (fromParts.length == 2) {
|
2014-03-19 15:16:40 +00:00
|
|
|
if (type == null) {
|
2014-05-01 20:33:49 +00:00
|
|
|
account.updatePresence(fromParts[1], Presences
|
|
|
|
.parseShow(packet.findChild("show")));
|
2014-03-19 15:16:40 +00:00
|
|
|
} else if (type.equals("unavailable")) {
|
|
|
|
account.removePresence(fromParts[1]);
|
2014-03-18 13:35:19 +00:00
|
|
|
}
|
2014-03-19 15:16:40 +00:00
|
|
|
}
|
2014-05-01 20:33:49 +00:00
|
|
|
|
2014-03-19 15:16:40 +00:00
|
|
|
} else {
|
2014-05-19 13:15:09 +00:00
|
|
|
Contact contact = account.getRoster().getContact(
|
|
|
|
packet.getFrom());
|
2014-03-19 15:16:40 +00:00
|
|
|
if (type == null) {
|
|
|
|
if (fromParts.length == 2) {
|
2014-05-01 20:33:49 +00:00
|
|
|
contact.updatePresence(fromParts[1], Presences
|
|
|
|
.parseShow(packet.findChild("show")));
|
2014-03-19 15:16:40 +00:00
|
|
|
PgpEngine pgp = getPgpEngine();
|
|
|
|
if (pgp != null) {
|
2014-05-01 20:33:49 +00:00
|
|
|
Element x = packet.findChild("x",
|
|
|
|
"jabber:x:signed");
|
2014-03-27 01:02:59 +00:00
|
|
|
if (x != null) {
|
2014-05-01 20:33:49 +00:00
|
|
|
Element status = packet.findChild("status");
|
|
|
|
String msg;
|
|
|
|
if (status != null) {
|
|
|
|
msg = status.getContent();
|
|
|
|
} else {
|
|
|
|
msg = "";
|
2014-03-19 15:16:40 +00:00
|
|
|
}
|
2014-05-14 10:56:34 +00:00
|
|
|
contact.setPgpKeyId(pgp.fetchKeyId(account,
|
|
|
|
msg, x.getContent()));
|
2014-03-18 13:35:19 +00:00
|
|
|
}
|
2014-02-28 17:46:01 +00:00
|
|
|
}
|
2014-03-19 15:16:40 +00:00
|
|
|
} else {
|
2014-05-01 20:33:49 +00:00
|
|
|
// Log.d(LOGTAG,"presence without resource "+packet.toString());
|
2014-02-28 02:22:05 +00:00
|
|
|
}
|
2014-03-19 15:16:40 +00:00
|
|
|
} else if (type.equals("unavailable")) {
|
|
|
|
if (fromParts.length != 2) {
|
2014-04-16 17:14:20 +00:00
|
|
|
contact.clearPresences();
|
2014-03-19 15:16:40 +00:00
|
|
|
} else {
|
|
|
|
contact.removePresence(fromParts[1]);
|
|
|
|
}
|
|
|
|
} else if (type.equals("subscribe")) {
|
2014-05-01 20:33:49 +00:00
|
|
|
Log.d(LOGTAG, "received subscribe packet from "
|
|
|
|
+ packet.getFrom());
|
2014-05-19 13:15:09 +00:00
|
|
|
if (contact.getOption(Contact.Options.PREEMPTIVE_GRANT)) {
|
2014-05-01 20:33:49 +00:00
|
|
|
Log.d(LOGTAG, "preemptive grant; granting");
|
2014-03-19 15:16:40 +00:00
|
|
|
sendPresenceUpdatesTo(contact);
|
2014-05-19 13:15:09 +00:00
|
|
|
contact.setOption(Contact.Options.FROM);
|
|
|
|
contact.resetOption(Contact.Options.PREEMPTIVE_GRANT);
|
|
|
|
if ((contact.getOption(Contact.Options.ASKING))
|
|
|
|
&& (!contact.getOption(Contact.Options.TO))) {
|
2014-03-19 15:16:40 +00:00
|
|
|
requestPresenceUpdatesFrom(contact);
|
|
|
|
}
|
|
|
|
} else {
|
2014-05-20 08:48:07 +00:00
|
|
|
contact.setOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST);
|
2014-02-28 17:46:01 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-05-01 20:33:49 +00:00
|
|
|
// Log.d(LOGTAG, packet.toString());
|
2014-02-23 20:33:37 +00:00
|
|
|
}
|
2014-02-21 20:35:23 +00:00
|
|
|
}
|
2014-02-07 01:57:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2014-02-19 00:35:23 +00:00
|
|
|
|
|
|
|
private OnIqPacketReceived unknownIqListener = new OnIqPacketReceived() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onIqPacketReceived(Account account, IqPacket packet) {
|
2014-05-14 10:56:34 +00:00
|
|
|
if (packet.hasChild("query", "jabber:iq:roster")) {
|
2014-05-03 15:07:37 +00:00
|
|
|
String from = packet.getFrom();
|
2014-05-14 10:56:34 +00:00
|
|
|
if ((from == null) || (from.equals(account.getJid()))) {
|
2014-05-03 15:07:37 +00:00
|
|
|
Element query = packet.findChild("query");
|
2014-02-19 00:35:23 +00:00
|
|
|
processRosterItems(account, query);
|
2014-05-03 15:07:37 +00:00
|
|
|
} else {
|
2014-05-14 10:56:34 +00:00
|
|
|
Log.d(LOGTAG, "unauthorized roster push from: " + from);
|
2014-02-19 00:35:23 +00:00
|
|
|
}
|
2014-05-01 20:33:49 +00:00
|
|
|
} else if (packet
|
|
|
|
.hasChild("open", "http://jabber.org/protocol/ibb")
|
|
|
|
|| packet
|
|
|
|
.hasChild("data", "http://jabber.org/protocol/ibb")) {
|
|
|
|
XmppConnectionService.this.mJingleConnectionManager
|
|
|
|
.deliverIbbPacket(account, packet);
|
2014-05-14 10:56:34 +00:00
|
|
|
} else if (packet.hasChild("query",
|
|
|
|
"http://jabber.org/protocol/disco#info")) {
|
|
|
|
IqPacket iqResponse = packet
|
|
|
|
.generateRespone(IqPacket.TYPE_RESULT);
|
|
|
|
Element query = iqResponse.addChild("query",
|
|
|
|
"http://jabber.org/protocol/disco#info");
|
|
|
|
query.addChild("feature").setAttribute("var",
|
|
|
|
"urn:xmpp:jingle:1");
|
|
|
|
query.addChild("feature").setAttribute("var",
|
|
|
|
"urn:xmpp:jingle:apps:file-transfer:3");
|
|
|
|
query.addChild("feature").setAttribute("var",
|
|
|
|
"urn:xmpp:jingle:transports:s5b:1");
|
|
|
|
query.addChild("feature").setAttribute("var",
|
|
|
|
"urn:xmpp:jingle:transports:ibb:1");
|
2014-05-03 15:42:44 +00:00
|
|
|
account.getXmppConnection().sendIqPacket(iqResponse, null);
|
2014-04-13 09:32:45 +00:00
|
|
|
} else {
|
2014-05-14 10:56:34 +00:00
|
|
|
if ((packet.getType() == IqPacket.TYPE_GET)
|
|
|
|
|| (packet.getType() == IqPacket.TYPE_SET)) {
|
|
|
|
IqPacket response = packet
|
|
|
|
.generateRespone(IqPacket.TYPE_ERROR);
|
2014-05-03 15:42:44 +00:00
|
|
|
Element error = response.addChild("error");
|
2014-05-14 10:56:34 +00:00
|
|
|
error.setAttribute("type", "cancel");
|
|
|
|
error.addChild("feature-not-implemented",
|
|
|
|
"urn:ietf:params:xml:ns:xmpp-stanzas");
|
2014-05-03 15:42:44 +00:00
|
|
|
account.getXmppConnection().sendIqPacket(response, null);
|
|
|
|
}
|
2014-02-19 00:35:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2014-05-01 20:33:49 +00:00
|
|
|
|
2014-03-27 01:02:59 +00:00
|
|
|
private OnJinglePacketReceived jingleListener = new OnJinglePacketReceived() {
|
2014-05-01 20:33:49 +00:00
|
|
|
|
2014-03-27 01:02:59 +00:00
|
|
|
@Override
|
|
|
|
public void onJinglePacketReceived(Account account, JinglePacket packet) {
|
2014-04-10 12:12:08 +00:00
|
|
|
mJingleConnectionManager.deliverPacket(account, packet);
|
2014-03-27 01:02:59 +00:00
|
|
|
}
|
|
|
|
};
|
2014-02-19 00:35:23 +00:00
|
|
|
|
2014-02-27 23:22:56 +00:00
|
|
|
private OpenPgpServiceConnection pgpServiceConnection;
|
|
|
|
private PgpEngine mPgpEngine = null;
|
2014-03-11 14:44:22 +00:00
|
|
|
private Intent pingIntent;
|
|
|
|
private PendingIntent pendingPingIntent = null;
|
2014-03-23 13:15:14 +00:00
|
|
|
private WakeLock wakeLock;
|
2014-04-03 08:41:21 +00:00
|
|
|
private PowerManager pm;
|
2014-02-27 23:22:56 +00:00
|
|
|
|
|
|
|
public PgpEngine getPgpEngine() {
|
|
|
|
if (pgpServiceConnection.isBound()) {
|
|
|
|
if (this.mPgpEngine == null) {
|
|
|
|
this.mPgpEngine = new PgpEngine(new OpenPgpApi(
|
|
|
|
getApplicationContext(),
|
2014-05-14 10:56:34 +00:00
|
|
|
pgpServiceConnection.getService()), this);
|
2014-02-27 23:22:56 +00:00
|
|
|
}
|
|
|
|
return mPgpEngine;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-05 19:06:10 +00:00
|
|
|
public FileBackend getFileBackend() {
|
|
|
|
return this.fileBackend;
|
|
|
|
}
|
2014-05-01 20:33:49 +00:00
|
|
|
|
2014-05-14 10:56:34 +00:00
|
|
|
public Message attachImageToConversation(final Conversation conversation,
|
|
|
|
final Uri uri, final UiCallback callback) {
|
2014-05-12 12:59:46 +00:00
|
|
|
final Message message;
|
|
|
|
if (conversation.getNextEncryption() == Message.ENCRYPTION_PGP) {
|
2014-05-14 10:56:34 +00:00
|
|
|
message = new Message(conversation, "",
|
|
|
|
Message.ENCRYPTION_DECRYPTED);
|
2014-05-12 12:59:46 +00:00
|
|
|
} else {
|
|
|
|
message = new Message(conversation, "", Message.ENCRYPTION_NONE);
|
|
|
|
}
|
|
|
|
message.setPresence(conversation.getNextPresence());
|
2014-05-06 19:34:30 +00:00
|
|
|
message.setType(Message.TYPE_IMAGE);
|
2014-05-08 09:53:00 +00:00
|
|
|
message.setStatus(Message.STATUS_OFFERED);
|
2014-04-15 13:19:02 +00:00
|
|
|
new Thread(new Runnable() {
|
2014-05-01 20:33:49 +00:00
|
|
|
|
2014-04-15 13:19:02 +00:00
|
|
|
@Override
|
|
|
|
public void run() {
|
2014-05-14 16:32:58 +00:00
|
|
|
try {
|
|
|
|
getFileBackend().copyImageToPrivateStorage(message, uri);
|
2014-05-12 12:59:46 +00:00
|
|
|
if (conversation.getNextEncryption() == Message.ENCRYPTION_PGP) {
|
|
|
|
getPgpEngine().encrypt(message, callback);
|
|
|
|
} else {
|
|
|
|
callback.success();
|
|
|
|
}
|
2014-05-14 16:32:58 +00:00
|
|
|
} catch (FileBackend.ImageCopyException e) {
|
|
|
|
callback.error(e.getResId());
|
2014-04-15 13:19:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}).start();
|
2014-05-06 19:34:30 +00:00
|
|
|
return message;
|
|
|
|
}
|
2014-05-14 10:56:34 +00:00
|
|
|
|
2014-03-15 03:59:18 +00:00
|
|
|
protected Conversation findMuc(String name, Account account) {
|
2014-03-11 14:44:22 +00:00
|
|
|
for (Conversation conversation : this.conversations) {
|
2014-03-19 15:16:40 +00:00
|
|
|
if (conversation.getContactJid().split("/")[0].equals(name)
|
|
|
|
&& (conversation.getAccount() == account)) {
|
2014-03-03 04:01:02 +00:00
|
|
|
return conversation;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2014-02-19 00:35:23 +00:00
|
|
|
private void processRosterItems(Account account, Element elements) {
|
2014-02-28 01:58:15 +00:00
|
|
|
String version = elements.getAttribute("ver");
|
|
|
|
if (version != null) {
|
2014-05-19 13:15:09 +00:00
|
|
|
account.getRoster().setVersion(version);
|
2014-02-28 01:58:15 +00:00
|
|
|
}
|
2014-02-19 00:35:23 +00:00
|
|
|
for (Element item : elements.getChildren()) {
|
|
|
|
if (item.getName().equals("item")) {
|
|
|
|
String jid = item.getAttribute("jid");
|
2014-05-19 13:15:09 +00:00
|
|
|
String name = item.getAttribute("name");
|
2014-02-19 00:35:23 +00:00
|
|
|
String subscription = item.getAttribute("subscription");
|
2014-05-19 13:15:09 +00:00
|
|
|
Contact contact = account.getRoster().getContact(jid);
|
|
|
|
contact.setServerName(name);
|
|
|
|
if (subscription.equals("remove")) {
|
|
|
|
contact.resetOption(Contact.Options.IN_ROSTER);
|
2014-02-19 00:35:23 +00:00
|
|
|
} else {
|
2014-05-19 13:15:09 +00:00
|
|
|
contact.setOption(Contact.Options.IN_ROSTER);
|
|
|
|
contact.parseSubscriptionFromElement(item);
|
2014-02-19 00:35:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-03 17:38:47 +00:00
|
|
|
public class XmppConnectionBinder extends Binder {
|
|
|
|
public XmppConnectionService getService() {
|
|
|
|
return XmppConnectionService.this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int onStartCommand(Intent intent, int flags, int startId) {
|
2014-03-23 13:15:14 +00:00
|
|
|
this.wakeLock.acquire();
|
2014-05-22 07:36:00 +00:00
|
|
|
if ((intent != null)
|
|
|
|
&& (ACTION_MERGE_PHONE_CONTACTS.equals(intent.getAction()))) {
|
2014-05-19 13:15:09 +00:00
|
|
|
mergePhoneContactsWithRoster();
|
2014-05-21 20:22:36 +00:00
|
|
|
return START_STICKY;
|
2014-05-22 07:36:00 +00:00
|
|
|
} else if ((intent != null)
|
|
|
|
&& (Intent.ACTION_SHUTDOWN.equals(intent.getAction()))) {
|
2014-05-21 20:22:36 +00:00
|
|
|
logoutAndSave();
|
|
|
|
return START_NOT_STICKY;
|
2014-05-19 13:15:09 +00:00
|
|
|
}
|
2014-03-11 14:44:22 +00:00
|
|
|
ConnectivityManager cm = (ConnectivityManager) getApplicationContext()
|
|
|
|
.getSystemService(Context.CONNECTIVITY_SERVICE);
|
2014-03-06 02:57:29 +00:00
|
|
|
NetworkInfo activeNetwork = cm.getActiveNetworkInfo();
|
|
|
|
boolean isConnected = activeNetwork != null
|
|
|
|
&& activeNetwork.isConnected();
|
2014-03-11 14:44:22 +00:00
|
|
|
|
2014-02-03 17:38:47 +00:00
|
|
|
for (Account account : accounts) {
|
2014-03-11 14:44:22 +00:00
|
|
|
if (!account.isOptionSet(Account.OPTION_DISABLED)) {
|
|
|
|
if (!isConnected) {
|
|
|
|
account.setStatus(Account.STATUS_NO_INTERNET);
|
2014-03-19 15:16:40 +00:00
|
|
|
if (statusListener != null) {
|
2014-03-11 15:49:42 +00:00
|
|
|
statusListener.onStatusChanged(account);
|
|
|
|
}
|
2014-03-08 19:14:47 +00:00
|
|
|
} else {
|
2014-03-11 14:44:22 +00:00
|
|
|
if (account.getStatus() == Account.STATUS_NO_INTERNET) {
|
|
|
|
account.setStatus(Account.STATUS_OFFLINE);
|
2014-03-19 15:16:40 +00:00
|
|
|
if (statusListener != null) {
|
2014-03-11 15:49:42 +00:00
|
|
|
statusListener.onStatusChanged(account);
|
|
|
|
}
|
2014-03-11 14:44:22 +00:00
|
|
|
}
|
|
|
|
if (account.getStatus() == Account.STATUS_ONLINE) {
|
|
|
|
long lastReceived = account.getXmppConnection().lastPaketReceived;
|
|
|
|
long lastSent = account.getXmppConnection().lastPingSent;
|
|
|
|
if (lastSent - lastReceived >= PING_TIMEOUT * 1000) {
|
|
|
|
Log.d(LOGTAG, account.getJid() + ": ping timeout");
|
2014-03-19 15:16:40 +00:00
|
|
|
this.reconnectAccount(account, true);
|
2014-03-11 14:44:22 +00:00
|
|
|
} else if (SystemClock.elapsedRealtime() - lastReceived >= PING_MIN_INTERVAL * 1000) {
|
|
|
|
account.getXmppConnection().sendPing();
|
2014-03-19 15:16:40 +00:00
|
|
|
account.getXmppConnection().lastPingSent = SystemClock
|
|
|
|
.elapsedRealtime();
|
2014-03-11 14:44:22 +00:00
|
|
|
this.scheduleWakeupCall(2, false);
|
|
|
|
}
|
|
|
|
} else if (account.getStatus() == Account.STATUS_OFFLINE) {
|
|
|
|
if (account.getXmppConnection() == null) {
|
|
|
|
account.setXmppConnection(this
|
|
|
|
.createConnection(account));
|
|
|
|
}
|
2014-03-19 15:16:40 +00:00
|
|
|
account.getXmppConnection().lastPingSent = SystemClock
|
|
|
|
.elapsedRealtime();
|
2014-03-11 14:44:22 +00:00
|
|
|
new Thread(account.getXmppConnection()).start();
|
2014-03-19 15:16:40 +00:00
|
|
|
} else if ((account.getStatus() == Account.STATUS_CONNECTING)
|
|
|
|
&& ((SystemClock.elapsedRealtime() - account
|
|
|
|
.getXmppConnection().lastConnect) / 1000 >= CONNECT_TIMEOUT)) {
|
|
|
|
Log.d(LOGTAG, account.getJid()
|
|
|
|
+ ": time out during connect reconnecting");
|
|
|
|
reconnectAccount(account, true);
|
2014-03-11 14:44:22 +00:00
|
|
|
} else {
|
2014-05-18 09:25:04 +00:00
|
|
|
if (account.getXmppConnection().getTimeToNextAttempt() <= 0) {
|
|
|
|
reconnectAccount(account, true);
|
|
|
|
}
|
2014-03-08 19:14:47 +00:00
|
|
|
}
|
2014-03-19 15:16:40 +00:00
|
|
|
// in any case. reschedule wakup call
|
2014-03-11 14:44:22 +00:00
|
|
|
this.scheduleWakeupCall(PING_MAX_INTERVAL, true);
|
|
|
|
}
|
|
|
|
if (accountChangedListener != null) {
|
|
|
|
accountChangedListener.onAccountListChangedListener();
|
2014-03-06 02:30:03 +00:00
|
|
|
}
|
2014-02-03 17:38:47 +00:00
|
|
|
}
|
|
|
|
}
|
2014-03-23 13:15:14 +00:00
|
|
|
if (wakeLock.isHeld()) {
|
|
|
|
wakeLock.release();
|
|
|
|
}
|
2014-02-03 17:38:47 +00:00
|
|
|
return START_STICKY;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreate() {
|
2014-03-09 12:21:28 +00:00
|
|
|
ExceptionHelper.init(getApplicationContext());
|
2014-05-01 20:33:49 +00:00
|
|
|
this.databaseBackend = DatabaseBackend
|
|
|
|
.getInstance(getApplicationContext());
|
2014-04-05 19:06:10 +00:00
|
|
|
this.fileBackend = new FileBackend(getApplicationContext());
|
2014-02-03 17:38:47 +00:00
|
|
|
this.accounts = databaseBackend.getAccounts();
|
2014-02-11 22:55:03 +00:00
|
|
|
|
2014-05-19 13:15:09 +00:00
|
|
|
for (Account account : this.accounts) {
|
|
|
|
this.databaseBackend.readRoster(account.getRoster());
|
|
|
|
}
|
|
|
|
this.mergePhoneContactsWithRoster();
|
2014-03-27 01:02:59 +00:00
|
|
|
this.getConversations();
|
2014-05-01 20:33:49 +00:00
|
|
|
|
2014-02-11 22:55:03 +00:00
|
|
|
getContentResolver().registerContentObserver(
|
|
|
|
ContactsContract.Contacts.CONTENT_URI, true, contactObserver);
|
2014-02-27 23:22:56 +00:00
|
|
|
this.pgpServiceConnection = new OpenPgpServiceConnection(
|
|
|
|
getApplicationContext(), "org.sufficientlysecure.keychain");
|
|
|
|
this.pgpServiceConnection.bindToService();
|
2014-03-11 14:44:22 +00:00
|
|
|
|
2014-04-03 08:41:21 +00:00
|
|
|
this.pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
|
2014-03-23 13:15:14 +00:00
|
|
|
this.wakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
|
2014-04-03 08:41:21 +00:00
|
|
|
"XmppConnectionService");
|
2014-02-03 17:38:47 +00:00
|
|
|
}
|
2014-02-05 21:33:39 +00:00
|
|
|
|
2014-02-13 22:40:08 +00:00
|
|
|
@Override
|
|
|
|
public void onDestroy() {
|
|
|
|
super.onDestroy();
|
2014-05-19 19:05:17 +00:00
|
|
|
this.logoutAndSave();
|
|
|
|
}
|
2014-05-22 07:36:00 +00:00
|
|
|
|
2014-05-19 19:05:17 +00:00
|
|
|
@Override
|
|
|
|
public void onTaskRemoved(Intent rootIntent) {
|
|
|
|
super.onTaskRemoved(rootIntent);
|
|
|
|
this.logoutAndSave();
|
|
|
|
}
|
2014-05-22 07:36:00 +00:00
|
|
|
|
2014-05-19 19:05:17 +00:00
|
|
|
private void logoutAndSave() {
|
2014-02-13 22:40:08 +00:00
|
|
|
for (Account account : accounts) {
|
2014-05-19 13:15:09 +00:00
|
|
|
databaseBackend.writeRoster(account.getRoster());
|
2014-02-13 22:40:08 +00:00
|
|
|
if (account.getXmppConnection() != null) {
|
2014-05-21 20:22:36 +00:00
|
|
|
disconnect(account, false);
|
2014-02-13 22:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-21 20:22:36 +00:00
|
|
|
Context context = getApplicationContext();
|
2014-05-22 07:36:00 +00:00
|
|
|
AlarmManager alarmManager = (AlarmManager) context
|
|
|
|
.getSystemService(Context.ALARM_SERVICE);
|
2014-05-21 20:22:36 +00:00
|
|
|
Intent intent = new Intent(context, EventReceiver.class);
|
|
|
|
alarmManager.cancel(PendingIntent.getBroadcast(context, 0, intent, 0));
|
2014-05-22 07:36:00 +00:00
|
|
|
Log.d(LOGTAG, "good bye");
|
2014-05-21 20:22:36 +00:00
|
|
|
stopSelf();
|
2014-02-13 22:40:08 +00:00
|
|
|
}
|
2014-03-11 14:44:22 +00:00
|
|
|
|
|
|
|
protected void scheduleWakeupCall(int seconds, boolean ping) {
|
|
|
|
long timeToWake = SystemClock.elapsedRealtime() + seconds * 1000;
|
2014-03-06 02:30:03 +00:00
|
|
|
Context context = getApplicationContext();
|
2014-03-11 14:44:22 +00:00
|
|
|
AlarmManager alarmManager = (AlarmManager) context
|
|
|
|
.getSystemService(Context.ALARM_SERVICE);
|
2014-03-19 15:16:40 +00:00
|
|
|
|
2014-03-08 19:14:47 +00:00
|
|
|
if (ping) {
|
2014-03-19 15:16:40 +00:00
|
|
|
if (this.pingIntent == null) {
|
2014-03-11 14:44:22 +00:00
|
|
|
this.pingIntent = new Intent(context, EventReceiver.class);
|
|
|
|
this.pingIntent.setAction("ping");
|
|
|
|
this.pingIntent.putExtra("time", timeToWake);
|
|
|
|
this.pendingPingIntent = PendingIntent.getBroadcast(context, 0,
|
|
|
|
this.pingIntent, 0);
|
2014-03-19 15:16:40 +00:00
|
|
|
alarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP,
|
|
|
|
timeToWake, pendingPingIntent);
|
2014-03-11 14:44:22 +00:00
|
|
|
} else {
|
|
|
|
long scheduledTime = this.pingIntent.getLongExtra("time", 0);
|
2014-03-19 15:16:40 +00:00
|
|
|
if (scheduledTime < SystemClock.elapsedRealtime()
|
|
|
|
|| (scheduledTime > timeToWake)) {
|
2014-03-11 14:44:22 +00:00
|
|
|
this.pingIntent.putExtra("time", timeToWake);
|
|
|
|
alarmManager.cancel(this.pendingPingIntent);
|
2014-03-19 15:16:40 +00:00
|
|
|
this.pendingPingIntent = PendingIntent.getBroadcast(
|
|
|
|
context, 0, this.pingIntent, 0);
|
|
|
|
alarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP,
|
|
|
|
timeToWake, pendingPingIntent);
|
2014-03-11 14:44:22 +00:00
|
|
|
}
|
|
|
|
}
|
2014-03-08 19:14:47 +00:00
|
|
|
} else {
|
2014-03-11 14:44:22 +00:00
|
|
|
Intent intent = new Intent(context, EventReceiver.class);
|
|
|
|
intent.setAction("ping_check");
|
|
|
|
PendingIntent alarmIntent = PendingIntent.getBroadcast(context, 0,
|
|
|
|
intent, 0);
|
2014-03-19 15:16:40 +00:00
|
|
|
alarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, timeToWake,
|
|
|
|
alarmIntent);
|
2014-03-08 19:14:47 +00:00
|
|
|
}
|
2014-03-11 14:44:22 +00:00
|
|
|
|
2014-03-06 02:30:03 +00:00
|
|
|
}
|
2014-02-13 22:40:08 +00:00
|
|
|
|
2014-02-04 14:09:50 +00:00
|
|
|
public XmppConnection createConnection(Account account) {
|
2014-04-13 16:09:40 +00:00
|
|
|
SharedPreferences sharedPref = getPreferences();
|
2014-05-01 20:33:49 +00:00
|
|
|
account.setResource(sharedPref.getString("resource", "mobile")
|
|
|
|
.toLowerCase(Locale.getDefault()));
|
2014-04-03 08:41:21 +00:00
|
|
|
XmppConnection connection = new XmppConnection(account, this.pm);
|
2014-02-05 21:33:39 +00:00
|
|
|
connection.setOnMessagePacketReceivedListener(this.messageListener);
|
|
|
|
connection.setOnStatusChangedListener(this.statusListener);
|
2014-02-07 01:57:36 +00:00
|
|
|
connection.setOnPresencePacketReceivedListener(this.presenceListener);
|
2014-02-19 00:35:23 +00:00
|
|
|
connection
|
|
|
|
.setOnUnregisteredIqPacketReceivedListener(this.unknownIqListener);
|
2014-03-27 01:02:59 +00:00
|
|
|
connection.setOnJinglePacketReceivedListener(this.jingleListener);
|
2014-03-11 14:44:22 +00:00
|
|
|
connection
|
|
|
|
.setOnTLSExceptionReceivedListener(new OnTLSExceptionReceived() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTLSExceptionReceived(String fingerprint,
|
|
|
|
Account account) {
|
|
|
|
Log.d(LOGTAG, "tls exception arrived in service");
|
|
|
|
if (tlsException != null) {
|
|
|
|
tlsException.onTLSExceptionReceived(fingerprint,
|
|
|
|
account);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-03-14 19:43:54 +00:00
|
|
|
connection.setOnBindListener(new OnBindListener() {
|
2014-03-19 15:16:40 +00:00
|
|
|
|
2014-03-14 19:43:54 +00:00
|
|
|
@Override
|
2014-05-19 13:15:09 +00:00
|
|
|
public void onBind(final Account account) {
|
|
|
|
account.getRoster().clearPresences();
|
2014-03-19 15:16:40 +00:00
|
|
|
account.clearPresences(); // self presences
|
2014-05-19 13:15:09 +00:00
|
|
|
fetchRosterFromServer(account);
|
2014-05-18 11:23:26 +00:00
|
|
|
sendPresence(account);
|
2014-03-15 14:13:35 +00:00
|
|
|
connectMultiModeConversations(account);
|
|
|
|
if (convChangedListener != null) {
|
|
|
|
convChangedListener.onConversationListChanged();
|
|
|
|
}
|
2014-03-14 19:43:54 +00:00
|
|
|
}
|
|
|
|
});
|
2014-02-04 14:09:50 +00:00
|
|
|
return connection;
|
|
|
|
}
|
2014-02-19 00:35:23 +00:00
|
|
|
|
2014-03-21 21:14:52 +00:00
|
|
|
synchronized public void sendMessage(Message message, String presence) {
|
2014-02-27 23:22:56 +00:00
|
|
|
Account account = message.getConversation().getAccount();
|
2014-02-13 22:40:08 +00:00
|
|
|
Conversation conv = message.getConversation();
|
2014-04-11 07:13:56 +00:00
|
|
|
MessagePacket packet = null;
|
2014-02-13 22:40:08 +00:00
|
|
|
boolean saveInDb = false;
|
|
|
|
boolean addToConversation = false;
|
2014-04-11 07:13:56 +00:00
|
|
|
boolean send = false;
|
2014-02-11 22:55:03 +00:00
|
|
|
if (account.getStatus() == Account.STATUS_ONLINE) {
|
2014-04-07 18:05:45 +00:00
|
|
|
if (message.getType() == Message.TYPE_IMAGE) {
|
|
|
|
mJingleConnectionManager.createNewConnection(message);
|
2014-02-13 22:40:08 +00:00
|
|
|
} else {
|
2014-04-07 18:05:45 +00:00
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_OTR) {
|
|
|
|
if (!conv.hasValidOtrSession()) {
|
|
|
|
// starting otr session. messages will be send later
|
2014-05-01 20:33:49 +00:00
|
|
|
conv.startOtrSession(getApplicationContext(), presence,
|
|
|
|
true);
|
2014-04-07 18:05:45 +00:00
|
|
|
} else if (conv.getOtrSession().getSessionStatus() == SessionStatus.ENCRYPTED) {
|
|
|
|
// otr session aleary exists, creating message packet
|
|
|
|
// accordingly
|
|
|
|
packet = prepareMessagePacket(account, message,
|
|
|
|
conv.getOtrSession());
|
2014-04-11 07:13:56 +00:00
|
|
|
send = true;
|
2014-04-07 18:05:45 +00:00
|
|
|
message.setStatus(Message.STATUS_SEND);
|
|
|
|
}
|
|
|
|
saveInDb = true;
|
|
|
|
addToConversation = true;
|
|
|
|
} else if (message.getEncryption() == Message.ENCRYPTION_PGP) {
|
|
|
|
message.getConversation().endOtrIfNeeded();
|
2014-05-16 11:42:20 +00:00
|
|
|
packet = prepareMessagePacket(account, message, null);
|
2014-04-07 18:05:45 +00:00
|
|
|
packet.setBody("This is an XEP-0027 encryted message");
|
2014-05-01 20:33:49 +00:00
|
|
|
packet.addChild("x", "jabber:x:encrypted").setContent(
|
|
|
|
message.getEncryptedBody());
|
2014-02-13 22:40:08 +00:00
|
|
|
message.setStatus(Message.STATUS_SEND);
|
2014-04-07 18:05:45 +00:00
|
|
|
message.setEncryption(Message.ENCRYPTION_DECRYPTED);
|
2014-02-13 22:40:08 +00:00
|
|
|
saveInDb = true;
|
|
|
|
addToConversation = true;
|
2014-04-11 07:13:56 +00:00
|
|
|
send = true;
|
2014-04-07 18:05:45 +00:00
|
|
|
} else {
|
|
|
|
message.getConversation().endOtrIfNeeded();
|
|
|
|
// don't encrypt
|
|
|
|
if (message.getConversation().getMode() == Conversation.MODE_SINGLE) {
|
|
|
|
message.setStatus(Message.STATUS_SEND);
|
|
|
|
}
|
|
|
|
packet = prepareMessagePacket(account, message, null);
|
2014-04-11 07:13:56 +00:00
|
|
|
send = true;
|
2014-05-16 20:46:15 +00:00
|
|
|
saveInDb = true;
|
|
|
|
addToConversation = true;
|
2014-02-11 22:55:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2014-05-16 11:42:20 +00:00
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_PGP) {
|
|
|
|
String pgpBody = message.getEncryptedBody();
|
|
|
|
String decryptedBody = message.getBody();
|
|
|
|
message.setBody(pgpBody);
|
|
|
|
databaseBackend.createMessage(message);
|
|
|
|
message.setEncryption(Message.ENCRYPTION_DECRYPTED);
|
|
|
|
message.setBody(decryptedBody);
|
|
|
|
addToConversation = true;
|
|
|
|
} else {
|
|
|
|
saveInDb = true;
|
|
|
|
addToConversation = true;
|
|
|
|
}
|
2014-02-13 22:40:08 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
if (saveInDb) {
|
2014-02-09 00:00:23 +00:00
|
|
|
databaseBackend.createMessage(message);
|
2014-02-13 22:40:08 +00:00
|
|
|
}
|
|
|
|
if (addToConversation) {
|
|
|
|
conv.getMessages().add(message);
|
|
|
|
if (convChangedListener != null) {
|
2014-02-11 22:55:03 +00:00
|
|
|
convChangedListener.onConversationListChanged();
|
|
|
|
}
|
|
|
|
}
|
2014-05-01 20:33:49 +00:00
|
|
|
if ((send) && (packet != null)) {
|
2014-04-11 07:13:56 +00:00
|
|
|
account.getXmppConnection().sendMessagePacket(packet);
|
|
|
|
}
|
2014-02-13 22:40:08 +00:00
|
|
|
|
2014-02-11 22:55:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void sendUnsendMessages(Conversation conversation) {
|
|
|
|
for (int i = 0; i < conversation.getMessages().size(); ++i) {
|
2014-05-16 11:42:20 +00:00
|
|
|
if (conversation.getMessages().get(i).getStatus() == Message.STATUS_UNSEND) {
|
|
|
|
resendMessage(conversation.getMessages().get(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-18 09:25:04 +00:00
|
|
|
|
2014-05-16 11:42:20 +00:00
|
|
|
private void resendMessage(Message message) {
|
|
|
|
Account account = message.getConversation().getAccount();
|
|
|
|
MessagePacket packet = null;
|
|
|
|
if (message.getEncryption() == Message.ENCRYPTION_NONE) {
|
2014-05-18 09:25:04 +00:00
|
|
|
packet = prepareMessagePacket(account, message, null);
|
2014-05-16 11:42:20 +00:00
|
|
|
} else if (message.getEncryption() == Message.ENCRYPTION_DECRYPTED) {
|
|
|
|
packet = prepareMessagePacket(account, message, null);
|
|
|
|
packet.setBody("This is an XEP-0027 encryted message");
|
2014-05-18 09:25:04 +00:00
|
|
|
if (message.getEncryptedBody() == null) {
|
2014-05-16 11:42:20 +00:00
|
|
|
markMessage(message, Message.STATUS_SEND_FAILED);
|
|
|
|
return;
|
2014-02-11 22:55:03 +00:00
|
|
|
}
|
2014-05-16 11:42:20 +00:00
|
|
|
packet.addChild("x", "jabber:x:encrypted").setContent(
|
|
|
|
message.getEncryptedBody());
|
|
|
|
} else if (message.getEncryption() == Message.ENCRYPTION_PGP) {
|
|
|
|
packet = prepareMessagePacket(account, message, null);
|
|
|
|
packet.setBody("This is an XEP-0027 encryted message");
|
|
|
|
packet.addChild("x", "jabber:x:encrypted").setContent(
|
|
|
|
message.getBody());
|
|
|
|
}
|
2014-05-18 09:25:04 +00:00
|
|
|
if (packet != null) {
|
2014-05-16 11:42:20 +00:00
|
|
|
account.getXmppConnection().sendMessagePacket(packet);
|
|
|
|
markMessage(message, Message.STATUS_SEND);
|
2014-02-09 00:00:23 +00:00
|
|
|
}
|
2014-02-11 22:55:03 +00:00
|
|
|
}
|
|
|
|
|
2014-02-19 00:35:23 +00:00
|
|
|
public MessagePacket prepareMessagePacket(Account account, Message message,
|
|
|
|
Session otrSession) {
|
2014-02-04 14:09:50 +00:00
|
|
|
MessagePacket packet = new MessagePacket();
|
2014-02-05 21:33:39 +00:00
|
|
|
if (message.getConversation().getMode() == Conversation.MODE_SINGLE) {
|
|
|
|
packet.setType(MessagePacket.TYPE_CHAT);
|
2014-02-13 22:40:08 +00:00
|
|
|
if (otrSession != null) {
|
|
|
|
try {
|
|
|
|
packet.setBody(otrSession.transformSending(message
|
|
|
|
.getBody()));
|
|
|
|
} catch (OtrException e) {
|
|
|
|
Log.d(LOGTAG,
|
|
|
|
account.getJid()
|
|
|
|
+ ": could not encrypt message to "
|
|
|
|
+ message.getCounterpart());
|
|
|
|
}
|
2014-05-01 20:33:49 +00:00
|
|
|
packet.addChild("private", "urn:xmpp:carbons:2");
|
|
|
|
packet.addChild("no-copy", "urn:xmpp:hints");
|
2014-02-19 00:35:23 +00:00
|
|
|
packet.setTo(otrSession.getSessionID().getAccountID() + "/"
|
|
|
|
+ otrSession.getSessionID().getUserID());
|
2014-02-13 22:40:08 +00:00
|
|
|
packet.setFrom(account.getFullJid());
|
|
|
|
} else {
|
|
|
|
packet.setBody(message.getBody());
|
|
|
|
packet.setTo(message.getCounterpart());
|
|
|
|
packet.setFrom(account.getJid());
|
|
|
|
}
|
2014-02-05 21:33:39 +00:00
|
|
|
} else if (message.getConversation().getMode() == Conversation.MODE_MULTI) {
|
|
|
|
packet.setType(MessagePacket.TYPE_GROUPCHAT);
|
2014-02-13 22:40:08 +00:00
|
|
|
packet.setBody(message.getBody());
|
2014-03-03 04:01:02 +00:00
|
|
|
packet.setTo(message.getCounterpart().split("/")[0]);
|
2014-02-13 22:40:08 +00:00
|
|
|
packet.setFrom(account.getJid());
|
2014-02-05 21:33:39 +00:00
|
|
|
}
|
2014-04-11 07:13:56 +00:00
|
|
|
packet.setId(message.getUuid());
|
2014-02-11 22:55:03 +00:00
|
|
|
return packet;
|
2014-02-03 17:38:47 +00:00
|
|
|
}
|
2014-02-08 23:47:11 +00:00
|
|
|
|
2014-05-19 13:15:09 +00:00
|
|
|
public void fetchRosterFromServer(Account account) {
|
2014-02-19 00:35:23 +00:00
|
|
|
IqPacket iqPacket = new IqPacket(IqPacket.TYPE_GET);
|
2014-03-08 01:06:00 +00:00
|
|
|
if (!"".equals(account.getRosterVersion())) {
|
2014-03-11 14:44:22 +00:00
|
|
|
Log.d(LOGTAG, account.getJid() + ": fetching roster version "
|
|
|
|
+ account.getRosterVersion());
|
2014-03-08 01:06:00 +00:00
|
|
|
} else {
|
2014-03-11 14:44:22 +00:00
|
|
|
Log.d(LOGTAG, account.getJid() + ": fetching roster");
|
2014-03-08 01:06:00 +00:00
|
|
|
}
|
2014-05-01 20:33:49 +00:00
|
|
|
iqPacket.query("jabber:iq:roster").setAttribute("ver",
|
|
|
|
account.getRosterVersion());
|
2014-02-19 00:35:23 +00:00
|
|
|
account.getXmppConnection().sendIqPacket(iqPacket,
|
|
|
|
new OnIqPacketReceived() {
|
2014-02-05 21:33:39 +00:00
|
|
|
|
2014-02-10 02:34:00 +00:00
|
|
|
@Override
|
2014-02-19 00:35:23 +00:00
|
|
|
public void onIqPacketReceived(final Account account,
|
|
|
|
IqPacket packet) {
|
|
|
|
Element roster = packet.findChild("query");
|
|
|
|
if (roster != null) {
|
2014-05-19 13:15:09 +00:00
|
|
|
account.getRoster().markAllAsNotInRoster();
|
2014-02-19 00:35:23 +00:00
|
|
|
processRosterItems(account, roster);
|
|
|
|
}
|
2014-02-10 02:34:00 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-05-19 13:15:09 +00:00
|
|
|
private void mergePhoneContactsWithRoster() {
|
2014-02-19 00:35:23 +00:00
|
|
|
PhoneHelper.loadPhoneContacts(getApplicationContext(),
|
2014-02-10 02:34:00 +00:00
|
|
|
new OnPhoneContactsLoadedListener() {
|
|
|
|
@Override
|
2014-05-19 13:15:09 +00:00
|
|
|
public void onPhoneContactsLoaded(List<Bundle> phoneContacts) {
|
2014-05-22 10:57:47 +00:00
|
|
|
for(Account account : accounts) {
|
|
|
|
account.getRoster().clearSystemAccounts();
|
|
|
|
}
|
2014-05-19 13:15:09 +00:00
|
|
|
for (Bundle phoneContact : phoneContacts) {
|
|
|
|
for (Account account : accounts) {
|
|
|
|
String jid = phoneContact.getString("jid");
|
|
|
|
Contact contact = account.getRoster()
|
|
|
|
.getContact(jid);
|
2014-02-10 02:34:00 +00:00
|
|
|
String systemAccount = phoneContact
|
|
|
|
.getInt("phoneid")
|
|
|
|
+ "#"
|
|
|
|
+ phoneContact.getString("lookup");
|
|
|
|
contact.setSystemAccount(systemAccount);
|
|
|
|
contact.setPhotoUri(phoneContact
|
|
|
|
.getString("photouri"));
|
2014-05-19 13:15:09 +00:00
|
|
|
contact.setSystemName(phoneContact
|
2014-02-10 02:34:00 +00:00
|
|
|
.getString("displayname"));
|
2014-02-04 14:09:50 +00:00
|
|
|
}
|
2014-02-10 02:34:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-02-03 17:38:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public List<Conversation> getConversations() {
|
|
|
|
if (this.conversations == null) {
|
|
|
|
Hashtable<String, Account> accountLookupTable = new Hashtable<String, Account>();
|
|
|
|
for (Account account : this.accounts) {
|
|
|
|
accountLookupTable.put(account.getUuid(), account);
|
|
|
|
}
|
|
|
|
this.conversations = databaseBackend
|
|
|
|
.getConversations(Conversation.STATUS_AVAILABLE);
|
|
|
|
for (Conversation conv : this.conversations) {
|
2014-02-10 14:24:34 +00:00
|
|
|
Account account = accountLookupTable.get(conv.getAccountUuid());
|
|
|
|
conv.setAccount(account);
|
2014-02-10 21:45:59 +00:00
|
|
|
conv.setMessages(databaseBackend.getMessages(conv, 50));
|
2014-02-03 17:38:47 +00:00
|
|
|
}
|
|
|
|
}
|
2014-03-19 15:16:40 +00:00
|
|
|
Collections.sort(this.conversations, new Comparator<Conversation>() {
|
|
|
|
@Override
|
|
|
|
public int compare(Conversation lhs, Conversation rhs) {
|
|
|
|
return (int) (rhs.getLatestMessage().getTimeSent() - lhs
|
|
|
|
.getLatestMessage().getTimeSent());
|
|
|
|
}
|
|
|
|
});
|
2014-02-03 17:38:47 +00:00
|
|
|
return this.conversations;
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<Account> getAccounts() {
|
|
|
|
return this.accounts;
|
|
|
|
}
|
2014-02-11 22:55:03 +00:00
|
|
|
|
|
|
|
public Conversation findOrCreateConversation(Account account, String jid,
|
|
|
|
boolean muc) {
|
2014-02-03 17:38:47 +00:00
|
|
|
for (Conversation conv : this.getConversations()) {
|
|
|
|
if ((conv.getAccount().equals(account))
|
2014-03-03 04:01:02 +00:00
|
|
|
&& (conv.getContactJid().split("/")[0].equals(jid))) {
|
2014-02-03 17:38:47 +00:00
|
|
|
return conv;
|
|
|
|
}
|
|
|
|
}
|
2014-02-11 22:55:03 +00:00
|
|
|
Conversation conversation = databaseBackend.findConversation(account,
|
|
|
|
jid);
|
2014-02-03 17:38:47 +00:00
|
|
|
if (conversation != null) {
|
|
|
|
conversation.setStatus(Conversation.STATUS_AVAILABLE);
|
|
|
|
conversation.setAccount(account);
|
2014-02-07 15:50:29 +00:00
|
|
|
if (muc) {
|
|
|
|
conversation.setMode(Conversation.MODE_MULTI);
|
|
|
|
} else {
|
|
|
|
conversation.setMode(Conversation.MODE_SINGLE);
|
|
|
|
}
|
2014-03-19 15:16:40 +00:00
|
|
|
conversation.setMessages(databaseBackend.getMessages(conversation,
|
|
|
|
50));
|
2014-02-03 17:38:47 +00:00
|
|
|
this.databaseBackend.updateConversation(conversation);
|
|
|
|
} else {
|
2014-02-10 14:24:34 +00:00
|
|
|
String conversationName;
|
2014-05-19 13:15:09 +00:00
|
|
|
Contact contact = account.getRoster().getContact(jid);
|
2014-02-11 22:55:03 +00:00
|
|
|
if (contact != null) {
|
2014-02-10 14:24:34 +00:00
|
|
|
conversationName = contact.getDisplayName();
|
|
|
|
} else {
|
|
|
|
conversationName = jid.split("@")[0];
|
|
|
|
}
|
2014-02-07 15:50:29 +00:00
|
|
|
if (muc) {
|
2014-02-11 22:55:03 +00:00
|
|
|
conversation = new Conversation(conversationName, account, jid,
|
2014-02-07 15:50:29 +00:00
|
|
|
Conversation.MODE_MULTI);
|
|
|
|
} else {
|
2014-02-10 14:24:34 +00:00
|
|
|
conversation = new Conversation(conversationName, account, jid,
|
2014-02-07 15:50:29 +00:00
|
|
|
Conversation.MODE_SINGLE);
|
|
|
|
}
|
2014-02-03 17:38:47 +00:00
|
|
|
this.databaseBackend.createConversation(conversation);
|
|
|
|
}
|
|
|
|
this.conversations.add(conversation);
|
2014-05-01 20:33:49 +00:00
|
|
|
if ((account.getStatus() == Account.STATUS_ONLINE)
|
|
|
|
&& (conversation.getMode() == Conversation.MODE_MULTI)) {
|
2014-03-27 01:02:59 +00:00
|
|
|
joinMuc(conversation);
|
|
|
|
}
|
2014-02-03 17:38:47 +00:00
|
|
|
if (this.convChangedListener != null) {
|
|
|
|
this.convChangedListener.onConversationListChanged();
|
|
|
|
}
|
|
|
|
return conversation;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void archiveConversation(Conversation conversation) {
|
2014-02-13 22:40:08 +00:00
|
|
|
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
|
|
|
leaveMuc(conversation);
|
|
|
|
} else {
|
2014-03-12 18:56:06 +00:00
|
|
|
conversation.endOtrIfNeeded();
|
2014-02-13 22:40:08 +00:00
|
|
|
}
|
2014-02-03 17:38:47 +00:00
|
|
|
this.databaseBackend.updateConversation(conversation);
|
|
|
|
this.conversations.remove(conversation);
|
|
|
|
if (this.convChangedListener != null) {
|
|
|
|
this.convChangedListener.onConversationListChanged();
|
|
|
|
}
|
|
|
|
}
|
2014-05-01 20:33:49 +00:00
|
|
|
|
2014-04-16 21:11:37 +00:00
|
|
|
public void clearConversationHistory(Conversation conversation) {
|
2014-04-20 18:48:16 +00:00
|
|
|
this.databaseBackend.deleteMessagesInConversation(conversation);
|
|
|
|
this.fileBackend.removeFiles(conversation);
|
|
|
|
conversation.getMessages().clear();
|
|
|
|
if (this.convChangedListener != null) {
|
|
|
|
this.convChangedListener.onConversationListChanged();
|
|
|
|
}
|
2014-04-16 21:11:37 +00:00
|
|
|
}
|
2014-02-03 17:38:47 +00:00
|
|
|
|
|
|
|
public int getConversationCount() {
|
|
|
|
return this.databaseBackend.getConversationCount();
|
|
|
|
}
|
2014-01-28 18:21:54 +00:00
|
|
|
|
|
|
|
public void createAccount(Account account) {
|
|
|
|
databaseBackend.createAccount(account);
|
2014-02-04 14:09:50 +00:00
|
|
|
this.accounts.add(account);
|
2014-03-13 02:52:41 +00:00
|
|
|
this.reconnectAccount(account, false);
|
2014-02-05 21:33:39 +00:00
|
|
|
if (accountChangedListener != null)
|
|
|
|
accountChangedListener.onAccountListChangedListener();
|
2014-01-28 18:21:54 +00:00
|
|
|
}
|
2014-02-23 20:33:37 +00:00
|
|
|
|
2014-01-28 18:21:54 +00:00
|
|
|
public void updateAccount(Account account) {
|
2014-04-03 13:13:43 +00:00
|
|
|
this.statusListener.onStatusChanged(account);
|
2014-01-28 18:21:54 +00:00
|
|
|
databaseBackend.updateAccount(account);
|
2014-03-19 15:16:40 +00:00
|
|
|
reconnectAccount(account, false);
|
2014-05-17 08:03:15 +00:00
|
|
|
if (accountChangedListener != null) {
|
2014-02-05 21:33:39 +00:00
|
|
|
accountChangedListener.onAccountListChangedListener();
|
2014-05-17 08:03:15 +00:00
|
|
|
}
|
2014-05-18 09:25:04 +00:00
|
|
|
UIHelper.showErrorNotification(getApplicationContext(), getAccounts());
|
2014-01-28 18:21:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void deleteAccount(Account account) {
|
2014-02-13 22:40:08 +00:00
|
|
|
if (account.getXmppConnection() != null) {
|
2014-03-13 20:45:38 +00:00
|
|
|
this.disconnect(account, true);
|
2014-02-04 14:09:50 +00:00
|
|
|
}
|
2014-01-28 18:21:54 +00:00
|
|
|
databaseBackend.deleteAccount(account);
|
2014-02-11 22:55:03 +00:00
|
|
|
this.accounts.remove(account);
|
2014-05-17 08:03:15 +00:00
|
|
|
if (accountChangedListener != null) {
|
2014-02-05 21:33:39 +00:00
|
|
|
accountChangedListener.onAccountListChangedListener();
|
2014-05-17 08:03:15 +00:00
|
|
|
}
|
2014-05-18 09:25:04 +00:00
|
|
|
UIHelper.showErrorNotification(getApplicationContext(), getAccounts());
|
2014-01-28 18:21:54 +00:00
|
|
|
}
|
2014-02-03 17:38:47 +00:00
|
|
|
|
|
|
|
public void setOnConversationListChangedListener(
|
|
|
|
OnConversationListChangedListener listener) {
|
2014-02-01 14:07:20 +00:00
|
|
|
this.convChangedListener = listener;
|
2014-03-29 19:29:03 +00:00
|
|
|
this.convChangedListenerCount++;
|
2014-02-01 14:07:20 +00:00
|
|
|
}
|
2014-02-03 17:38:47 +00:00
|
|
|
|
2014-02-01 14:07:20 +00:00
|
|
|
public void removeOnConversationListChangedListener() {
|
2014-03-29 19:29:03 +00:00
|
|
|
this.convChangedListenerCount--;
|
2014-05-01 20:33:49 +00:00
|
|
|
if (this.convChangedListenerCount == 0) {
|
2014-03-29 19:29:03 +00:00
|
|
|
this.convChangedListener = null;
|
|
|
|
}
|
2014-02-01 14:07:20 +00:00
|
|
|
}
|
2014-02-05 21:33:39 +00:00
|
|
|
|
|
|
|
public void setOnAccountListChangedListener(
|
|
|
|
OnAccountListChangedListener listener) {
|
2014-02-04 14:09:50 +00:00
|
|
|
this.accountChangedListener = listener;
|
|
|
|
}
|
2014-02-05 21:33:39 +00:00
|
|
|
|
2014-02-04 14:09:50 +00:00
|
|
|
public void removeOnAccountListChangedListener() {
|
|
|
|
this.accountChangedListener = null;
|
|
|
|
}
|
2014-02-05 21:33:39 +00:00
|
|
|
|
|
|
|
public void connectMultiModeConversations(Account account) {
|
|
|
|
List<Conversation> conversations = getConversations();
|
|
|
|
for (int i = 0; i < conversations.size(); i++) {
|
|
|
|
Conversation conversation = conversations.get(i);
|
|
|
|
if ((conversation.getMode() == Conversation.MODE_MULTI)
|
|
|
|
&& (conversation.getAccount() == account)) {
|
2014-02-13 22:40:08 +00:00
|
|
|
joinMuc(conversation);
|
2014-02-05 21:33:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-02-08 23:47:11 +00:00
|
|
|
|
2014-02-13 22:40:08 +00:00
|
|
|
public void joinMuc(Conversation conversation) {
|
2014-03-03 04:01:02 +00:00
|
|
|
String[] mucParts = conversation.getContactJid().split("/");
|
|
|
|
String muc;
|
|
|
|
String nick;
|
|
|
|
if (mucParts.length == 2) {
|
|
|
|
muc = mucParts[0];
|
|
|
|
nick = mucParts[1];
|
|
|
|
} else {
|
|
|
|
muc = mucParts[0];
|
|
|
|
nick = conversation.getAccount().getUsername();
|
|
|
|
}
|
2014-02-07 15:50:29 +00:00
|
|
|
PresencePacket packet = new PresencePacket();
|
2014-03-11 14:44:22 +00:00
|
|
|
packet.setAttribute("to", muc + "/" + nick);
|
2014-02-07 15:50:29 +00:00
|
|
|
Element x = new Element("x");
|
|
|
|
x.setAttribute("xmlns", "http://jabber.org/protocol/muc");
|
2014-02-11 22:55:03 +00:00
|
|
|
if (conversation.getMessages().size() != 0) {
|
2014-02-16 15:32:15 +00:00
|
|
|
long lastMsgTime = conversation.getLatestMessage().getTimeSent();
|
2014-02-19 00:35:23 +00:00
|
|
|
long diff = (System.currentTimeMillis() - lastMsgTime) / 1000 - 1;
|
2014-03-20 14:49:53 +00:00
|
|
|
x.addChild("history").setAttribute("seconds", diff + "");
|
2014-02-11 14:34:24 +00:00
|
|
|
}
|
2014-02-07 15:50:29 +00:00
|
|
|
packet.addChild(x);
|
2014-02-13 22:40:08 +00:00
|
|
|
conversation.getAccount().getXmppConnection()
|
|
|
|
.sendPresencePacket(packet);
|
2014-02-07 15:50:29 +00:00
|
|
|
}
|
2014-03-11 14:44:22 +00:00
|
|
|
|
2014-03-04 03:09:15 +00:00
|
|
|
private OnRenameListener renameListener = null;
|
2014-03-11 14:44:22 +00:00
|
|
|
|
2014-03-04 03:09:15 +00:00
|
|
|
public void setOnRenameListener(OnRenameListener listener) {
|
|
|
|
this.renameListener = listener;
|
|
|
|
}
|
2014-03-11 14:44:22 +00:00
|
|
|
|
2014-03-04 03:09:15 +00:00
|
|
|
public void renameInMuc(final Conversation conversation, final String nick) {
|
2014-03-03 04:01:02 +00:00
|
|
|
final MucOptions options = conversation.getMucOptions();
|
|
|
|
if (options.online()) {
|
|
|
|
options.setOnRenameListener(new OnRenameListener() {
|
2014-03-11 14:44:22 +00:00
|
|
|
|
2014-03-03 04:01:02 +00:00
|
|
|
@Override
|
2014-03-04 03:09:15 +00:00
|
|
|
public void onRename(boolean success) {
|
2014-03-11 14:44:22 +00:00
|
|
|
if (renameListener != null) {
|
2014-03-04 03:09:15 +00:00
|
|
|
renameListener.onRename(success);
|
|
|
|
}
|
|
|
|
if (success) {
|
2014-05-14 10:56:34 +00:00
|
|
|
String jid = conversation.getContactJid().split("/")[0]
|
|
|
|
+ "/" + nick;
|
2014-05-01 20:33:49 +00:00
|
|
|
conversation.setContactJid(jid);
|
2014-03-04 03:09:15 +00:00
|
|
|
databaseBackend.updateConversation(conversation);
|
|
|
|
}
|
2014-03-03 04:01:02 +00:00
|
|
|
}
|
|
|
|
});
|
2014-03-19 14:05:01 +00:00
|
|
|
options.flagAboutToRename();
|
2014-03-03 04:01:02 +00:00
|
|
|
PresencePacket packet = new PresencePacket();
|
2014-03-11 14:44:22 +00:00
|
|
|
packet.setAttribute("to",
|
|
|
|
conversation.getContactJid().split("/")[0] + "/" + nick);
|
2014-03-04 03:09:15 +00:00
|
|
|
packet.setAttribute("from", conversation.getAccount().getFullJid());
|
2014-03-11 14:44:22 +00:00
|
|
|
|
|
|
|
conversation.getAccount().getXmppConnection()
|
2014-03-19 14:05:01 +00:00
|
|
|
.sendPresencePacket(packet, null);
|
2014-03-03 04:01:02 +00:00
|
|
|
} else {
|
2014-03-11 14:44:22 +00:00
|
|
|
String jid = conversation.getContactJid().split("/")[0] + "/"
|
|
|
|
+ nick;
|
2014-03-03 04:01:02 +00:00
|
|
|
conversation.setContactJid(jid);
|
|
|
|
databaseBackend.updateConversation(conversation);
|
|
|
|
if (conversation.getAccount().getStatus() == Account.STATUS_ONLINE) {
|
|
|
|
joinMuc(conversation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-02-05 21:33:39 +00:00
|
|
|
|
2014-02-13 22:40:08 +00:00
|
|
|
public void leaveMuc(Conversation conversation) {
|
2014-03-04 03:36:19 +00:00
|
|
|
PresencePacket packet = new PresencePacket();
|
2014-05-01 20:33:49 +00:00
|
|
|
packet.setAttribute("to", conversation.getContactJid().split("/")[0]
|
|
|
|
+ "/" + conversation.getMucOptions().getNick());
|
2014-03-04 03:36:19 +00:00
|
|
|
packet.setAttribute("from", conversation.getAccount().getFullJid());
|
2014-03-11 14:44:22 +00:00
|
|
|
packet.setAttribute("type", "unavailable");
|
2014-05-01 20:33:49 +00:00
|
|
|
Log.d(LOGTAG, "send leaving muc " + packet);
|
2014-03-11 14:44:22 +00:00
|
|
|
conversation.getAccount().getXmppConnection()
|
|
|
|
.sendPresencePacket(packet);
|
2014-03-03 04:01:02 +00:00
|
|
|
conversation.getMucOptions().setOffline();
|
2014-02-13 22:40:08 +00:00
|
|
|
}
|
2014-02-05 21:33:39 +00:00
|
|
|
|
2014-03-12 21:31:50 +00:00
|
|
|
public void disconnect(Account account, boolean force) {
|
2014-03-19 15:16:40 +00:00
|
|
|
if ((account.getStatus() == Account.STATUS_ONLINE)
|
|
|
|
|| (account.getStatus() == Account.STATUS_DISABLED)) {
|
2014-03-16 13:12:30 +00:00
|
|
|
if (!force) {
|
|
|
|
List<Conversation> conversations = getConversations();
|
|
|
|
for (int i = 0; i < conversations.size(); i++) {
|
|
|
|
Conversation conversation = conversations.get(i);
|
|
|
|
if (conversation.getAccount() == account) {
|
|
|
|
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
|
|
|
leaveMuc(conversation);
|
|
|
|
} else {
|
|
|
|
conversation.endOtrIfNeeded();
|
|
|
|
}
|
2014-02-13 22:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-12 21:31:50 +00:00
|
|
|
account.getXmppConnection().disconnect(force);
|
2014-03-10 18:22:13 +00:00
|
|
|
}
|
2014-02-05 21:33:39 +00:00
|
|
|
}
|
2014-02-08 23:47:11 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public IBinder onBind(Intent intent) {
|
|
|
|
return mBinder;
|
|
|
|
}
|
2014-02-16 15:32:15 +00:00
|
|
|
|
2014-02-27 23:22:56 +00:00
|
|
|
public void updateMessage(Message message) {
|
|
|
|
databaseBackend.updateMessage(message);
|
|
|
|
}
|
|
|
|
|
2014-02-20 16:00:50 +00:00
|
|
|
public void createContact(Contact contact) {
|
2014-04-13 16:09:40 +00:00
|
|
|
SharedPreferences sharedPref = getPreferences();
|
2014-02-23 20:33:37 +00:00
|
|
|
boolean autoGrant = sharedPref.getBoolean("grant_new_contacts", true);
|
|
|
|
if (autoGrant) {
|
2014-05-19 13:15:09 +00:00
|
|
|
contact.setOption(Contact.Options.PREEMPTIVE_GRANT);
|
|
|
|
contact.setOption(Contact.Options.ASKING);
|
2014-02-23 20:33:37 +00:00
|
|
|
}
|
2014-05-19 13:15:09 +00:00
|
|
|
pushContactToServer(contact);
|
|
|
|
}
|
2014-05-22 07:36:00 +00:00
|
|
|
|
2014-05-19 13:15:09 +00:00
|
|
|
public void pushContactToServer(Contact contact) {
|
|
|
|
Account account = contact.getAccount();
|
2014-05-21 20:22:36 +00:00
|
|
|
if (account.getStatus() == Account.STATUS_ONLINE) {
|
|
|
|
IqPacket iq = new IqPacket(IqPacket.TYPE_SET);
|
|
|
|
iq.query("jabber:iq:roster").addChild(contact.asElement());
|
|
|
|
account.getXmppConnection().sendIqPacket(iq, null);
|
|
|
|
contact.resetOption(Contact.Options.DIRTY_PUSH);
|
2014-05-22 07:36:00 +00:00
|
|
|
if (contact.getOption(Contact.Options.ASKING)) {
|
|
|
|
requestPresenceUpdatesFrom(contact);
|
|
|
|
}
|
|
|
|
if (contact.getOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST)) {
|
|
|
|
Log.d("xmppService", "contact had pending subscription");
|
|
|
|
sendPresenceUpdatesTo(contact);
|
|
|
|
}
|
|
|
|
contact.resetOption(Contact.Options.DIRTY_PUSH);
|
2014-05-21 20:22:36 +00:00
|
|
|
} else {
|
|
|
|
contact.setOption(Contact.Options.DIRTY_PUSH);
|
|
|
|
}
|
2014-05-19 13:15:09 +00:00
|
|
|
}
|
2014-05-22 07:36:00 +00:00
|
|
|
|
2014-05-19 13:15:09 +00:00
|
|
|
public void deleteContactOnServer(Contact contact) {
|
|
|
|
Account account = contact.getAccount();
|
2014-05-22 07:36:00 +00:00
|
|
|
if (account.getStatus() == Account.STATUS_ONLINE) {
|
|
|
|
IqPacket iq = new IqPacket(IqPacket.TYPE_SET);
|
|
|
|
Element item = iq.query("jabber:iq:roster").addChild("item");
|
|
|
|
item.setAttribute("jid", contact.getJid());
|
|
|
|
item.setAttribute("subscription", "remove");
|
|
|
|
account.getXmppConnection().sendIqPacket(iq, null);
|
|
|
|
contact.resetOption(Contact.Options.DIRTY_DELETE);
|
|
|
|
} else {
|
|
|
|
contact.setOption(Contact.Options.DIRTY_DELETE);
|
|
|
|
}
|
2014-02-20 16:00:50 +00:00
|
|
|
}
|
2014-02-21 20:35:23 +00:00
|
|
|
|
|
|
|
public void requestPresenceUpdatesFrom(Contact contact) {
|
|
|
|
PresencePacket packet = new PresencePacket();
|
|
|
|
packet.setAttribute("type", "subscribe");
|
|
|
|
packet.setAttribute("to", contact.getJid());
|
2014-02-23 20:33:37 +00:00
|
|
|
packet.setAttribute("from", contact.getAccount().getJid());
|
2014-02-21 20:35:23 +00:00
|
|
|
contact.getAccount().getXmppConnection().sendPresencePacket(packet);
|
|
|
|
}
|
2014-02-23 20:33:37 +00:00
|
|
|
|
2014-02-21 20:35:23 +00:00
|
|
|
public void stopPresenceUpdatesFrom(Contact contact) {
|
|
|
|
PresencePacket packet = new PresencePacket();
|
|
|
|
packet.setAttribute("type", "unsubscribe");
|
|
|
|
packet.setAttribute("to", contact.getJid());
|
2014-02-23 20:33:37 +00:00
|
|
|
packet.setAttribute("from", contact.getAccount().getJid());
|
2014-02-21 20:35:23 +00:00
|
|
|
contact.getAccount().getXmppConnection().sendPresencePacket(packet);
|
|
|
|
}
|
2014-02-23 20:33:37 +00:00
|
|
|
|
2014-02-21 20:35:23 +00:00
|
|
|
public void stopPresenceUpdatesTo(Contact contact) {
|
|
|
|
PresencePacket packet = new PresencePacket();
|
|
|
|
packet.setAttribute("type", "unsubscribed");
|
|
|
|
packet.setAttribute("to", contact.getJid());
|
2014-02-23 20:33:37 +00:00
|
|
|
packet.setAttribute("from", contact.getAccount().getJid());
|
2014-02-21 20:35:23 +00:00
|
|
|
contact.getAccount().getXmppConnection().sendPresencePacket(packet);
|
|
|
|
}
|
2014-02-23 20:33:37 +00:00
|
|
|
|
2014-02-21 20:35:23 +00:00
|
|
|
public void sendPresenceUpdatesTo(Contact contact) {
|
|
|
|
PresencePacket packet = new PresencePacket();
|
|
|
|
packet.setAttribute("type", "subscribed");
|
|
|
|
packet.setAttribute("to", contact.getJid());
|
2014-02-23 20:33:37 +00:00
|
|
|
packet.setAttribute("from", contact.getAccount().getJid());
|
2014-02-21 20:35:23 +00:00
|
|
|
contact.getAccount().getXmppConnection().sendPresencePacket(packet);
|
2014-05-20 08:48:07 +00:00
|
|
|
contact.resetOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST);
|
2014-02-21 20:35:23 +00:00
|
|
|
}
|
2014-03-11 14:44:22 +00:00
|
|
|
|
2014-05-18 11:23:26 +00:00
|
|
|
public void sendPresence(Account account) {
|
2014-02-27 23:22:56 +00:00
|
|
|
PresencePacket packet = new PresencePacket();
|
|
|
|
packet.setAttribute("from", account.getFullJid());
|
2014-05-18 11:23:26 +00:00
|
|
|
String sig = account.getPgpSignature();
|
2014-05-19 13:15:09 +00:00
|
|
|
if (sig != null) {
|
2014-05-18 11:23:26 +00:00
|
|
|
packet.addChild("status").setContent("online");
|
2014-05-19 13:15:09 +00:00
|
|
|
packet.addChild("x", "jabber:x:signed").setContent(sig);
|
2014-05-18 11:23:26 +00:00
|
|
|
}
|
2014-02-27 23:22:56 +00:00
|
|
|
account.getXmppConnection().sendPresencePacket(packet);
|
|
|
|
}
|
|
|
|
|
2014-03-03 04:01:02 +00:00
|
|
|
public void updateConversation(Conversation conversation) {
|
|
|
|
this.databaseBackend.updateConversation(conversation);
|
|
|
|
}
|
2014-03-05 14:41:14 +00:00
|
|
|
|
2014-03-07 13:24:33 +00:00
|
|
|
public void removeOnTLSExceptionReceivedListener() {
|
|
|
|
this.tlsException = null;
|
|
|
|
}
|
|
|
|
|
2014-03-19 15:16:40 +00:00
|
|
|
public void reconnectAccount(final Account account, final boolean force) {
|
2014-03-10 18:22:13 +00:00
|
|
|
new Thread(new Runnable() {
|
2014-03-11 14:44:22 +00:00
|
|
|
|
2014-03-10 18:22:13 +00:00
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
if (account.getXmppConnection() != null) {
|
2014-03-12 21:31:50 +00:00
|
|
|
disconnect(account, force);
|
2014-03-10 18:22:13 +00:00
|
|
|
}
|
|
|
|
if (!account.isOptionSet(Account.OPTION_DISABLED)) {
|
2014-03-11 14:44:22 +00:00
|
|
|
if (account.getXmppConnection() == null) {
|
2014-03-10 18:22:13 +00:00
|
|
|
account.setXmppConnection(createConnection(account));
|
|
|
|
}
|
|
|
|
Thread thread = new Thread(account.getXmppConnection());
|
|
|
|
thread.start();
|
2014-03-19 15:16:40 +00:00
|
|
|
scheduleWakeupCall((int) (CONNECT_TIMEOUT * 1.2), false);
|
2014-03-08 19:14:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}).start();
|
|
|
|
}
|
2014-03-14 21:40:56 +00:00
|
|
|
|
2014-03-14 22:32:48 +00:00
|
|
|
public void sendConversationSubject(Conversation conversation,
|
|
|
|
String subject) {
|
|
|
|
MessagePacket packet = new MessagePacket();
|
|
|
|
packet.setType(MessagePacket.TYPE_GROUPCHAT);
|
|
|
|
packet.setTo(conversation.getContactJid().split("/")[0]);
|
|
|
|
Element subjectChild = new Element("subject");
|
|
|
|
subjectChild.setContent(subject);
|
|
|
|
packet.addChild(subjectChild);
|
|
|
|
packet.setFrom(conversation.getAccount().getJid());
|
|
|
|
Account account = conversation.getAccount();
|
|
|
|
if (account.getStatus() == Account.STATUS_ONLINE) {
|
|
|
|
account.getXmppConnection().sendMessagePacket(packet);
|
|
|
|
}
|
|
|
|
}
|
2014-03-15 03:59:18 +00:00
|
|
|
|
|
|
|
public void inviteToConference(Conversation conversation,
|
|
|
|
List<Contact> contacts) {
|
2014-03-19 15:16:40 +00:00
|
|
|
for (Contact contact : contacts) {
|
2014-03-15 03:59:18 +00:00
|
|
|
MessagePacket packet = new MessagePacket();
|
|
|
|
packet.setTo(conversation.getContactJid().split("/")[0]);
|
|
|
|
packet.setFrom(conversation.getAccount().getFullJid());
|
|
|
|
Element x = new Element("x");
|
|
|
|
x.setAttribute("xmlns", "http://jabber.org/protocol/muc#user");
|
|
|
|
Element invite = new Element("invite");
|
|
|
|
invite.setAttribute("to", contact.getJid());
|
|
|
|
x.addChild(invite);
|
|
|
|
packet.addChild(x);
|
2014-03-19 15:16:40 +00:00
|
|
|
Log.d(LOGTAG, packet.toString());
|
|
|
|
conversation.getAccount().getXmppConnection()
|
|
|
|
.sendMessagePacket(packet);
|
2014-03-15 03:59:18 +00:00
|
|
|
}
|
2014-03-19 15:16:40 +00:00
|
|
|
|
2014-03-15 03:59:18 +00:00
|
|
|
}
|
2014-05-01 20:33:49 +00:00
|
|
|
|
|
|
|
public boolean markMessage(Account account, String recipient, String uuid,
|
|
|
|
int status) {
|
|
|
|
for (Conversation conversation : getConversations()) {
|
|
|
|
if (conversation.getContactJid().equals(recipient)
|
|
|
|
&& conversation.getAccount().equals(account)) {
|
2014-05-16 20:46:15 +00:00
|
|
|
return markMessage(conversation, uuid, status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2014-05-18 09:25:04 +00:00
|
|
|
|
|
|
|
public boolean markMessage(Conversation conversation, String uuid,
|
|
|
|
int status) {
|
2014-05-16 20:46:15 +00:00
|
|
|
for (Message message : conversation.getMessages()) {
|
|
|
|
if (message.getUuid().equals(uuid)) {
|
|
|
|
markMessage(message, status);
|
|
|
|
return true;
|
2014-04-11 07:13:56 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-16 20:46:15 +00:00
|
|
|
return false;
|
2014-04-11 07:13:56 +00:00
|
|
|
}
|
2014-05-01 20:33:49 +00:00
|
|
|
|
2014-04-11 07:13:56 +00:00
|
|
|
public void markMessage(Message message, int status) {
|
|
|
|
message.setStatus(status);
|
|
|
|
databaseBackend.updateMessage(message);
|
2014-05-01 20:33:49 +00:00
|
|
|
if (convChangedListener != null) {
|
2014-04-13 09:32:45 +00:00
|
|
|
convChangedListener.onConversationListChanged();
|
|
|
|
}
|
2014-04-11 07:13:56 +00:00
|
|
|
}
|
2014-05-01 20:33:49 +00:00
|
|
|
|
2014-04-13 16:09:40 +00:00
|
|
|
public SharedPreferences getPreferences() {
|
2014-05-01 20:33:49 +00:00
|
|
|
return PreferenceManager
|
|
|
|
.getDefaultSharedPreferences(getApplicationContext());
|
2014-04-13 16:09:40 +00:00
|
|
|
}
|
2014-05-14 10:56:34 +00:00
|
|
|
|
2014-05-06 19:34:30 +00:00
|
|
|
public void updateUi(Conversation conversation, boolean notify) {
|
|
|
|
if (convChangedListener != null) {
|
|
|
|
convChangedListener.onConversationListChanged();
|
|
|
|
} else {
|
2014-05-14 10:56:34 +00:00
|
|
|
UIHelper.updateNotification(getApplicationContext(),
|
|
|
|
getConversations(), conversation, notify);
|
2014-05-06 19:34:30 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-22 07:36:00 +00:00
|
|
|
|
2014-05-19 13:15:09 +00:00
|
|
|
public Account findAccountByJid(String accountJid) {
|
|
|
|
for (Account account : this.accounts) {
|
|
|
|
if (account.getJid().equals(accountJid)) {
|
|
|
|
return account;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2014-04-07 21:58:59 +00:00
|
|
|
}
|