Mercury-IM/domain/src/main/java/org/mercury_im/messenger/core/Messenger.java

129 lines
5.3 KiB
Java
Raw Normal View History

2020-06-06 18:45:20 +02:00
package org.mercury_im.messenger.core;
2019-11-08 00:47:17 +01:00
import org.jivesoftware.smack.SmackException;
import org.jivesoftware.smack.XMPPException;
import org.jivesoftware.smack.chat2.ChatManager;
import org.jivesoftware.smack.roster.Roster;
import org.jivesoftware.smack.roster.RosterEntry;
import org.jxmpp.jid.EntityBareJid;
import org.jxmpp.jid.impl.JidCreate;
import org.jxmpp.stringprep.XmppStringprepException;
2020-06-06 18:45:20 +02:00
import org.mercury_im.messenger.core.data.repository.Repositories;
import org.mercury_im.messenger.core.exception.ConnectionNotFoundException;
import org.mercury_im.messenger.core.exception.ContactAlreadyAddedException;
import org.mercury_im.messenger.core.xmpp.MercuryConnection;
import org.mercury_im.messenger.core.xmpp.MercuryConnectionManager;
2020-06-09 21:52:53 +02:00
import org.mercury_im.messenger.entity.contact.Peer;
2019-11-12 00:07:57 +01:00
import java.util.UUID;
2019-12-21 03:24:00 +01:00
import java.util.logging.Level;
import java.util.logging.Logger;
2019-11-12 00:07:57 +01:00
2019-12-02 02:31:32 +01:00
import javax.inject.Inject;
2020-01-06 01:27:11 +01:00
import javax.inject.Singleton;
2019-12-02 02:31:32 +01:00
import io.reactivex.Completable;
2019-12-22 05:48:07 +01:00
import io.reactivex.disposables.CompositeDisposable;
2020-01-06 01:27:11 +01:00
@Singleton
2020-05-11 16:31:07 +02:00
public class Messenger {
2019-11-12 00:07:57 +01:00
2019-12-09 13:50:26 +01:00
public static final String TAG = "MercuryIM";
2019-12-21 03:24:00 +01:00
private static final Logger LOGGER = Logger.getLogger(Messenger.class.getName());
2019-12-09 13:50:26 +01:00
private final MercuryConnectionManager connectionManager;
private final Repositories repositories;
2020-06-09 21:52:53 +02:00
private final SchedulersFacade schedulers;
2020-01-04 22:56:34 +01:00
2019-12-22 05:48:07 +01:00
private CompositeDisposable disposable = new CompositeDisposable();
2019-12-02 02:31:32 +01:00
@Inject
2020-06-09 21:52:53 +02:00
public Messenger(Repositories repositories,
MercuryConnectionManager connectionManager,
SchedulersFacade schedulers) {
2019-12-09 15:49:59 +01:00
this.repositories = repositories;
2020-01-06 01:27:11 +01:00
this.connectionManager = connectionManager;
2020-06-09 21:52:53 +02:00
this.schedulers = schedulers;
2020-01-04 22:56:34 +01:00
performInitialLogin();
2019-12-22 05:48:07 +01:00
}
public MercuryConnectionManager getConnectionManager() {
return connectionManager;
}
2020-01-04 22:56:34 +01:00
public void performInitialLogin() {
2020-01-06 01:27:11 +01:00
LOGGER.log(Level.INFO, "Perform initial login.");
2019-12-22 05:48:07 +01:00
disposable.add(repositories.getAccountRepository().observeAllAccounts().firstOrError()
2020-06-09 21:52:53 +02:00
.subscribeOn(schedulers.getIoScheduler())
.subscribe(connectionManager::doRegisterConnections));
}
2019-12-09 13:50:26 +01:00
public Completable addContact(UUID accountId, String contactAddress) {
return Completable.fromAction(() -> doAddContact(accountId, contactAddress));
}
private void doAddContact(UUID accountId, String contactAddress)
throws ConnectionNotFoundException, XmppStringprepException, ContactAlreadyAddedException,
SmackException.NotLoggedInException, XMPPException.XMPPErrorException,
SmackException.NotConnectedException, InterruptedException, SmackException.NoResponseException {
MercuryConnection connection = getConnection(accountId);
EntityBareJid jid = JidCreate.entityBareFrom(contactAddress);
Roster roster = Roster.getInstanceFor(connection.getConnection());
if (roster.getEntry(jid) != null) {
throw new ContactAlreadyAddedException(jid);
}
if (roster.isSubscriptionPreApprovalSupported()) {
LOGGER.log(Level.INFO, "Pre-Approval supported.");
try {
roster.preApproveAndCreateEntry(jid, null, null);
} catch (SmackException.FeatureNotSupportedException e) {
throw new AssertionError("pre-approval failed even though the feature is announced.");
}
} else {
roster.createItemAndRequestSubscription(jid, null, null);
}
}
public Completable deleteContact(Peer contact) {
return Completable.fromAction(() -> doDeleteContact(contact));
}
private void doDeleteContact(Peer contact)
throws ConnectionNotFoundException, XmppStringprepException,
SmackException.NotLoggedInException, XMPPException.XMPPErrorException,
SmackException.NotConnectedException, InterruptedException, SmackException.NoResponseException {
MercuryConnection connection = getConnection(contact.getAccount().getId());
Roster roster = Roster.getInstanceFor(connection.getConnection());
EntityBareJid jid = JidCreate.entityBareFrom(contact.getAddress());
RosterEntry entry = roster.getEntry(jid);
if (entry != null) {
roster.removeEntry(entry);
} else {
throw new IllegalStateException("Contact " + jid.toString() + " not in roster!");
}
}
public Completable sendMessage(Peer peer, String body) {
return Completable.fromAction(() -> doSendMessage(peer, body));
}
private void doSendMessage(Peer contact, String body) throws ConnectionNotFoundException,
SmackException.NotConnectedException, InterruptedException {
MercuryConnection connection = getConnection(contact.getAccount().getId());
ChatManager chatManager = ChatManager.getInstanceFor(connection.getConnection());
chatManager.chatWith(JidCreate.entityBareFromOrThrowUnchecked(contact.getAddress()))
.send(body);
}
private MercuryConnection getConnection(UUID accountId) throws ConnectionNotFoundException {
MercuryConnection connection = getConnectionManager().getConnection(accountId);
if (connection == null) {
throw new ConnectionNotFoundException(accountId);
}
return connection;
}
2019-11-08 00:47:17 +01:00
}