638594c26cac99a8fe7ae75999871e0cc44a69d7.svn-base
12.5 KB
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
#import "XMPPMUC.h"
#import "XMPPFramework.h"
#import "XMPPLogging.h"
#import "XMPPIDTracker.h"
#if DEBUG
static const int xmppLogLevel = XMPP_LOG_LEVEL_VERBOSE;
#else
static const int xmppLogLevel = XMPP_LOG_LEVEL_WARN;
#endif
NSString *const XMPPDiscoverItemsNamespace = @"http://jabber.org/protocol/disco#items";
NSString *const XMPPMUCErrorDomain = @"XMPPMUCErrorDomain";
@interface XMPPMUC()
{
BOOL hasRequestedServices;
BOOL hasRequestedRooms;
}
@end
@implementation XMPPMUC
- (id)initWithDispatchQueue:(dispatch_queue_t)queue
{
if ((self = [super initWithDispatchQueue:queue])) {
rooms = [[NSMutableSet alloc] init];
}
return self;
}
- (BOOL)activate:(XMPPStream *)aXmppStream
{
if ([super activate:aXmppStream])
{
XMPPLogVerbose(@"%@: Activated", THIS_FILE);
xmppIDTracker = [[XMPPIDTracker alloc] initWithStream:xmppStream
dispatchQueue:moduleQueue];
#ifdef _XMPP_CAPABILITIES_H
[xmppStream autoAddDelegate:self
delegateQueue:moduleQueue
toModulesOfClass:[XMPPCapabilities class]];
#endif
return YES;
}
return NO;
}
- (void)deactivate
{
XMPPLogTrace();
dispatch_block_t block = ^{ @autoreleasepool {
[xmppIDTracker removeAllIDs];
xmppIDTracker = nil;
}};
if (dispatch_get_specific(moduleQueueTag))
block();
else
dispatch_sync(moduleQueue, block);
#ifdef _XMPP_CAPABILITIES_H
[xmppStream removeAutoDelegate:self delegateQueue:moduleQueue fromModulesOfClass:[XMPPCapabilities class]];
#endif
[super deactivate];
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#pragma mark Public API
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- (BOOL)isMUCRoomElement:(XMPPElement *)element
{
XMPPJID *bareFrom = [[element from] bareJID];
if (bareFrom == nil)
{
return NO;
}
__block BOOL result = NO;
dispatch_block_t block = ^{ @autoreleasepool {
result = [rooms containsObject:bareFrom];
}};
if (dispatch_get_specific(moduleQueueTag))
block();
else
dispatch_sync(moduleQueue, block);
return result;
}
- (BOOL)isMUCRoomPresence:(XMPPPresence *)presence
{
return [self isMUCRoomElement:presence];
}
- (BOOL)isMUCRoomMessage:(XMPPMessage *)message
{
return [self isMUCRoomElement:message];
}
/**
* This method provides functionality of XEP-0045 6.1 Discovering a MUC Service.
*
* @link {http://xmpp.org/extensions/xep-0045.html#disco-service}
*
* Example 1. Entity Queries Server for Associated Services
*
* <iq from='hag66@shakespeare.lit/pda'
* id='h7ns81g'
* to='shakespeare.lit'
* type='get'>
* <query xmlns='http://jabber.org/protocol/disco#items'/>
* </iq>
*/
- (void)discoverServices
{
// This is a public method, so it may be invoked on any thread/queue.
dispatch_block_t block = ^{ @autoreleasepool {
if (hasRequestedServices) return; // We've already requested services
NSString *toStr = xmppStream.myJID.domain;
NSXMLElement *query = [NSXMLElement elementWithName:@"query"
xmlns:XMPPDiscoverItemsNamespace];
XMPPIQ *iq = [XMPPIQ iqWithType:@"get"
to:[XMPPJID jidWithString:toStr]
elementID:[xmppStream generateUUID]
child:query];
[xmppIDTracker addElement:iq
target:self
selector:@selector(handleDiscoverServicesQueryIQ:withInfo:)
timeout:60];
[xmppStream sendElement:iq];
hasRequestedServices = YES;
}};
if (dispatch_get_specific(moduleQueueTag))
block();
else
dispatch_async(moduleQueue, block);
}
/**
* This method provides functionality of XEP-0045 6.3 Discovering Rooms
*
* @link {http://xmpp.org/extensions/xep-0045.html#disco-rooms}
*
* Example 5. Entity Queries Chat Service for Rooms
*
* <iq from='hag66@shakespeare.lit/pda'
* id='zb8q41f4'
* to='chat.shakespeare.lit'
* type='get'>
* <query xmlns='http://jabber.org/protocol/disco#items'/>
* </iq>
*/
- (BOOL)discoverRoomsForServiceNamed:(NSString *)serviceName
{
// This is a public method, so it may be invoked on any thread/queue.
if (serviceName.length < 2)
return NO;
dispatch_block_t block = ^{ @autoreleasepool {
if (hasRequestedRooms) return; // We've already requested rooms
NSXMLElement *query = [NSXMLElement elementWithName:@"query"
xmlns:XMPPDiscoverItemsNamespace];
XMPPIQ *iq = [XMPPIQ iqWithType:@"get"
to:[XMPPJID jidWithString:serviceName]
elementID:[xmppStream generateUUID]
child:query];
[xmppIDTracker addElement:iq
target:self
selector:@selector(handleDiscoverRoomsQueryIQ:withInfo:)
timeout:60];
[xmppStream sendElement:iq];
hasRequestedRooms = YES;
}};
if (dispatch_get_specific(moduleQueueTag))
block();
else
dispatch_async(moduleQueue, block);
return YES;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#pragma mark XMPPIDTracker
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/**
* This method handles the response received (or not received) after calling discoverServices.
*/
- (void)handleDiscoverServicesQueryIQ:(XMPPIQ *)iq withInfo:(XMPPBasicTrackingInfo *)info
{
dispatch_block_t block = ^{ @autoreleasepool {
NSXMLElement *errorElem = [iq elementForName:@"error"];
if (errorElem) {
NSString *errMsg = [errorElem.children componentsJoinedByString:@", "];
NSDictionary *dict = @{NSLocalizedDescriptionKey : errMsg};
NSError *error = [NSError errorWithDomain:XMPPMUCErrorDomain
code:[errorElem attributeIntegerValueForName:@"code"
withDefaultValue:0]
userInfo:dict];
[multicastDelegate xmppMUCFailedToDiscoverServices:self
withError:error];
return;
}
NSXMLElement *query = [iq elementForName:@"query"
xmlns:XMPPDiscoverItemsNamespace];
NSArray *items = [query elementsForName:@"item"];
[multicastDelegate xmppMUC:self didDiscoverServices:items];
hasRequestedServices = NO; // Set this back to NO to allow for future requests
}};
if (dispatch_get_specific(moduleQueueTag))
block();
else
dispatch_async(moduleQueue, block);
}
/**
* This method handles the response received (or not received) after calling discoverRoomsForServiceNamed:.
*/
- (void)handleDiscoverRoomsQueryIQ:(XMPPIQ *)iq withInfo:(XMPPBasicTrackingInfo *)info
{
dispatch_block_t block = ^{ @autoreleasepool {
NSXMLElement *errorElem = [iq elementForName:@"error"];
NSString *serviceName = [iq attributeStringValueForName:@"from" withDefaultValue:@""];
if (errorElem) {
NSString *errMsg = [errorElem.children componentsJoinedByString:@", "];
NSDictionary *dict = @{NSLocalizedDescriptionKey : errMsg};
NSError *error = [NSError errorWithDomain:XMPPMUCErrorDomain
code:[errorElem attributeIntegerValueForName:@"code"
withDefaultValue:0]
userInfo:dict];
[multicastDelegate xmppMUC:self
failedToDiscoverRoomsForServiceNamed:serviceName
withError:error];
return;
}
NSXMLElement *query = [iq elementForName:@"query"
xmlns:XMPPDiscoverItemsNamespace];
NSArray *items = [query elementsForName:@"item"];
[multicastDelegate xmppMUC:self
didDiscoverRooms:items
forServiceNamed:serviceName];
hasRequestedRooms = NO; // Set this back to NO to allow for future requests
}};
if (dispatch_get_specific(moduleQueueTag))
block();
else
dispatch_async(moduleQueue, block);
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#pragma mark XMPPStream Delegate
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- (void)xmppStream:(XMPPStream *)sender didRegisterModule:(id)module
{
if ([module isKindOfClass:[XMPPRoom class]])
{
XMPPJID *roomJID = [(XMPPRoom *)module roomJID];
[rooms addObject:roomJID];
}
}
- (void)xmppStream:(XMPPStream *)sender willUnregisterModule:(id)module
{
if ([module isKindOfClass:[XMPPRoom class]])
{
XMPPJID *roomJID = [(XMPPRoom *)module roomJID];
// It's common for the room to get deactivated and deallocated before
// we've received the goodbye presence from the server.
// So we're going to postpone for a bit removing the roomJID from the list.
// This way the isMUCRoomElement will still remain accurate
// for presence elements that may arrive momentarily.
double delayInSeconds = 30.0;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC);
dispatch_after(popTime, moduleQueue, ^{ @autoreleasepool {
[rooms removeObject:roomJID];
}});
}
}
- (void)xmppStream:(XMPPStream *)sender didReceiveMessage:(XMPPMessage *)message
{
// Examples from XEP-0045:
//
//
// Example 124. Room Sends Invitation to New Member:
//
// <message from='darkcave@chat.shakespeare.lit' to='hecate@shakespeare.lit'>
// <x xmlns='http://jabber.org/protocol/muc#user'>
// <invite from='bard@shakespeare.lit'/>
// <password>cauldronburn</password>
// </x>
// </message>
//
//
// Example 125. Service Returns Error on Attempt by Mere Member to Invite Others to a Members-Only Room
//
// <message from='darkcave@chat.shakespeare.lit' to='hag66@shakespeare.lit/pda' type='error'>
// <x xmlns='http://jabber.org/protocol/muc#user'>
// <invite to='hecate@shakespeare.lit'>
// <reason>
// Hey Hecate, this is the place for all good witches!
// </reason>
// </invite>
// </x>
// <error type='auth'>
// <forbidden xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
// </error>
// </message>
//
//
// Example 50. Room Informs Invitor that Invitation Was Declined
//
// <message from='darkcave@chat.shakespeare.lit' to='crone1@shakespeare.lit/desktop'>
// <x xmlns='http://jabber.org/protocol/muc#user'>
// <decline from='hecate@shakespeare.lit'>
// <reason>
// Sorry, I'm too busy right now.
// </reason>
// </decline>
// </x>
// </message>
//
//
// Examples from XEP-0249:
//
//
// Example 1. A direct invitation
//
// <message from='crone1@shakespeare.lit/desktop' to='hecate@shakespeare.lit'>
// <x xmlns='jabber:x:conference'
// jid='darkcave@macbeth.shakespeare.lit'
// password='cauldronburn'
// reason='Hey Hecate, this is the place for all good witches!'/>
// </message>
NSXMLElement * x = [message elementForName:@"x" xmlns:XMPPMUCUserNamespace];
NSXMLElement * invite = [x elementForName:@"invite"];
NSXMLElement * decline = [x elementForName:@"decline"];
NSXMLElement * directInvite = [message elementForName:@"x" xmlns:@"jabber:x:conference"];
XMPPJID * roomJID = [message from];
if (invite || directInvite)
{
[multicastDelegate xmppMUC:self roomJID:roomJID didReceiveInvitation:message];
}
else if (decline)
{
[multicastDelegate xmppMUC:self roomJID:roomJID didReceiveInvitationDecline:message];
}
}
- (BOOL)xmppStream:(XMPPStream *)stream didReceiveIQ:(XMPPIQ *)iq
{
NSString *type = [iq type];
if ([type isEqualToString:@"result"] || [type isEqualToString:@"error"]) {
return [xmppIDTracker invokeForElement:iq withObject:iq];
}
return NO;
}
#ifdef _XMPP_CAPABILITIES_H
/**
* If an XMPPCapabilites instance is used we want to advertise our support for MUC.
**/
- (void)xmppCapabilities:(XMPPCapabilities *)sender collectingMyCapabilities:(NSXMLElement *)query
{
// This method is invoked on our moduleQueue.
// <query xmlns="http://jabber.org/protocol/disco#info">
// ...
// <feature var='http://jabber.org/protocol/muc'/>
// ...
// </query>
NSXMLElement *feature = [NSXMLElement elementWithName:@"feature"];
[feature addAttributeWithName:@"var" stringValue:@"http://jabber.org/protocol/muc"];
[query addChild:feature];
}
#endif
@end