-
Notifications
You must be signed in to change notification settings - Fork 2
/
XMPPRoster.m
416 lines (392 loc) · 11.8 KB
/
XMPPRoster.m
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
//
// XMPPRoster.m
// Jabber
//
// Created by David Chisnall on Sun Apr 25 2004.
// Copyright (c) 2004 __MyCompanyName__. All rights reserved.
//
#import "XMPPRoster.h"
#import "XMPPAccount.h"
#import "XMPPPerson.h"
#import "XMPPRootIdentity.h"
#import "XMPPResource.h"
#import "CompareHack.h"
#import "XMPPServiceDiscovery.h"
#import <EtoileFoundation/EtoileFoundation.h>
#import <EtoileXML/ETXMLWriter.h>
@implementation XMPPRoster
- (XMPPRoster*) initWithAccount:(id)anAccount
{
SUPERINIT
if(![anAccount isKindOfClass: [XMPPAccount class]])
{
return nil;
}
account = anAccount;
peopleByJID = [[NSMutableDictionary alloc] init];
groups = [[NSMutableArray alloc] init];
groupsByName = [[NSMutableDictionary alloc] init];
queriedServers = [[NSMutableSet alloc] init];
initialMessage = nil;
initialStatus = PRESENCE_ONLINE;
return self;
}
- (void) setInitialStatus:(unsigned char)aStatus withMessage:(NSString*)aMessage
{
initialMessage = aMessage;
initialStatus = aStatus;
}
- (void) offline
{
FOREACH(peopleByJID, person, XMPPPerson*)
{
FOREACH([person identityList], identity, XMPPIdentity*)
{
XMPPPresence * unknownPresence = [[XMPPPresence alloc] initWithJID:[identity jid]];
[identity setPresence:unknownPresence];
}
}
connected = NO;
//Trigger a roster redisplay when we go offline
[delegate update:nil];
}
- (void) addRosterFromQuery:(XMPPInfoQueryStanza*) rosterQuery
{
#ifndef DNDEBUG
ETLog(@"Parsing roster...");
#endif
connection = [(XMPPAccount*)account connection];
dispatcher = [connection dispatcher];
if(disco == nil)
{
disco = (XMPPServiceDiscovery*)[[XMPPServiceDiscovery alloc] initWithAccount:account];
}
for (__strong XMPPIdentity *newIdentity in [[rosterQuery children] objectForKey:@"RosterItems"])
{
JID * jid = [newIdentity jid];
if([[newIdentity subscription] isEqualToString:@"remove"])
{
XMPPPerson * person = [self personForJID:jid];
XMPPIdentity * oldIdentity = [person identityForJID:jid];
XMPPRosterGroup * group = [self groupNamed:[person group]];
[group removeIdentity:oldIdentity];
[peopleByJID removeObjectForKey:[jid jidStringWithNoResource]];
if([group numberOfPeopleInGroupMoreOnlineThan:PRESENCE_UNKNOWN + 10] == 0)
{
[groups removeObject:group];
[groupsByName removeObjectForKey:[group groupName]];
}
}
else
{
XMPPIdentity * oldIdentity = [[peopleByJID objectForKey:[jid jidString]] identityForJID:jid];
if(oldIdentity != nil)
{
if([[oldIdentity name] isEqualToString:[newIdentity name]] &&
[[oldIdentity group] isEqualToString:[newIdentity group]])
{
continue;
}
[[groupsByName objectForKey:[oldIdentity group]] removeIdentity:oldIdentity];
[oldIdentity setGroup:[newIdentity group]];
[oldIdentity setName:[newIdentity name]];
newIdentity = oldIdentity;
}
NSString * server = [jid domain];
if(![queriedServers containsObject:server])
{
[queriedServers addObject:server];
[disco featuresForJID:[JID jidWithString:server] node:nil];
}
NSString * groupName = [newIdentity group];
if(groupName == nil)
{
groupName = @"None";
}
XMPPRosterGroup * group = [groupsByName objectForKey:groupName];
if(group == nil)
{
group = [XMPPRosterGroup groupWithRoster:self];
[group groupName:groupName];
[groupsByName setObject:group forKey:groupName];
[groups addObject:group];
//[groups sortUsingSelector:@selector(compare:)];
[groups sortUsingFunction:compareTest context:nil];
}
[group addIdentity:newIdentity];
[peopleByJID setObject:[group personNamed:[newIdentity name]]
forKey:[jid jidStringWithNoResource]];
[dispatcher addPresenceHandler:[newIdentity person]
ForJID:[jid jidStringWithNoResource]];
}
}
//Once we have received the roster, tell the server we are online.
if(!connected)
{
[[(XMPPAccount*)account connection] setStatus:initialStatus withMessage:initialMessage];
}
[self update:nil];
}
- (void) handlePresence:(XMPPPresence*)aPresence
{
switch([aPresence type])
{
case subscribe:
[[NSNotificationCenter defaultCenter] postNotificationName:@"TRXMPPSubscriptionRequest"
object:aPresence];
break;
case subscribed:
[[NSNotificationCenter defaultCenter] postNotificationName:@"TRXMPPSubscription"
object:aPresence];
break;
case unsubscribe:
[[NSNotificationCenter defaultCenter] postNotificationName:@"TRXMPPUnsubscriptionRequest"
object:aPresence];
break;
case unsubscribed:
[[NSNotificationCenter defaultCenter] postNotificationName:@"TRXMPPUnubscription"
object:aPresence];
break;
//Ignore presence info for people not on the roster.
//If there is a conversation open for these people, it should have registered itself already
case online:
{
NSString * caps = [aPresence caps];
if(caps != nil)
{
[disco setCapabilities:caps forJID:[aPresence jid]]; }
//TODO: Make this temporarily add people to the roster when they bing-bong you.
break;
}
case unavailable:
default:
break;
}
}
- (void) handleInfoQuery:(XMPPInfoQueryStanza*)anIq
{
#ifndef DNDEBUG
ETLog(@"Children of iq node: %@", [anIq children]);
#endif
if([[anIq children] objectForKey:@"RosterItems"] != nil)
{
[self addRosterFromQuery:anIq];
}
}
- (void) subscribe:(JID*)aJid withName:(NSString*)aName inGroup:(NSString*)aGroup
{
/*
<iq type="set" id="anID" >
<query xmlns="jabber:iq:roster">
<item name="The Raven" jid="theraven@theravensnest.org" >
<group>Me</group>
</item>
</query>
</iq>
<presence type="subscribe" to="theraven@theravensnest.org" />
*/
NSString * jidString = [aJid jidString];
ETXMLWriter *xmlWriter = [connection xmlWriter];
[xmlWriter startElement: @"iq"
attributes: D(@"set", @"type", [connection nextMessageID], @"id")];
[xmlWriter startElement: @"query"
attributes: D(@"jabber:iq:roster", @"xmlns")];
[xmlWriter startElement: @"item"
attributes: D(aName, @"name", jidString, @"jid")];
if(aGroup != nil && ![aGroup isEqualToString:@""])
{
[xmlWriter startAndEndElement: @"group"
cdata: aGroup];
}
[xmlWriter endElement]; //</item>
[xmlWriter endElement]; //</query>
[xmlWriter endElement]; //</iq>
//Add the group if one is specified
[xmlWriter startAndEndElement: @"presence"
attributes: D(@"subscribe", @"type", jidString, @"to")];
}
- (void) unsubscribe:(JID*)aJid
{
/*<iq type="set" id="aab7a" >
<query xmlns="jabber:iq:roster">
<item subscription="remove" jid="gimbo@theravensnest.org" />
</query>
</iq>*/
ETXMLWriter *xmlWriter = [connection xmlWriter];
[xmlWriter startElement: @"iq"
attributes: D(@"set", @"type",
[connection nextMessageID], @"id")];
[xmlWriter startElement: @"query"
attributes: D(@"jabber:iq:roster", @"xmlns")];
[xmlWriter startAndEndElement: @"item"
attributes: D(@"remove", @"subscription", [aJid jidString], @"jid")];
[xmlWriter endElement]; //</query>
[xmlWriter endElement]; //</iq>
}
- (void) authorise:(JID*)aJid
{
ETXMLWriter *xmlWriter = [connection xmlWriter];
[xmlWriter startAndEndElement: @"presence"
attributes: D(@"subscribed", @"type",[aJid jidString], @"to")];
}
- (void) unauthorise:(JID*)aJid
{
ETXMLWriter *xmlWriter = [connection xmlWriter];
[xmlWriter startAndEndElement: @"presence"
attributes: D(@"unsubscribed", @"type",[aJid jidString], @"to")];
}
/*
XMPPRoster updates look like this:
<iq type='set' id='roster_3'>
<query xmlns='jabber:iq:roster'>
<item jid='romeo@example.net'
name='Romeo'
subscription='both'>
<group>Friends</group>
<group>Lovers</group>
</item>
</query>
</iq>
*/
- (void)sendIqSettingGroup: (NSString*)aGroup
name: (NSString*)aName
forJID: (NSString*)aJID
{
ETXMLWriter *xmlWriter = [connection xmlWriter];
[xmlWriter startElement: @"iq"
attributes: D(@"set", @"type",[connection nextMessageID], @"id")];
[xmlWriter startElement: @"query"
attributes: D(@"jabber:iq:roster", @"xmlns")];
[xmlWriter startElement: @"item"
attributes: D(aName, @"name", aJID, @"jid")];
[xmlWriter startAndEndElement: @"group"
cdata: aGroup];
[xmlWriter endElement]; //</item>
[xmlWriter endElement]; //</query>
[xmlWriter endElement]; //</iq>
}
- (void) setName:(NSString*)aName group:(NSString*)aGroup forIdentity:(XMPPIdentity*)anIdentity
{
XMPPPerson * person = [self personForJID:[anIdentity jid]];
//Don't use this for people who aren't in our roster.
if(person == nil)
{
return;
}
[self sendIqSettingGroup: aGroup
name: aName
forJID: [[anIdentity jid] jidString]];
}
- (void) setGroup:(NSString*)aGroup forIdentity:(XMPPIdentity*)anIdentity
{
XMPPPerson * person = [self personForJID:[anIdentity jid]];
//Don't use this for people who aren't in our roster.
if(person == nil)
{
return;
}
[self sendIqSettingGroup: aGroup
name: [person name]
forJID: [[anIdentity jid] jidString]];
}
- (XMPPPerson*) personForJID:(JID*)aJid
{
XMPPPerson * person = [peopleByJID objectForKey:[aJid jidStringWithNoResource]];
if(person == nil)
{
XMPPRootIdentity * identity = [[XMPPRootIdentity alloc] initWithJID:[aJid rootJID]
withName:[aJid node]
inGroup:nil
forPerson:nil];
person = [[XMPPPerson alloc] initWithIdentity:identity
forRoster:[account roster]];
[identity person:person];
if([aJid resource] != nil)
{
[identity addResource:aJid];
}
[peopleByJID setObject:person forKey:[aJid jidStringWithNoResource]];
XMPPRosterGroup * group = [groupsByName objectForKey:@"None"];
if(group == nil)
{
group = [XMPPRosterGroup groupWithRoster:self];
[group groupName:@"None"];
[groupsByName setObject:group forKey:@"None"];
[groups addObject:group];
//[groups sortUsingSelector:@selector(compare:)];
[groups sortUsingFunction:compareTest context:nil];
}
[group addIdentity:identity];
}
return person;
}
- (XMPPRosterGroup*) groupForIndex:(int)anIndex
{
return [groups objectAtIndex:anIndex];
}
- (XMPPRosterGroup*) groupForIndex:(int)anIndex ignoringPeopleLessOnlineThan:(unsigned int)onlineState
{
int count = -1;
FOREACH(groups, group, XMPPRosterGroup*)
{
if([group numberOfPeopleInGroupMoreOnlineThan:onlineState] > 0)
{
count++;
if(count == anIndex)
{
return group;
}
}
}
return nil;
}
- (XMPPRosterGroup*) groupNamed:(NSString*)aGroupName
{
if(aGroupName == nil)
{
aGroupName = @"None";
}
return [groupsByName objectForKey:aGroupName];
}
- (NSUInteger) numberOfGroups
{
return [groups count];
}
//TODO: Fix typo in selector name
- (int) numberOfGroupsContainingPeopleMoreOnlineThan:(unsigned int)onlineState
{
int count = 0;
FOREACH(groups, group, XMPPRosterGroup*)
{
if([group numberOfPeopleInGroupMoreOnlineThan:onlineState] > 0)
{
count++;
}
}
return count;
}
- (id) delegate
{
return delegate;
}
- (void) setDelegate:(id <RosterDelegate, NSObject>)aDelegate
{
delegate = aDelegate;
}
- (XMPPDispatcher*) dispatcher
{
return dispatcher;
}
- (XMPPServiceDiscovery*) disco
{
return disco;
}
- (id) connection
{
return connection;
}
- (void) update:(id)anObject
{
[delegate update:anObject];
}
@end