2016-02-12 10:39:27 +00:00
|
|
|
package eu.siacs.conversations.services;
|
|
|
|
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
import com.google.android.gms.common.ConnectionResult;
|
|
|
|
import com.google.android.gms.common.GoogleApiAvailability;
|
2018-05-19 18:05:45 +00:00
|
|
|
import com.google.firebase.iid.FirebaseInstanceId;
|
2019-06-25 16:15:51 +00:00
|
|
|
import com.google.firebase.iid.InstanceIdResult;
|
2016-02-12 10:39:27 +00:00
|
|
|
|
|
|
|
import eu.siacs.conversations.Config;
|
2018-05-20 14:43:10 +00:00
|
|
|
import eu.siacs.conversations.R;
|
2016-02-12 10:39:27 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
2019-06-25 16:15:51 +00:00
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
2018-05-12 15:23:37 +00:00
|
|
|
import eu.siacs.conversations.utils.PhoneHelper;
|
2016-02-13 13:20:07 +00:00
|
|
|
import eu.siacs.conversations.xml.Element;
|
2018-02-25 13:31:31 +00:00
|
|
|
import eu.siacs.conversations.xml.Namespace;
|
2019-06-25 16:15:51 +00:00
|
|
|
import eu.siacs.conversations.xmpp.OnIqPacketReceived;
|
2016-02-14 14:36:37 +00:00
|
|
|
import eu.siacs.conversations.xmpp.XmppConnection;
|
2016-02-13 13:20:07 +00:00
|
|
|
import eu.siacs.conversations.xmpp.forms.Data;
|
2016-02-12 10:39:27 +00:00
|
|
|
import eu.siacs.conversations.xmpp.stanzas.IqPacket;
|
2018-03-08 15:27:33 +00:00
|
|
|
import rocks.xmpp.addr.Jid;
|
2016-02-12 10:39:27 +00:00
|
|
|
|
|
|
|
public class PushManagementService {
|
|
|
|
|
2019-06-25 16:15:51 +00:00
|
|
|
protected final XmppConnectionService mXmppConnectionService;
|
|
|
|
|
|
|
|
PushManagementService(XmppConnectionService service) {
|
|
|
|
this.mXmppConnectionService = service;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static Data findResponseData(IqPacket response) {
|
|
|
|
final Element command = response.findChild("command", Namespace.COMMANDS);
|
|
|
|
final Element x = command == null ? null : command.findChild("x", Namespace.DATA);
|
|
|
|
return x == null ? null : Data.parse(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
private Jid getAppServer() {
|
|
|
|
return Jid.of(mXmppConnectionService.getString(R.string.app_server));
|
|
|
|
}
|
|
|
|
|
|
|
|
void registerPushTokenOnServer(final Account account) {
|
|
|
|
Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": has push support");
|
|
|
|
retrieveFcmInstanceToken(token -> {
|
|
|
|
final String androidId = PhoneHelper.getAndroidId(mXmppConnectionService);
|
|
|
|
final IqPacket packet = mXmppConnectionService.getIqGenerator().pushTokenToAppServer(getAppServer(), token, androidId);
|
|
|
|
mXmppConnectionService.sendIqPacket(account, packet, (a, response) -> {
|
|
|
|
final Data data = findResponseData(response);
|
|
|
|
if (response.getType() == IqPacket.TYPE.RESULT && data != null) {
|
|
|
|
try {
|
|
|
|
String node = data.getValue("node");
|
|
|
|
String secret = data.getValue("secret");
|
|
|
|
Jid jid = Jid.of(data.getValue("jid"));
|
|
|
|
if (node != null && secret != null) {
|
|
|
|
enablePushOnServer(a, jid, node, secret);
|
|
|
|
}
|
|
|
|
} catch (IllegalArgumentException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Log.d(Config.LOGTAG, a.getJid().asBareJid() + ": invalid response from app server");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-06-26 15:40:05 +00:00
|
|
|
public void unregisterChannel(final Account account, final String channel) {
|
|
|
|
final String androidId = PhoneHelper.getAndroidId(mXmppConnectionService);
|
|
|
|
final Jid appServer = getAppServer();
|
|
|
|
final IqPacket packet = mXmppConnectionService.getIqGenerator().unregisterChannelOnAppServer(appServer, androidId, channel);
|
|
|
|
mXmppConnectionService.sendIqPacket(account, packet, (a, response) -> {
|
|
|
|
if (response.getType() == IqPacket.TYPE.RESULT) {
|
|
|
|
Log.d(Config.LOGTAG,a.getJid().asBareJid()+": successfully unregistered channel");
|
|
|
|
} else if (response.getType() == IqPacket.TYPE.ERROR) {
|
|
|
|
Log.d(Config.LOGTAG, a.getJid().asBareJid()+": unable to unregister channel with hash "+channel);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-06-25 16:15:51 +00:00
|
|
|
void registerPushTokenOnServer(final Conversation conversation) {
|
|
|
|
Log.d(Config.LOGTAG, conversation.getAccount().getJid().asBareJid() + ": room "+conversation.getJid().asBareJid()+" has push support");
|
|
|
|
retrieveFcmInstanceToken(token -> {
|
|
|
|
final Jid muc = conversation.getJid().asBareJid();
|
|
|
|
final String androidId = PhoneHelper.getAndroidId(mXmppConnectionService);
|
|
|
|
final IqPacket packet = mXmppConnectionService.getIqGenerator().pushTokenToAppServer(getAppServer(), token, androidId, muc);
|
|
|
|
packet.setTo(muc);
|
|
|
|
mXmppConnectionService.sendIqPacket(conversation.getAccount(), packet, (a, response) -> {
|
|
|
|
final Data data = findResponseData(response);
|
|
|
|
if (response.getType() == IqPacket.TYPE.RESULT && data != null) {
|
|
|
|
try {
|
|
|
|
final String node = data.getValue("node");
|
|
|
|
final String secret = data.getValue("secret");
|
|
|
|
final Jid jid = Jid.of(data.getValue("jid"));
|
|
|
|
if (node != null && secret != null) {
|
|
|
|
enablePushOnServer(conversation, jid, node, secret);
|
|
|
|
}
|
|
|
|
} catch (IllegalArgumentException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Log.d(Config.LOGTAG, a.getJid().asBareJid() + ": invalid response from app server");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void enablePushOnServer(final Account account, final Jid appServer, final String node, final String secret) {
|
|
|
|
final IqPacket enable = mXmppConnectionService.getIqGenerator().enablePush(appServer, node, secret);
|
|
|
|
mXmppConnectionService.sendIqPacket(account, enable, (a, p) -> {
|
|
|
|
if (p.getType() == IqPacket.TYPE.RESULT) {
|
|
|
|
Log.d(Config.LOGTAG, a.getJid().asBareJid() + ": successfully enabled push on server");
|
|
|
|
} else if (p.getType() == IqPacket.TYPE.ERROR) {
|
|
|
|
Log.d(Config.LOGTAG, a.getJid().asBareJid() + ": enabling push on server failed");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void enablePushOnServer(final Conversation conversation, final Jid appServer, final String node, final String secret) {
|
|
|
|
final Jid muc = conversation.getJid().asBareJid();
|
|
|
|
final IqPacket enable = mXmppConnectionService.getIqGenerator().enablePush(appServer, node, secret);
|
|
|
|
enable.setTo(muc);
|
|
|
|
mXmppConnectionService.sendIqPacket(conversation.getAccount(), enable, (a, p) -> {
|
|
|
|
if (p.getType() == IqPacket.TYPE.RESULT) {
|
|
|
|
Log.d(Config.LOGTAG, a.getJid().asBareJid() + ": successfully enabled push on " + muc);
|
|
|
|
if (conversation.setAttribute(Conversation.ATTRIBUTE_ALWAYS_NOTIFY, node)) {
|
|
|
|
mXmppConnectionService.updateConversation(conversation);
|
|
|
|
}
|
|
|
|
} else if (p.getType() == IqPacket.TYPE.ERROR) {
|
|
|
|
Log.d(Config.LOGTAG, a.getJid().asBareJid() + ": enabling push on " + muc + " failed");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public void disablePushOnServer(final Conversation conversation) {
|
|
|
|
final Jid muc = conversation.getJid().asBareJid();
|
|
|
|
final String node = conversation.getAttribute(Conversation.ATTRIBUTE_PUSH_NODE);
|
|
|
|
if (node != null) {
|
|
|
|
final IqPacket disable = mXmppConnectionService.getIqGenerator().disablePush(getAppServer(), node);
|
|
|
|
disable.setTo(muc);
|
|
|
|
mXmppConnectionService.sendIqPacket(conversation.getAccount(), disable, (account, response) -> {
|
|
|
|
if (response.getType() == IqPacket.TYPE.ERROR) {
|
|
|
|
Log.d(Config.LOGTAG,account.getJid().asBareJid()+": unable to disable push for room "+muc);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
Log.d(Config.LOGTAG,conversation.getAccount().getJid().asBareJid()+": room "+muc+" has no stored node. unable to disable push");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void retrieveFcmInstanceToken(final OnGcmInstanceTokenRetrieved instanceTokenRetrieved) {
|
|
|
|
FirebaseInstanceId.getInstance().getInstanceId().addOnCompleteListener(task -> {
|
|
|
|
if (!task.isSuccessful()) {
|
|
|
|
Log.d(Config.LOGTAG, "unable to get Firebase instance token", task.getException());
|
|
|
|
}
|
|
|
|
final InstanceIdResult result = task.getResult();
|
|
|
|
if (result != null) {
|
|
|
|
instanceTokenRetrieved.onGcmInstanceTokenRetrieved(result.getToken());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public boolean available(Account account) {
|
|
|
|
final XmppConnection connection = account.getXmppConnection();
|
|
|
|
return connection != null
|
|
|
|
&& connection.getFeatures().sm()
|
|
|
|
&& connection.getFeatures().push()
|
|
|
|
&& playServicesAvailable();
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean playServicesAvailable() {
|
|
|
|
return GoogleApiAvailability.getInstance().isGooglePlayServicesAvailable(mXmppConnectionService) == ConnectionResult.SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isStub() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface OnGcmInstanceTokenRetrieved {
|
|
|
|
void onGcmInstanceTokenRetrieved(String token);
|
|
|
|
}
|
2016-02-12 10:39:27 +00:00
|
|
|
}
|