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
|
/*
* 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.muc;
import java.util.*;
//import net.java.sip.communicator.impl.gui.*;
import net.java.sip.communicator.service.muc.*;
import net.java.sip.communicator.service.protocol.*;
import net.java.sip.communicator.util.*;
/**
* @author Yana Stamcheva
* @author Damian Minkov
* @author Hristo Terezov
*/
public class ChatRoomProviderWrapperImpl
implements ChatRoomProviderWrapper
{
private static final Logger logger
= Logger.getLogger(ChatRoomProviderWrapperImpl.class);
private final ProtocolProviderService protocolProvider;
private final ChatRoomWrapper systemRoomWrapper;
private final List<ChatRoomWrapper> chatRoomsOrderedCopy
= new LinkedList<ChatRoomWrapper>();
/**
* Creates an instance of <tt>ChatRoomProviderWrapper</tt> by specifying
* the protocol provider, corresponding to the multi user chat account.
*
* @param protocolProvider protocol provider, corresponding to the multi
* user chat account.
*/
public ChatRoomProviderWrapperImpl(
ProtocolProviderService protocolProvider)
{
this.protocolProvider = protocolProvider;
String accountIdService = protocolProvider.getAccountID().getService();
this.systemRoomWrapper
= new ChatRoomWrapperImpl(this, accountIdService, accountIdService);
}
/**
* Returns the name of this chat room provider.
* @return the name of this chat room provider.
*/
public String getName()
{
return protocolProvider.getProtocolDisplayName();
}
public byte[] getIcon()
{
return protocolProvider.getProtocolIcon()
.getIcon(ProtocolIcon.ICON_SIZE_64x64);
}
public byte[] getImage()
{
byte[] logoImage = null;
ProtocolIcon protocolIcon = protocolProvider.getProtocolIcon();
if(protocolIcon.isSizeSupported(ProtocolIcon.ICON_SIZE_64x64))
logoImage = protocolIcon.getIcon(ProtocolIcon.ICON_SIZE_64x64);
else if(protocolIcon.isSizeSupported(ProtocolIcon.ICON_SIZE_48x48))
logoImage = protocolIcon.getIcon(ProtocolIcon.ICON_SIZE_48x48);
return logoImage;
}
/**
* Returns the system room wrapper corresponding to this server.
*
* @return the system room wrapper corresponding to this server.
*/
public ChatRoomWrapper getSystemRoomWrapper()
{
return systemRoomWrapper;
}
/**
* Sets the system room corresponding to this server.
*
* @param systemRoom the system room to set
*/
public void setSystemRoom(ChatRoom systemRoom)
{
systemRoomWrapper.setChatRoom(systemRoom);
}
/**
* Returns the protocol provider service corresponding to this server
* wrapper.
*
* @return the protocol provider service corresponding to this server
* wrapper.
*/
public ProtocolProviderService getProtocolProvider()
{
return protocolProvider;
}
/**
* Adds the given chat room to this chat room provider.
*
* @param chatRoom the chat room to add.
*/
public void addChatRoom(ChatRoomWrapper chatRoom)
{
this.chatRoomsOrderedCopy.add(chatRoom);
}
/**
* Removes the given chat room from this provider.
*
* @param chatRoom the chat room to remove.
*/
public void removeChatRoom(ChatRoomWrapper chatRoom)
{
this.chatRoomsOrderedCopy.remove(chatRoom);
}
/**
* Returns <code>true</code> if the given chat room is contained in this
* provider, otherwise - returns <code>false</code>.
*
* @param chatRoom the chat room to search for.
* @return <code>true</code> if the given chat room is contained in this
* provider, otherwise - returns <code>false</code>.
*/
public boolean containsChatRoom(ChatRoomWrapper chatRoom)
{
synchronized (chatRoomsOrderedCopy)
{
return chatRoomsOrderedCopy.contains(chatRoom);
}
}
/**
* Returns the chat room wrapper contained in this provider that corresponds
* to the given chat room.
*
* @param chatRoom the chat room we're looking for.
* @return the chat room wrapper contained in this provider that corresponds
* to the given chat room.
*/
public ChatRoomWrapper findChatRoomWrapperForChatRoom(ChatRoom chatRoom)
{
return findChatRoomWrapperForChatRoomID(chatRoom.getIdentifier());
}
/**
* Returns the chat room wrapper contained in this provider that corresponds
* to the chat room with the given id.
*
* @param chatRoomID the id of the chat room we're looking for.
* @return the chat room wrapper contained in this provider that corresponds
* to the given chat room id.
*/
public ChatRoomWrapper findChatRoomWrapperForChatRoomID(String chatRoomID)
{
// Compare ids, cause saved chatrooms don't have ChatRoom object
// but Id's are the same.
for (ChatRoomWrapper chatRoomWrapper : chatRoomsOrderedCopy)
{
if (chatRoomWrapper.getChatRoomID()
.equals(chatRoomID))
{
return chatRoomWrapper;
}
}
return null;
}
/**
* Returns the number of chat rooms contained in this provider.
*
* @return the number of chat rooms contained in this provider.
*/
public int countChatRooms()
{
return chatRoomsOrderedCopy.size();
}
public ChatRoomWrapper getChatRoom(int index)
{
return chatRoomsOrderedCopy.get(index);
}
/**
* Returns the index of the given chat room in this provider.
*
* @param chatRoomWrapper the chat room to search for.
*
* @return the index of the given chat room in this provider.
*/
public int indexOf(ChatRoomWrapper chatRoomWrapper)
{
return chatRoomsOrderedCopy.indexOf(chatRoomWrapper);
}
/**
* Goes through the locally stored chat rooms list and for each
* {@link ChatRoomWrapper} tries to find the corresponding server stored
* {@link ChatRoom} in the specified operation set. Joins automatically all
* found chat rooms.
*/
public void synchronizeProvider()
{
final OperationSetMultiUserChat groupChatOpSet
= protocolProvider.getOperationSet(OperationSetMultiUserChat.class);
for(final ChatRoomWrapper chatRoomWrapper : chatRoomsOrderedCopy)
{
new Thread()
{
@Override
public void run()
{
ChatRoom chatRoom = null;
try
{
chatRoom = groupChatOpSet.findRoom(
chatRoomWrapper.getChatRoomName());
}
catch (OperationFailedException e1)
{
logger.error("Failed to find chat room with name:"
+ chatRoomWrapper.getChatRoomName(), e1);
}
catch (OperationNotSupportedException e1)
{
logger.error("Failed to find chat room with name:"
+ chatRoomWrapper.getChatRoomName(), e1);
}
if(chatRoom != null)
{
chatRoomWrapper.setChatRoom(chatRoom);
if(chatRoomWrapper.isAutojoin())
{
String nickName =
ConfigurationUtils.getChatRoomProperty(
chatRoomWrapper.getParentProvider()
.getProtocolProvider(), chatRoomWrapper
.getChatRoomID(), "userNickName");
if (nickName != null)
{
MUCActivator.getMUCService().joinChatRoom(
chatRoom, nickName, null);
}
else
{
MUCActivator.getMUCService().joinChatRoom(
chatRoomWrapper);
}
}
}
else
{
if(chatRoomWrapper.isAutojoin())
{
// chat room is not existent we must create it and join
// it
ChatRoomWrapper roomWrapper =
MUCActivator.getMUCService().createChatRoom(
chatRoomWrapper.getChatRoomName(),
chatRoomWrapper.getParentProvider()
.getProtocolProvider(),
new ArrayList<String>(), "", false, false,
true);
String nickName =
ConfigurationUtils.getChatRoomProperty(
chatRoomWrapper.getParentProvider()
.getProtocolProvider(), chatRoomWrapper
.getChatRoomID(), "userNickName");
if (nickName != null)
{
MUCActivator.getMUCService()
.joinChatRoom(roomWrapper.getChatRoom(),
nickName, null);
}
else
{
MUCActivator.getMUCService()
.joinChatRoom(roomWrapper);
}
}
}
}
}.start();
}
}
}
|