aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/impl/protocol/yahoo/AdHocChatRoomYahooImpl.java
blob: 2775f6fc6f1c766ab045b51c5f629492417ccdfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
/*
 * Jitsi, the OpenSource Java VoIP and Instant Messaging client.
 *
 * Copyright @ 2015 Atlassian Pty Ltd
 *
 * 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 net.java.sip.communicator.impl.protocol.yahoo;

import java.io.*;
import java.util.*;

import net.java.sip.communicator.service.protocol.*;
import net.java.sip.communicator.service.protocol.event.*;
import net.java.sip.communicator.util.*;
import ymsg.network.*;

/**
 * Represents a Yahoo ad-hoc chat room, where multiple chat users could
 * communicate in a many-to-many fashion.
 *
 * @author Rupert Burchardi
 * @author Valentin Martinet
 */
public class AdHocChatRoomYahooImpl
    implements AdHocChatRoom
{
    private static final Logger logger = Logger
        .getLogger(AdHocChatRoomYahooImpl.class);

    /**
     * Listeners that will be notified of changes in member status in the room
     *   such as member joined, left or being kicked or dropped.
     */
    private Vector<AdHocChatRoomParticipantPresenceListener> memberListeners
        = new Vector<AdHocChatRoomParticipantPresenceListener>();

    /**
     * Listeners that will be notified every time a new message is received on
     * this ad-hoc chat room.
     */
    private Vector<AdHocChatRoomMessageListener> messageListeners
        = new Vector<AdHocChatRoomMessageListener>();

    /**
     * The protocol provider that created us
     */
    private ProtocolProviderServiceYahooImpl provider = null;

    /**
     * The operation set that created us.
     */
    private OperationSetAdHocMultiUserChatYahooImpl opSetMuc = null;

    /**
     * The list of participants of this chat room.
     */
    private Hashtable<String, Contact> participants
        = new Hashtable<String, Contact>();

    /**
     * The nickname of this chat room local user participant.
     */
    private String nickname;

    /**
     * The yahoo conference model of this ad-hoc chat room, its the
     * representation of an ad-hoc chat room in the lib for this protocol.
     */
    private YahooConference yahooConference = null;

    /**
     * Creates an instance of a chat room that has been.
     *
     * @param multiUserChat
     *            MultiUserChat
     * @param provider
     *            a reference to the currently valid jabber protocol provider.
     */
    public AdHocChatRoomYahooImpl(  YahooConference multiUserChat,
                                    ProtocolProviderServiceYahooImpl provider)
    {
        this.yahooConference = multiUserChat;
        this.provider = provider;
        this.opSetMuc = (OperationSetAdHocMultiUserChatYahooImpl) provider
            .getOperationSet(OperationSetAdHocMultiUserChat.class);
    }

    /**
     * Registers <tt>listener</tt> so that it would receive events every time a
     * new message is received on this chat room.
     *
     * @param listener A <tt>MessageListener</tt> that would be notified every
     *                 time a new message is received on this chat room.
     */
    public void addMessageListener(AdHocChatRoomMessageListener listener)
    {
        synchronized (messageListeners)
        {
            if (!messageListeners.contains(listener))
                messageListeners.add(listener);
        }
    }

    /**
     * Removes <tt>listener</tt> so that it won't receive any further message
     * events from this room.
     *
     * @param listener The <tt>MessageListener</tt> to remove from this room
     */
    public void removeMessageListener(AdHocChatRoomMessageListener listener)
    {
        synchronized (messageListeners)
        {
            messageListeners.remove(listener);
        }
    }

    /**
     * Adds a listener that will be notified of changes in our status in the
     * room.
     *
     * @param listener A participant status listener.
     */
    public void addParticipantPresenceListener(
            AdHocChatRoomParticipantPresenceListener listener)
    {
        synchronized (memberListeners)
        {
            if (!memberListeners.contains(listener))
                memberListeners.add(listener);
        }
    }

    /**
     * Removes a listener that was being notified of changes in the status of
     * other chat room participants.
     *
     * @param listener A participant status listener.
     */
    public void removeParticipantPresenceListener(
        AdHocChatRoomParticipantPresenceListener listener)
    {
        synchronized (memberListeners)
        {
            memberListeners.remove(listener);
        }
    }

    /**
     * Create a Message instance for sending a simple text messages with default
     * (text/plain) content type and encoding.
     *
     * @param messageText
     *            the string content of the message.
     * @return Message the newly created message
     */
    public Message createMessage(String messageText)
    {
        Message msg = new MessageYahooImpl(messageText,
            OperationSetBasicInstantMessaging.DEFAULT_MIME_TYPE,
            OperationSetBasicInstantMessaging.DEFAULT_MIME_ENCODING, null);
        return msg;
    }

    /**
     * Returns a <tt>List</tt> of <tt>Contact</tt>s corresponding to all members
     * currently participating in this room.
     *
     * @return a <tt>List</tt> of <tt>Contact</tt> corresponding to all room
     *         members.
     */
    public List<Contact> getParticipants()
    {
        return new LinkedList<Contact>(participants.values());
    }

    /**
     * Updates the member list of the chat room.
     *
     */
    public void updateParticipantsList()
    {
        Iterator<?> it = yahooConference.getMembers().iterator();

        while (it.hasNext())
        {
            YahooUser user = (YahooUser) it.next();
            Contact contact;
            OperationSetPersistentPresenceYahooImpl presenceOpSet
                = (OperationSetPersistentPresenceYahooImpl) this
                .getParentProvider().getOperationSet(
                    OperationSetPersistentPresence.class);

            contact = presenceOpSet.findContactByID(user.getId());

            if(!participants.containsKey(contact.getDisplayName()))
            {
                participants.put(contact.getDisplayName(), contact);
            }
        }
    }

    /**
     * Returns the identifier of this <tt>AdHocChatRoom</tt>.
     *
     * @return a <tt>String</tt> containing the identifier of this
     * <tt>AdHocChatRoom</tt>.
     */
    public String getIdentifier()
    {
        return yahooConference.getName();
    }

    /**
     * Returns the number of participants that are currently in this ad-hoc chat
     * room.
     *
     * @return the number of <tt>Contact</tt>s, currently participating in
     * this ad-hoc room.
     */
    public int getParticipantsCount()
    {
        return yahooConference.getMembers().size();
    }

    /**
     * Returns the name of this <tt>AdHocChatRoom</tt>.
     *
     * @return a <tt>String</tt> containing the name of this
     * <tt>AdHocChatRoom</tt>.
     */
    public String getName()
    {
        return yahooConference.getName();
    }

    /**
     * Returns the protocol provider service that created us.
     *
     * @return the protocol provider service that created us.
     */
    public ProtocolProviderService getParentProvider()
    {
        return provider;
    }

    /**
     * Returns the local user's nickname in the context of this chat room or
     * <tt>null</tt> if not currently joined.
     *
     * @return the nickname currently being used by the local user in the
     * context of the local ad-hoc chat room.
     */

    public String getUserNickname()
    {
        if(nickname == null)
            nickname = provider.getYahooSession().getLoginIdentity().getId();

        return nickname;
    }

    /**
     * Invites another user to this room. If we're not joined nothing will
     * happen.
     *
     * @param userAddress The identifier of the contact (email address or yahoo
     * id)
     * @param reason The invite reason, which is send to the invitee.
     */
    public void invite(String userAddress, String reason)
    {
        try
        {
                provider.getYahooSession().extendConference(yahooConference,
                    userAddress, reason);
        }
        catch (IOException ioe)
        {
            if (logger.isDebugEnabled())
                logger.debug("Failed to invite the user: " + userAddress
                + " Error: " + ioe);
        }
    }

    /**
     * Indicates whether or not this chat room is corresponding to a server
     * channel. Note: Returns always <code>false</code>.
     *
     * @return Always <code>false</code> since system chat room can't be joined
     * with current yahoo library.
     */
    public boolean isSystem()
    {
        return false;
    }

    /**
     * Joins this chat room with the nickname of the local user so that the user
     * would start receiving events and messages for it.
     *
     * @throws OperationFailedException with the corresponding code if an error
     * occurs while joining the room.
     */
    public void join() throws OperationFailedException
    {
        this.nickname = provider.getAccountID().getUserID();
        try
        {
            provider.getYahooSession().acceptConferenceInvite(yahooConference);

            // We don't specify a reason.
            opSetMuc.fireLocalUserPresenceEvent(this,
                LocalUserAdHocChatRoomPresenceChangeEvent.LOCAL_USER_JOINED,
                null);
        }
        catch (Exception e)
        {
            if (logger.isDebugEnabled())
                logger.debug("Couldn't join the chat room: "
                + yahooConference.getName() + e);
        }
    }

    /**
     * Leave this chat room. Once this method is called, the user won't be
     * listed as a member of the chat room any more and no further chat events
     * will be delivered. Depending on the underlying protocol and
     * implementation leave() might cause the room to be destroyed if it has
     * been created by the local user.
     */
    public void leave()
    {
        try
        {
            provider.getYahooSession().leaveConference(yahooConference);

            Iterator< Map.Entry<String, Contact>> membersSet
                = participants.entrySet().iterator();

            while (membersSet.hasNext())
            {
                Map.Entry<String, Contact> memberEntry = membersSet.next();
                Contact participant = memberEntry.getValue();

                fireParticipantPresenceEvent(participant,
                    AdHocChatRoomParticipantPresenceChangeEvent.CONTACT_LEFT,
                    "Local user has left the chat room.");
            }
        }
        catch (IOException ioe)
        {
            if (logger.isDebugEnabled())
                logger.debug("Failed to leave the chat room: "
                + yahooConference.getName() + " Error: " + ioe);
        }

        participants.clear();
    }

    /**
     * Sends the <tt>message</tt> to the destination indicated by the
     * <tt>to</tt> contact.
     *
     * @param message The <tt>Message</tt> to send.
     * @throws OperationFailedException if the underlying stack is not
     * registered or initialized or if the chat room is not joined.
     */
    public void sendMessage(Message message) throws OperationFailedException
    {
        assertConnected();

        try
        {
            provider.getYahooSession().sendConferenceMessage(yahooConference,
                message.getContent());

            AdHocChatRoomMessageDeliveredEvent msgDeliveredEvt
                = new AdHocChatRoomMessageDeliveredEvent(
                    this,
                    new Date(),
                    message,
                    ChatRoomMessageDeliveredEvent.CONVERSATION_MESSAGE_DELIVERED);

            fireMessageEvent(msgDeliveredEvt);
        }
        catch (Exception e)
        {
            if (logger.isDebugEnabled())
                logger.debug("Failed to send a conference message.");
        }
    }

    /**
     * Notifies all interested listeners that a
     * <tt>AdHocChatRoomMessageDeliveredEvent</tt>,
     * <tt>AdHocChatRoomMessageReceivedEvent</tt> or a
     * <tt>AdHocChatRoomMessageDeliveryFailedEvent</tt> has been fired.
     * @param evt The specific event
     */
    public void fireMessageEvent(EventObject evt)
    {
        Iterator<AdHocChatRoomMessageListener> listeners = null;
        synchronized (messageListeners)
        {
            listeners = new ArrayList<AdHocChatRoomMessageListener>(
                messageListeners).iterator();
        }

        while (listeners.hasNext())
        {
            AdHocChatRoomMessageListener listener = listeners.next();

            if (evt instanceof AdHocChatRoomMessageDeliveredEvent)
            {
                listener.messageDelivered(
                    (AdHocChatRoomMessageDeliveredEvent) evt);
            }
            else if (evt instanceof AdHocChatRoomMessageReceivedEvent)
            {
                listener.messageReceived(
                    (AdHocChatRoomMessageReceivedEvent) evt);
            }
            else if (evt instanceof AdHocChatRoomMessageDeliveryFailedEvent)
            {
                listener.messageDeliveryFailed(
                    (AdHocChatRoomMessageDeliveryFailedEvent) evt);
            }
        }
    }

    /**
     * Creates the corresponding AdHocChatRoomParticipantPresenceChangeEvent and
     * notifies all <tt>AdHocChatRoomParticipantPresenceListener</tt>s that a
     * Contact has joined or left this <tt>AdHocChatRoom</tt>.
     *
     * @param participant the <tt>Contact</tt> that this
     * @param eventID the identifier of the event
     * @param eventReason the reason of the event
     */
    public void fireParticipantPresenceEvent(Contact participant, String eventID,
           String eventReason)
    {
        AdHocChatRoomParticipantPresenceChangeEvent evt
            = new AdHocChatRoomParticipantPresenceChangeEvent(this,
                participant,
                eventID,
                eventReason);

        if (logger.isTraceEnabled())
            logger.trace("Will dispatch the following ChatRoom event: " + evt);

        Iterator<AdHocChatRoomParticipantPresenceListener> listeners = null;
        synchronized (memberListeners)
        {
            listeners = new ArrayList<AdHocChatRoomParticipantPresenceListener>
                (memberListeners).iterator();
        }

        while (listeners.hasNext())
        {
            AdHocChatRoomParticipantPresenceListener listener = listeners.next();

            listener.participantPresenceChanged(evt);
        }
    }

    /**
     * Finds the participant of this ad-hoc chat room corresponding to the
     * given address.
     *
     * @param address the address to search for.
     * @return the participant of this chat room corresponding to the given
     * nick name.
     */
    public Contact findParticipantForAddress(String address)
    {
        Iterator<Contact> participantsIter
            = this.participants.values().iterator();

        while (participantsIter.hasNext())
        {
            Contact contact = participantsIter.next();

            if (contact.getAddress().equals(address))
            {
                return contact;
            }
        }

        return null;
    }

    /**
     * Removes the specified ad-hoc chat room participant from the participants
     * list of this ad-hoc chat room.
     * @param participant The member, who should be removed from the ad-hoc chat room
     * participants list.
     */
    public void removeChatRoomParticipant(Contact participant)
    {
        if(participant == null)
            return;

        participants.remove(participant.getDisplayName());

        fireParticipantPresenceEvent(participant,
            AdHocChatRoomParticipantPresenceChangeEvent.CONTACT_LEFT, null);
    }

    /**
     * Adds a participant to the ad-hoc chat room participant list.
     * @param participant The participant, who should be added to the ad-hoc
     * chat room participant list.
     */
    public void addChatRoomParticipant(Contact participant)
    {
        if (participant == null)
            return;

        if (!participants.containsKey(participant.getDisplayName()))
        {
            participants.put(participant.getDisplayName(), participant);

            fireParticipantPresenceEvent(participant,
                AdHocChatRoomParticipantPresenceChangeEvent.CONTACT_JOINED,
                null);
        }
    }

    /**
     * Returns the yahoo conference model of this chat room.
     * @return The yahoo conference.
     */
    public YahooConference getYahooConference()
    {
        return yahooConference;
    }

    /**
     * Utility method throwing an exception if the stack is not properly
     * initialized.
     * @throws java.lang.IllegalStateException if the underlying stack is
     * not registered and initialized.
     */
    private void assertConnected() throws IllegalStateException
    {
        if (provider == null)
            throw new IllegalStateException(
                "The provider must be non-null and signed on the "
                +"service before being able to communicate.");
        if (!provider.isRegistered())
            throw new IllegalStateException(
                "The provider must be signed on the service before "
                +"being able to communicate.");
    }

    /**
     * Determines whether this chat room should be stored in the configuration
     * file or not. If the chat room is persistent it still will be shown after a
     * restart in the chat room list. A non-persistent chat room will be only in
     * the chat room list until the the program is running.
     *
     * @return true if this chat room is persistent, false otherwise
     */
    public boolean isPersistent()
    {
       return false;
    }
}