MultiUserChatManager.java
- /**
- *
- * Copyright © 2014 Florian Schmaus
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package org.jivesoftware.smackx.muc;
- import java.lang.ref.WeakReference;
- import java.util.ArrayList;
- import java.util.Collections;
- import java.util.HashMap;
- import java.util.HashSet;
- import java.util.List;
- import java.util.Map;
- import java.util.Set;
- import java.util.WeakHashMap;
- import java.util.concurrent.CopyOnWriteArraySet;
- import java.util.logging.Logger;
- import org.jivesoftware.smack.ConnectionCreationListener;
- import org.jivesoftware.smack.Manager;
- import org.jivesoftware.smack.StanzaListener;
- import org.jivesoftware.smack.XMPPConnection;
- import org.jivesoftware.smack.XMPPConnectionRegistry;
- import org.jivesoftware.smack.SmackException.NoResponseException;
- import org.jivesoftware.smack.SmackException.NotConnectedException;
- import org.jivesoftware.smack.XMPPException.XMPPErrorException;
- import org.jivesoftware.smack.filter.AndFilter;
- import org.jivesoftware.smack.filter.MessageTypeFilter;
- import org.jivesoftware.smack.filter.StanzaExtensionFilter;
- import org.jivesoftware.smack.filter.StanzaFilter;
- import org.jivesoftware.smack.filter.NotFilter;
- import org.jivesoftware.smack.filter.StanzaTypeFilter;
- import org.jivesoftware.smack.packet.Message;
- import org.jivesoftware.smack.packet.Stanza;
- import org.jivesoftware.smackx.disco.AbstractNodeInformationProvider;
- import org.jivesoftware.smackx.disco.ServiceDiscoveryManager;
- import org.jivesoftware.smackx.disco.packet.DiscoverInfo;
- import org.jivesoftware.smackx.disco.packet.DiscoverItems;
- import org.jivesoftware.smackx.muc.packet.MUCInitialPresence;
- import org.jivesoftware.smackx.muc.packet.MUCUser;
- import org.jxmpp.jid.BareJid;
- import org.jxmpp.jid.DomainBareJid;
- import org.jxmpp.jid.Jid;
- import org.jxmpp.jid.JidWithLocalpart;
- public class MultiUserChatManager extends Manager {
- private final static String DISCO_NODE = MUCInitialPresence.NAMESPACE + "#rooms";
- private static final Logger LOGGER = Logger.getLogger(MultiUserChatManager.class.getName());
- static {
- XMPPConnectionRegistry.addConnectionCreationListener(new ConnectionCreationListener() {
- public void connectionCreated(final XMPPConnection connection) {
- // Set on every established connection that this client supports the Multi-User
- // Chat protocol. This information will be used when another client tries to
- // discover whether this client supports MUC or not.
- ServiceDiscoveryManager.getInstanceFor(connection).addFeature(MUCInitialPresence.NAMESPACE);
- // Set the NodeInformationProvider that will provide information about the
- // joined rooms whenever a disco request is received
- final WeakReference<XMPPConnection> weakRefConnection = new WeakReference<XMPPConnection>(connection);
- ServiceDiscoveryManager.getInstanceFor(connection).setNodeInformationProvider(DISCO_NODE,
- new AbstractNodeInformationProvider() {
- @Override
- public List<DiscoverItems.Item> getNodeItems() {
- XMPPConnection connection = weakRefConnection.get();
- if (connection == null)
- return Collections.emptyList();
- Set<BareJid> joinedRooms = MultiUserChatManager.getInstanceFor(connection).getJoinedRooms();
- List<DiscoverItems.Item> answer = new ArrayList<DiscoverItems.Item>();
- for (BareJid room : joinedRooms) {
- answer.add(new DiscoverItems.Item(room));
- }
- return answer;
- }
- });
- }
- });
- }
- private static final Map<XMPPConnection, MultiUserChatManager> INSTANCES = new WeakHashMap<XMPPConnection, MultiUserChatManager>();
- /**
- * Get a instance of a multi user chat manager for the given connection.
- *
- * @param connection
- * @return a multi user chat manager.
- */
- public static synchronized MultiUserChatManager getInstanceFor(XMPPConnection connection) {
- MultiUserChatManager multiUserChatManager = INSTANCES.get(connection);
- if (multiUserChatManager == null) {
- multiUserChatManager = new MultiUserChatManager(connection);
- INSTANCES.put(connection, multiUserChatManager);
- }
- return multiUserChatManager;
- }
- private static final StanzaFilter INVITATION_FILTER = new AndFilter(StanzaTypeFilter.MESSAGE, new StanzaExtensionFilter(new MUCUser()),
- new NotFilter(MessageTypeFilter.ERROR));
- private final Set<InvitationListener> invitationsListeners = new CopyOnWriteArraySet<InvitationListener>();
- private final Set<BareJid> joinedRooms = new HashSet<>();
- /**
- * A Map of MUC JIDs to {@link MultiUserChat} instances. We use weak references for the values in order to allow
- * those instances to get garbage collected. Note that MultiUserChat instances can not get garbage collected while
- * the user is joined, because then the MUC will have PacketListeners added to the XMPPConnection.
- */
- private final Map<BareJid, WeakReference<MultiUserChat>> multiUserChats = new HashMap<>();
- private MultiUserChatManager(XMPPConnection connection) {
- super(connection);
- // Listens for all messages that include a MUCUser extension and fire the invitation
- // listeners if the message includes an invitation.
- StanzaListener invitationPacketListener = new StanzaListener() {
- public void processPacket(Stanza packet) {
- final Message message = (Message) packet;
- // Get the MUCUser extension
- final MUCUser mucUser = MUCUser.from(message);
- // Check if the MUCUser extension includes an invitation
- if (mucUser.getInvite() != null) {
- BareJid mucJid = message.getFrom().asBareJidIfPossible();
- if (mucJid == null) {
- LOGGER.warning("Invite to non bare JID: '" + message.toXML() + "'");
- return;
- }
- // Fire event for invitation listeners
- final MultiUserChat muc = getMultiUserChat(mucJid);
- for (final InvitationListener listener : invitationsListeners) {
- listener.invitationReceived(connection(), muc, mucUser.getInvite().getFrom(),
- mucUser.getInvite().getReason(), mucUser.getPassword(), message);
- }
- }
- }
- };
- connection.addAsyncStanzaListener(invitationPacketListener, INVITATION_FILTER);
- }
- /**
- * Creates a multi user chat. Note: no information is sent to or received from the server until you attempt to
- * {@link MultiUserChat#join(org.jxmpp.jid.parts.Resourcepart) join} the chat room. On some server implementations, the room will not be
- * created until the first person joins it.
- * <p>
- * Most XMPP servers use a sub-domain for the chat service (eg chat.example.com for the XMPP server example.com).
- * You must ensure that the room address you're trying to connect to includes the proper chat sub-domain.
- * </p>
- *
- * @param jid the name of the room in the form "roomName@service", where "service" is the hostname at which the
- * multi-user chat service is running. Make sure to provide a valid JID.
- */
- public synchronized MultiUserChat getMultiUserChat(BareJid jid) {
- WeakReference<MultiUserChat> weakRefMultiUserChat = multiUserChats.get(jid);
- if (weakRefMultiUserChat == null) {
- return createNewMucAndAddToMap(jid);
- }
- MultiUserChat multiUserChat = weakRefMultiUserChat.get();
- if (multiUserChat == null) {
- return createNewMucAndAddToMap(jid);
- }
- return multiUserChat;
- }
- private MultiUserChat createNewMucAndAddToMap(BareJid jid) {
- MultiUserChat multiUserChat = new MultiUserChat(connection(), jid, this);
- multiUserChats.put(jid, new WeakReference<MultiUserChat>(multiUserChat));
- return multiUserChat;
- }
- /**
- * Returns true if the specified user supports the Multi-User Chat protocol.
- *
- * @param user the user to check. A fully qualified xmpp ID, e.g. jdoe@example.com.
- * @return a boolean indicating whether the specified user supports the MUC protocol.
- * @throws XMPPErrorException
- * @throws NoResponseException
- * @throws NotConnectedException
- * @throws InterruptedException
- */
- public boolean isServiceEnabled(Jid user) throws NoResponseException, XMPPErrorException, NotConnectedException, InterruptedException {
- return ServiceDiscoveryManager.getInstanceFor(connection()).supportsFeature(user, MUCInitialPresence.NAMESPACE);
- }
- /**
- * Returns a Set of the rooms where the user has joined. The Iterator will contain Strings where each String
- * represents a room (e.g. room@muc.jabber.org).
- *
- * @return a List of the rooms where the user has joined using a given connection.
- */
- public Set<BareJid> getJoinedRooms() {
- return Collections.unmodifiableSet(joinedRooms);
- }
- /**
- * Returns a List of the rooms where the requested user has joined. The Iterator will contain Strings where each
- * String represents a room (e.g. room@muc.jabber.org).
- *
- * @param user the user to check. A fully qualified xmpp ID, e.g. jdoe@example.com.
- * @return a List of the rooms where the requested user has joined.
- * @throws XMPPErrorException
- * @throws NoResponseException
- * @throws NotConnectedException
- * @throws InterruptedException
- */
- public List<BareJid> getJoinedRooms(JidWithLocalpart user) throws NoResponseException, XMPPErrorException,
- NotConnectedException, InterruptedException {
- // Send the disco packet to the user
- DiscoverItems result = ServiceDiscoveryManager.getInstanceFor(connection()).discoverItems(user, DISCO_NODE);
- List<DiscoverItems.Item> items = result.getItems();
- List<BareJid> answer = new ArrayList<>(items.size());
- // Collect the entityID for each returned item
- for (DiscoverItems.Item item : items) {
- BareJid muc = item.getEntityID().asBareJidIfPossible();
- if (muc == null) {
- LOGGER.warning("Not a bare JID: " + item.getEntityID());
- continue;
- }
- answer.add(muc);
- }
- return answer;
- }
- /**
- * Returns the discovered information of a given room without actually having to join the room. The server will
- * provide information only for rooms that are public.
- *
- * @param room the name of the room in the form "roomName@service" of which we want to discover its information.
- * @return the discovered information of a given room without actually having to join the room.
- * @throws XMPPErrorException
- * @throws NoResponseException
- * @throws NotConnectedException
- * @throws InterruptedException
- */
- public RoomInfo getRoomInfo(BareJid room) throws NoResponseException, XMPPErrorException, NotConnectedException, InterruptedException {
- DiscoverInfo info = ServiceDiscoveryManager.getInstanceFor(connection()).discoverInfo(room);
- return new RoomInfo(info);
- }
- /**
- * Returns a collection with the XMPP addresses of the Multi-User Chat services.
- *
- * @return a collection with the XMPP addresses of the Multi-User Chat services.
- * @throws XMPPErrorException
- * @throws NoResponseException
- * @throws NotConnectedException
- * @throws InterruptedException
- */
- public List<DomainBareJid> getServiceNames() throws NoResponseException, XMPPErrorException, NotConnectedException, InterruptedException {
- ServiceDiscoveryManager sdm = ServiceDiscoveryManager.getInstanceFor(connection());
- return sdm.findServices(MUCInitialPresence.NAMESPACE, false, false);
- }
- /**
- * Returns a List of HostedRooms where each HostedRoom has the XMPP address of the room and the room's name.
- * Once discovered the rooms hosted by a chat service it is possible to discover more detailed room information or
- * join the room.
- *
- * @param serviceName the service that is hosting the rooms to discover.
- * @return a collection of HostedRooms.
- * @throws XMPPErrorException
- * @throws NoResponseException
- * @throws NotConnectedException
- * @throws InterruptedException
- */
- public List<HostedRoom> getHostedRooms(DomainBareJid serviceName) throws NoResponseException, XMPPErrorException,
- NotConnectedException, InterruptedException {
- ServiceDiscoveryManager discoManager = ServiceDiscoveryManager.getInstanceFor(connection());
- DiscoverItems discoverItems = discoManager.discoverItems(serviceName);
- List<DiscoverItems.Item> items = discoverItems.getItems();
- List<HostedRoom> answer = new ArrayList<HostedRoom>(items.size());
- for (DiscoverItems.Item item : items) {
- answer.add(new HostedRoom(item));
- }
- return answer;
- }
- /**
- * Informs the sender of an invitation that the invitee declines the invitation. The rejection will be sent to the
- * room which in turn will forward the rejection to the inviter.
- *
- * @param room the room that sent the original invitation.
- * @param inviter the inviter of the declined invitation.
- * @param reason the reason why the invitee is declining the invitation.
- * @throws NotConnectedException
- * @throws InterruptedException
- */
- public void decline(BareJid room, String inviter, String reason) throws NotConnectedException, InterruptedException {
- Message message = new Message(room);
- // Create the MUCUser packet that will include the rejection
- MUCUser mucUser = new MUCUser();
- MUCUser.Decline decline = new MUCUser.Decline();
- decline.setTo(inviter);
- decline.setReason(reason);
- mucUser.setDecline(decline);
- // Add the MUCUser packet that includes the rejection
- message.addExtension(mucUser);
- connection().sendStanza(message);
- }
- /**
- * Adds a listener to invitation notifications. The listener will be fired anytime an invitation is received.
- *
- * @param listener an invitation listener.
- */
- public void addInvitationListener(InvitationListener listener) {
- invitationsListeners.add(listener);
- }
- /**
- * Removes a listener to invitation notifications. The listener will be fired anytime an invitation is received.
- *
- * @param listener an invitation listener.
- */
- public void removeInvitationListener(InvitationListener listener) {
- invitationsListeners.remove(listener);
- }
- void addJoinedRoom(BareJid room) {
- joinedRooms.add(room);
- }
- void removeJoinedRoom(BareJid room) {
- joinedRooms.remove(room);
- }
- }