-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathXMPPCapabilities.m
349 lines (309 loc) · 7.7 KB
/
XMPPCapabilities.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
//
// Capabilities.m
// Jabber
//
// Created by David Chisnall on 08/05/2005.
// Copyright 2005 __MyCompanyName__. All rights reserved.
//
#import "XMPPCapabilities.h"
@implementation XMPPXMPPDiscoIdentity
+ (XMPPXMPPDiscoIdentity*) identityWithCategory:(NSString*)aCategory
type:(NSString*)aType
name:(NSString*)aName
{
return [[[XMPPXMPPDiscoIdentity alloc] initWithCategory:aCategory type:aType name:aName] autorelease];
}
- (XMPPXMPPDiscoIdentity*) initWithCategory:(NSString*)aCategory
type:(NSString*)aType
name:(NSString*)aName
{
SELFINIT
category = [aCategory retain];
type = [aType retain];
name = [aName retain];
return self;
}
+ (XMPPXMPPDiscoIdentity*) identityWithXML:(ETXMLNode*)xml
{
return [[[XMPPXMPPDiscoIdentity alloc] initWithXML:xml] autorelease];
}
- (XMPPXMPPDiscoIdentity*) initWithXML:(ETXMLNode*)xml
{
if(![[xml getType] isEqualToString:@"identity"])
{
return nil;
}
type = [xml get:@"type"];
name = [xml get:@"name"];
category = [xml get:@"category"];
if((type == nil) || (name == nil) || (category == nil))
{
return nil;
}
[type retain];
[name retain];
[category retain];
return self;
}
- (NSString*) category
{
return category;
}
- (NSString*) type
{
return type;
}
- (NSString*) name
{
return name;
}
- (ETXMLNode*) toXML
{
return [ETXMLNode ETXMLNodeWithType:@"identity"
attributes:[NSDictionary dictionaryWithObjectsAndKeys:
category, @"category",
type, @"type",
name, @"name",
nil]];
}
@end
@implementation XMPPDiscoNode
+ (XMPPDiscoNode*) discoNodeWithJID:(JID*)aJID
node:(NSString*)aNode
identities:(NSSet*)anIdentities
features:(NSSet*)aFeatures
{
return [[[XMPPDiscoNode alloc] initWithJID:aJID
node:aNode
identities:anIdentities
features:aFeatures] autorelease];
}
- (XMPPDiscoNode*) initWithJID:(JID*)aJID
node:(NSString*)aNode
identities:(NSSet*)anIdentities
features:(NSSet*)aFeatures
{
if((self = [self init]) == nil)
{
return nil;
}
jid = [aJID retain];
node = [aNode retain];
identities = [anIdentities retain];
features = [aFeatures retain];
return self;
}
+ (XMPPDiscoNode*) discoNodeFromXML:(ETXMLNode*)xml
{
return [[[XMPPDiscoNode alloc] initFromXML:xml] autorelease];
}
- (XMPPDiscoNode*) initFromXML:(ETXMLNode*)xml
{
if((self = [self init]) == nil)
{
return nil;
}
if([[xml getType] isEqualToString:@"iq"] && [[xml get:@"type"] isEqualToString:@"result"])
{
NSString * from = [xml get:@"from"];
ETXMLNode * query = [[xml getChildrenWithName:@"query"] anyObject];
//Check we are receiving a disco reply
if([[query get:@"xmlns"] isEqualToString:@"http://jabber.org/protocol/disco#info"])
{
NSMutableSet * mutableFeatures = [[NSMutableSet alloc] init];
NSMutableSet * mutableIdentities = [[NSMutableSet alloc] init];
NSEnumerator * identityEnumerator = [[query getChildrenWithName:@"identity"] objectEnumerator];
ETXMLNode * nextIdentity;
while((nextIdentity = [identityEnumerator nextObject]))
{
[mutableIdentities addObject:[XMPPXMPPDiscoIdentity identityWithXML:nextIdentity]];
}
NSEnumerator * enumerator = [[query getChildrenWithName:@"feature"] objectEnumerator];
ETXMLNode * nextFeature;
while((nextFeature = [enumerator nextObject]))
{
[mutableFeatures addObject:[nextFeature get:@"var"]];
}
jid = [[JID jidWithString:from] retain];
//In theory, I should make these into new NSSets, but it save a bit of time if I don't bother.
features = mutableFeatures;
identities = mutableIdentities;
return self;
}
}
[self release];
return nil;
}
- (ETXMLNode*) toXML
{
ETXMLNode * iq = [[[ETXMLNode alloc] initWithType:@"iq"
attributes:[NSDictionary dictionaryWithObjectsAndKeys:
[jid jidString], @"from",
@"result", @"type",
nil]] autorelease];
ETXMLNode * query = [[[ETXMLNode alloc] initWithType:@"query"
attributes:[NSDictionary dictionaryWithObject:@"http://jabber.org/protocol/disco#info"
forKey:@"xmlns"]] autorelease];
//Add identities
NSEnumerator * enumerator = [identities objectEnumerator];
XMPPXMPPDiscoIdentity * identity;
while((identity = [enumerator nextObject]))
{
[query addChild:[identity toXML]];
}
enumerator = [features objectEnumerator];
NSString * feature;
while((feature = [enumerator nextObject]))
{
ETXMLNode * featureNode = [[[ETXMLNode alloc] initWithType:@"feature"
attributes:[NSDictionary dictionaryWithObject:feature
forKey:@"var"]] autorelease];
[query addChild:featureNode];
}
[iq addChild:query];
return iq;
}
- (NSString*) name
{
return name;
}
- (NSString*) node
{
return node;
}
- (NSString*) type
{
return type;
}
- (JID*) jid
{
return jid;
}
- (BOOL) supportsFeature:(NSString*)feature
{
if([features member:feature] != nil)
{
return YES;
}
return NO;
}
- (NSSet*) features
{
return features;
}
- (void) dealloc
{
[name release];
[type release];
[features release];
[jid release];
[super dealloc];
}
@end
@implementation XMPPDiscoNodeTree
+ (XMPPDiscoTreeNode*) discoTreeNodeWithJID:(JID*)aJID
name:(NSString*)aName
node:(NSString*)aNode
{
return [[[XMPPDiscoTreeNode alloc] initWithJID:aJID
name:aName
node:aNode] autorelease];
}
- (XMPPDiscoTreeNode*) initWithJID:(JID*)aJID
name:(NSString*)aName
node:(NSString*)aNode
{
if((self = [self init]) == nil)
{
return nil;
}
jid = [aJID retain];
name = [aName retain];
node = [aNode retain];
children = nil;
return self;
}
- (void) addChildrenFromXML:(ETXMLNode*)xml
{
[children release];
children = [[NSMutableSet alloc] init];
ETXMLNode * query = [[xml getChildrenWithName:@"query"] anyObject];
ETXMLNode * child;
NSEnumerator * enumerator = [[query children] objectEnumerator];
while((child = [enumerator nextObject]))
{
if([[child getType] isEqualToString:@"item"])
{
[children addObject:[XMPPDiscoTreeNode discoTreeNodeWithJID:[JID jidWithString:[child get:@"jid"]]
name:[child get:@"name"]
node:[child get:@"node"]
children:nil]];
}
}
}
- (JID*) jid
{
return jid;
}
- (NSString*) name
{
return name;
}
- (NSString*) node
{
return node;
}
- (NSSet*) children
{
return children;
}
- (unsigned) hash
{
return [[NSString stringWithFormat:@"%@ <@£$@^&> %@", [jid jidString], name] hash];
}
- (BOOL)isEqual:(id)anObject
{
if(![anObject isKindOfClass:[XMPPDiscoTreeNode class]])
{
return NO;
}
return [jid isEqual:[anObject jid]] && [name isEqualToString:[anObject name]];
}
- (ETXMLNode*) toXML
{
ETXMLNode * iq = [ETXMLNode ETXMLNodeWithType:@"iq"
attributes:[NSDictionary dictionaryWithObjectsAndKeys:
[jid jidString], @"from",
@"result", @"type",
nil]];
ETXMLNode * query = [ETXMLNode ETXMLNodeWithType:@"query"
attributes:[NSDictionary dictionaryWithObjectsAndKeys:
@"http://jabber.org/protocol/disco#items", @"xmlns",
nil]];
[iq addChild:query];
NSEnumerator * enumerator = [children objectEnumerator];
XMPPDiscoTreeNode * node;
while((node = [enumerator nextObject]))
{
[query addChild:[node toXMLAsChild]];
}
return iq;
}
- (ETXMLNode*) toXMLAsChild
{
if(node == nil)
{
return [ETXMLNode ETXMLNodeWithType:@"item"
attributes:[NSDictionary dictionaryWithObjectsAndKeys:
[jid jidString], @"jid",
name, @"name",
nil]];
}
return [ETXMLNode ETXMLNodeWithType:@"item"
attributes:[NSDictionary dictionaryWithObjectsAndKeys:
[jid jidString], @"jid",
name, @"name",
node, @"node",
nil]];
}
@end