830 lines
18 KiB
Objective-C
830 lines
18 KiB
Objective-C
/*
|
|
* Copyright (c) 2010, 2011, Jonathan Schleifer <js@webkeks.org>
|
|
* Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de>
|
|
*
|
|
* https://webkeks.org/hg/objxmpp/
|
|
*
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice is present in all copies.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#define XMPP_CONNECTION_M
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stringprep.h>
|
|
#include <idna.h>
|
|
|
|
#import <ObjOpenSSL/SSLSocket.h>
|
|
|
|
#import "XMPPConnection.h"
|
|
#import "XMPPSCRAMAuth.h"
|
|
#import "XMPPPLAINAuth.h"
|
|
#import "XMPPStanza.h"
|
|
#import "XMPPJID.h"
|
|
#import "XMPPIQ.h"
|
|
#import "XMPPMessage.h"
|
|
#import "XMPPPresence.h"
|
|
#import "XMPPRoster.h"
|
|
#import "XMPPRosterItem.h"
|
|
#import "XMPPExceptions.h"
|
|
|
|
@implementation XMPPConnection
|
|
+ connection
|
|
{
|
|
return [[[self alloc] init] autorelease];
|
|
}
|
|
|
|
- init
|
|
{
|
|
self = [super init];
|
|
|
|
@try {
|
|
sock = [[OFTCPSocket alloc] init];
|
|
parser = [[OFXMLParser alloc] init];
|
|
elementBuilder = [[OFXMLElementBuilder alloc] init];
|
|
|
|
port = 5222;
|
|
|
|
[parser setDelegate: self];
|
|
[elementBuilder setDelegate: self];
|
|
|
|
roster = [[XMPPRoster alloc] initWithConnection: self];
|
|
} @catch (id e) {
|
|
[self release];
|
|
@throw e;
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)dealloc
|
|
{
|
|
[sock release];
|
|
[parser release];
|
|
[elementBuilder release];
|
|
[username release];
|
|
[password release];
|
|
[server release];
|
|
[resource release];
|
|
[JID release];
|
|
[delegate release];
|
|
[authModule release];
|
|
[bindID release];
|
|
[sessionID release];
|
|
[rosterID release];
|
|
[roster release];
|
|
|
|
[super dealloc];
|
|
}
|
|
|
|
- (void)setUsername: (OFString*)username_
|
|
{
|
|
OFString *old = username;
|
|
char *node;
|
|
Stringprep_rc rc;
|
|
|
|
if ((rc = stringprep_profile([username_ cString], &node,
|
|
"SASLprep", 0)) != STRINGPREP_OK)
|
|
@throw [XMPPStringPrepFailedException newWithClass: isa
|
|
connection: self
|
|
profile: @"SASLprep"
|
|
string: username_];
|
|
|
|
@try {
|
|
username = [[OFString alloc] initWithCString: node];
|
|
} @finally {
|
|
free(node);
|
|
}
|
|
|
|
[old release];
|
|
}
|
|
|
|
- (OFString*)username
|
|
{
|
|
return [[username copy] autorelease];
|
|
}
|
|
|
|
- (void)setResource: (OFString*)resource_
|
|
{
|
|
OFString *old = resource;
|
|
char *res;
|
|
Stringprep_rc rc;
|
|
|
|
if ((rc = stringprep_profile([resource_ cString], &res,
|
|
"Resourceprep", 0)) != STRINGPREP_OK)
|
|
@throw [XMPPStringPrepFailedException
|
|
newWithClass: isa
|
|
connection: self
|
|
profile: @"Resourceprep"
|
|
string: resource_];
|
|
|
|
@try {
|
|
resource = [[OFString alloc] initWithCString: res];
|
|
} @finally {
|
|
free(res);
|
|
}
|
|
|
|
[old release];
|
|
}
|
|
|
|
- (OFString*)resource
|
|
{
|
|
return [[resource copy] autorelease];
|
|
}
|
|
|
|
- (void)setServer: (OFString*)server_
|
|
{
|
|
OFString *old = server;
|
|
char *srv;
|
|
Idna_rc rc;
|
|
|
|
if ((rc = idna_to_ascii_8z([server_ cString],
|
|
&srv, IDNA_USE_STD3_ASCII_RULES)) != IDNA_SUCCESS)
|
|
@throw [XMPPIDNATranslationFailedException
|
|
newWithClass: isa
|
|
connection: self
|
|
operation: @"ToASCII"
|
|
string: server_];
|
|
|
|
@try {
|
|
server = [[OFString alloc] initWithCString: srv];
|
|
} @finally {
|
|
free(srv);
|
|
}
|
|
|
|
[old release];
|
|
}
|
|
|
|
- (OFString*)server
|
|
{
|
|
return [[server copy] autorelease];
|
|
}
|
|
|
|
- (void)setPassword: (OFString*)password_
|
|
{
|
|
OFString *old = password;
|
|
char *pass;
|
|
Stringprep_rc rc;
|
|
|
|
if ((rc = stringprep_profile([password_ cString], &pass,
|
|
"SASLprep", 0)) != STRINGPREP_OK)
|
|
@throw [XMPPStringPrepFailedException newWithClass: isa
|
|
connection: self
|
|
profile: @"SASLprep"
|
|
string: password_];
|
|
|
|
@try {
|
|
password = [[OFString alloc] initWithCString: pass];
|
|
} @finally {
|
|
free(pass);
|
|
}
|
|
|
|
[old release];
|
|
}
|
|
|
|
- (OFString*)password
|
|
{
|
|
return [[password copy] autorelease];
|
|
}
|
|
|
|
- (void)connect
|
|
{
|
|
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
|
|
|
|
[sock connectToHost: server
|
|
onPort: port];
|
|
[self XMPP_startStream];
|
|
|
|
[pool release];
|
|
}
|
|
|
|
- (void)handleConnection
|
|
{
|
|
char buf[512];
|
|
|
|
for (;;) {
|
|
size_t len = [sock readNBytes: 512
|
|
intoBuffer: buf];
|
|
|
|
if (len < 1 && [delegate respondsToSelector:
|
|
@selector(connectionWasClosed:)])
|
|
[delegate connectionWasClosed: self];
|
|
|
|
[parser parseBuffer: buf
|
|
withSize: len];
|
|
}
|
|
}
|
|
|
|
- (void)parseBuffer: (const char*)buf
|
|
withSize: (size_t)size
|
|
{
|
|
if (size < 1 && [delegate respondsToSelector:
|
|
@selector(connectionWasClosed:)])
|
|
[delegate connectionWasClosed: self];
|
|
|
|
[parser parseBuffer: buf
|
|
withSize: size];
|
|
}
|
|
|
|
- (OFTCPSocket*)socket
|
|
{
|
|
return [[sock retain] autorelease];
|
|
}
|
|
|
|
- (void)sendStanza: (OFXMLElement*)elem
|
|
{
|
|
of_log(@"Out: %@", elem);
|
|
[sock writeString: [elem XMLString]];
|
|
}
|
|
|
|
- (OFString*)generateStanzaID
|
|
{
|
|
return [OFString stringWithFormat: @"objxmpp_%u", lastID++];
|
|
}
|
|
|
|
- (void)parser: (OFXMLParser*)p
|
|
didStartElement: (OFString*)name
|
|
withPrefix: (OFString*)prefix
|
|
namespace: (OFString*)ns
|
|
attributes: (OFArray*)attrs
|
|
{
|
|
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
|
|
OFEnumerator *enumerator;
|
|
OFXMLAttribute *attr;
|
|
|
|
if (![name isEqual: @"stream"] || ![prefix isEqual: @"stream"] ||
|
|
![ns isEqual: XMPP_NS_STREAM]) {
|
|
of_log(@"Did not get expected stream start!");
|
|
assert(0);
|
|
}
|
|
|
|
enumerator = [attrs objectEnumerator];
|
|
while ((attr = [enumerator nextObject]) != nil) {
|
|
if ([[attr name] isEqual: @"from"] &&
|
|
![[attr stringValue] isEqual: server]) {
|
|
of_log(@"Got invalid from in stream start!");
|
|
assert(0);
|
|
}
|
|
}
|
|
|
|
[parser setDelegate: elementBuilder];
|
|
|
|
[pool release];
|
|
}
|
|
|
|
- (void)elementBuilder: (OFXMLElementBuilder*)b
|
|
didBuildElement: (OFXMLElement*)elem
|
|
{
|
|
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
|
|
|
|
[elem setDefaultNamespace: XMPP_NS_CLIENT];
|
|
[elem setPrefix: @"stream"
|
|
forNamespace: XMPP_NS_STREAM];
|
|
|
|
of_log(@"In: %@", elem);
|
|
|
|
[self XMPP_handleStanza: elem];
|
|
|
|
[pool release];
|
|
}
|
|
|
|
- (void)XMPP_startStream
|
|
{
|
|
[sock writeFormat: @"<?xml version='1.0'?>\n"
|
|
@"<stream:stream to='%@' "
|
|
@"xmlns='" XMPP_NS_CLIENT @"' "
|
|
@"xmlns:stream='" XMPP_NS_STREAM @"' "
|
|
@"version='1.0'>", server];
|
|
}
|
|
|
|
- (void)XMPP_handleStanza: (OFXMLElement*)elem
|
|
{
|
|
if ([[elem namespace] isEqual: XMPP_NS_CLIENT]) {
|
|
if ([[elem name] isEqual: @"iq"]) {
|
|
[self XMPP_handleIQ: [XMPPIQ stanzaWithElement: elem]];
|
|
return;
|
|
}
|
|
|
|
if ([[elem name] isEqual: @"message"]) {
|
|
[self XMPP_handleMessage:
|
|
[XMPPMessage stanzaWithElement: elem]];
|
|
return;
|
|
}
|
|
|
|
if ([[elem name] isEqual: @"presence"]) {
|
|
[self XMPP_handlePresence:
|
|
[XMPPPresence stanzaWithElement: elem]];
|
|
return;
|
|
}
|
|
|
|
assert(0);
|
|
}
|
|
|
|
if ([[elem namespace] isEqual: XMPP_NS_STREAM]) {
|
|
if ([[elem name] isEqual: @"features"]) {
|
|
[self XMPP_handleFeatures: elem];
|
|
return;
|
|
}
|
|
|
|
assert(0);
|
|
}
|
|
|
|
if ([[elem namespace] isEqual: XMPP_NS_STARTTLS]) {
|
|
if ([[elem name] isEqual: @"proceed"]) {
|
|
/* FIXME: Catch errors here */
|
|
SSLSocket *newSock;
|
|
|
|
if ([delegate respondsToSelector:
|
|
@selector(connectionWillUpgradeToTLS:)])
|
|
[delegate connectionWillUpgradeToTLS: self];
|
|
|
|
newSock = [[SSLSocket alloc] initWithSocket: sock];
|
|
[sock release];
|
|
sock = newSock;
|
|
|
|
if ([delegate respondsToSelector:
|
|
@selector(connectionDidUpgradeToTLS:)])
|
|
[delegate connectionDidUpgradeToTLS: self];
|
|
|
|
/* Stream restart */
|
|
[parser setDelegate: self];
|
|
[self XMPP_startStream];
|
|
return;
|
|
}
|
|
|
|
if ([[elem name] isEqual: @"failure"])
|
|
/* TODO: Find/create an exception to throw here */
|
|
@throw [OFException newWithClass: isa];
|
|
|
|
assert(0);
|
|
}
|
|
|
|
if ([[elem namespace] isEqual: XMPP_NS_SASL]) {
|
|
if ([[elem name] isEqual: @"challenge"]) {
|
|
OFXMLElement *responseTag;
|
|
OFDataArray *challenge =
|
|
[OFDataArray dataArrayWithBase64EncodedString:
|
|
[elem stringValue]];
|
|
OFDataArray *response = [authModule
|
|
calculateResponseWithChallenge: challenge];
|
|
|
|
responseTag = [OFXMLElement
|
|
elementWithName: @"response"
|
|
namespace: XMPP_NS_SASL];
|
|
[responseTag addChild:
|
|
[OFXMLElement elementWithCharacters:
|
|
[response stringByBase64Encoding]]];
|
|
|
|
[self sendStanza: responseTag];
|
|
return;
|
|
}
|
|
|
|
if ([[elem name] isEqual: @"success"]) {
|
|
[authModule parseServerFinalMessage:
|
|
[OFDataArray dataArrayWithBase64EncodedString:
|
|
[elem stringValue]]];
|
|
|
|
if ([delegate respondsToSelector:
|
|
@selector(connectionWasAuthenticated:)])
|
|
[delegate connectionWasAuthenticated: self];
|
|
|
|
/* Stream restart */
|
|
[parser setDelegate: self];
|
|
[self XMPP_startStream];
|
|
return;
|
|
}
|
|
|
|
if ([[elem name] isEqual: @"failure"]) {
|
|
of_log(@"Auth failed!");
|
|
// FIXME: Do more parsing/handling
|
|
@throw [XMPPAuthFailedException
|
|
newWithClass: isa
|
|
connection: self
|
|
reason: [elem XMLString]];
|
|
}
|
|
|
|
assert(0);
|
|
}
|
|
|
|
assert(0);
|
|
}
|
|
|
|
- (void)XMPP_handleIQ: (XMPPIQ*)iq
|
|
{
|
|
BOOL handled = NO;
|
|
|
|
if ([[iq ID] isEqual: bindID]) {
|
|
[self XMPP_handleResourceBind: iq];
|
|
return;
|
|
}
|
|
|
|
if ([[iq ID] isEqual: sessionID]) {
|
|
[self XMPP_handleSession: iq];
|
|
return;
|
|
}
|
|
|
|
if ([iq elementForName: @"query"
|
|
namespace: XMPP_NS_ROSTER]) {
|
|
[self XMPP_handleRoster: iq];
|
|
return;
|
|
}
|
|
|
|
if ([delegate respondsToSelector: @selector(connection:didReceiveIQ:)])
|
|
handled = [delegate connection: self
|
|
didReceiveIQ: iq];
|
|
|
|
if (!handled) {
|
|
XMPPJID *from = [iq from];
|
|
XMPPJID *to = [iq to];
|
|
OFXMLElement *error;
|
|
|
|
[iq setType: @"error"];
|
|
[iq setTo: from];
|
|
[iq setFrom: to];
|
|
|
|
error = [OFXMLElement elementWithName: @"error"];
|
|
[error addAttributeWithName: @"type"
|
|
stringValue: @"cancel"];
|
|
[error addChild:
|
|
[OFXMLElement elementWithName: @"service-unavailable"
|
|
namespace: XMPP_NS_STANZAS]];
|
|
[iq addChild: error];
|
|
|
|
[self sendStanza: iq];
|
|
}
|
|
}
|
|
|
|
- (void)XMPP_handleMessage: (XMPPMessage*)msg
|
|
{
|
|
if ([delegate respondsToSelector:
|
|
@selector(connection:didReceiveMessage:)])
|
|
[delegate connection: self
|
|
didReceiveMessage: msg];
|
|
}
|
|
|
|
- (void)XMPP_handlePresence: (XMPPPresence*)pres
|
|
{
|
|
if ([delegate respondsToSelector:
|
|
@selector(connection:didReceivePresence:)])
|
|
[delegate connection: self
|
|
didReceivePresence: pres];
|
|
}
|
|
|
|
- (void)XMPP_handleFeatures: (OFXMLElement*)elem
|
|
{
|
|
OFXMLElement *starttls = [elem elementForName: @"starttls"
|
|
namespace: XMPP_NS_STARTTLS];
|
|
OFXMLElement *bind = [elem elementForName: @"bind"
|
|
namespace: XMPP_NS_BIND];
|
|
OFXMLElement *session = [elem elementForName: @"session"
|
|
namespace: XMPP_NS_SESSION];
|
|
OFXMLElement *mechs = [elem elementForName: @"mechanisms"
|
|
namespace: XMPP_NS_SASL];
|
|
OFMutableArray *mechanisms = [OFMutableArray array];
|
|
|
|
if (starttls != nil) {
|
|
[self sendStanza:
|
|
[OFXMLElement elementWithName: @"starttls"
|
|
namespace: XMPP_NS_STARTTLS]];
|
|
return;
|
|
}
|
|
|
|
if (mechs != nil) {
|
|
OFEnumerator *enumerator;
|
|
OFXMLElement *mech;
|
|
|
|
enumerator = [[mechs children] objectEnumerator];
|
|
while ((mech = [enumerator nextObject]) != nil)
|
|
[mechanisms addObject: [mech stringValue]];
|
|
|
|
if ([mechanisms containsObject: @"SCRAM-SHA-1"]) {
|
|
authModule = [[XMPPSCRAMAuth alloc]
|
|
initWithAuthcid: username
|
|
password: password
|
|
hash: [OFSHA1Hash class]];
|
|
[self XMPP_sendAuth: @"SCRAM-SHA-1"];
|
|
return;
|
|
}
|
|
|
|
if ([mechanisms containsObject: @"PLAIN"]) {
|
|
authModule = [[XMPPPLAINAuth alloc]
|
|
initWithAuthcid: username
|
|
password: password];
|
|
[self XMPP_sendAuth: @"PLAIN"];
|
|
return;
|
|
}
|
|
|
|
assert(0);
|
|
}
|
|
|
|
if (session != nil)
|
|
needsSession = YES;
|
|
|
|
if (bind != nil) {
|
|
[self XMPP_sendResourceBind];
|
|
return;
|
|
}
|
|
|
|
assert(0);
|
|
}
|
|
|
|
- (void)XMPP_sendAuth: (OFString*)name
|
|
{
|
|
OFXMLElement *authTag;
|
|
|
|
authTag = [OFXMLElement elementWithName: @"auth"
|
|
namespace: XMPP_NS_SASL];
|
|
[authTag addAttributeWithName: @"mechanism"
|
|
stringValue: name];
|
|
[authTag addChild: [OFXMLElement elementWithCharacters:
|
|
[[authModule clientFirstMessage] stringByBase64Encoding]]];
|
|
|
|
[self sendStanza: authTag];
|
|
}
|
|
|
|
- (void)XMPP_sendResourceBind
|
|
{
|
|
XMPPIQ *iq;
|
|
OFXMLElement *bind;
|
|
|
|
bindID = [[self generateStanzaID] retain];
|
|
iq = [XMPPIQ IQWithType: @"set"
|
|
ID: bindID];
|
|
|
|
bind = [OFXMLElement elementWithName: @"bind"
|
|
namespace: XMPP_NS_BIND];
|
|
|
|
if (resource != nil)
|
|
[bind addChild: [OFXMLElement elementWithName: @"resource"
|
|
stringValue: resource]];
|
|
|
|
[iq addChild: bind];
|
|
|
|
[self sendStanza: iq];
|
|
}
|
|
|
|
- (void)XMPP_handleResourceBind: (XMPPIQ*)iq
|
|
{
|
|
OFXMLElement *bindElem;
|
|
OFXMLElement *jidElem;
|
|
|
|
assert([[iq type] isEqual: @"result"]);
|
|
|
|
bindElem = [iq elementForName: @"bind"
|
|
namespace: XMPP_NS_BIND];
|
|
|
|
assert(bindElem != nil);
|
|
|
|
jidElem = [bindElem elementForName: @"jid"
|
|
namespace: XMPP_NS_BIND];
|
|
JID = [[XMPPJID alloc] initWithString: [jidElem stringValue]];
|
|
|
|
[bindID release];
|
|
bindID = nil;
|
|
|
|
if (needsSession) {
|
|
[self XMPP_sendSession];
|
|
return;
|
|
}
|
|
|
|
if ([delegate respondsToSelector: @selector(connection:wasBoundToJID:)])
|
|
[delegate connection: self
|
|
wasBoundToJID: JID];
|
|
}
|
|
|
|
- (void)XMPP_sendSession
|
|
{
|
|
XMPPIQ *iq;
|
|
|
|
sessionID = [[self generateStanzaID] retain];
|
|
iq = [XMPPIQ IQWithType: @"set"
|
|
ID: sessionID];
|
|
[iq addChild: [OFXMLElement elementWithName: @"session"
|
|
namespace: XMPP_NS_SESSION]];
|
|
[self sendStanza: iq];
|
|
}
|
|
|
|
- (void)XMPP_handleSession: (XMPPIQ*)iq
|
|
{
|
|
if (![[iq type] isEqual: @"result"])
|
|
assert(0);
|
|
|
|
if ([delegate respondsToSelector: @selector(connection:wasBoundToJID:)])
|
|
[delegate connection: self
|
|
wasBoundToJID: JID];
|
|
|
|
[sessionID release];
|
|
sessionID = nil;
|
|
}
|
|
|
|
- (void)requestRoster
|
|
{
|
|
XMPPIQ *iq;
|
|
|
|
if (rosterID != nil)
|
|
assert(0);
|
|
|
|
rosterID = [[self generateStanzaID] retain];
|
|
iq = [XMPPIQ IQWithType: @"get"
|
|
ID: rosterID];
|
|
[iq addChild: [OFXMLElement elementWithName: @"query"
|
|
namespace: XMPP_NS_ROSTER]];
|
|
[self sendStanza: iq];
|
|
}
|
|
|
|
- (void)XMPP_handleRoster: (XMPPIQ*)iq
|
|
{
|
|
OFXMLElement *rosterElem;
|
|
OFXMLElement *elem;
|
|
OFString *subscription;
|
|
|
|
rosterElem = [iq elementForName: @"query"
|
|
namespace: XMPP_NS_ROSTER];
|
|
|
|
if ([[iq ID] isEqual: rosterID]) {
|
|
OFEnumerator *enumerator;
|
|
|
|
assert([[iq type] isEqual: @"result"]);
|
|
|
|
enumerator = [[rosterElem children] objectEnumerator];
|
|
while ((elem = [enumerator nextObject]) != nil) {
|
|
XMPPRosterItem *rosterItem;
|
|
OFMutableArray *groups = [OFMutableArray array];
|
|
OFEnumerator *groupEnumerator;
|
|
OFXMLElement *groupElem;
|
|
|
|
if (![[elem name] isEqual: @"item"] ||
|
|
![[elem namespace] isEqual: XMPP_NS_ROSTER])
|
|
continue;
|
|
|
|
rosterItem = [XMPPRosterItem rosterItem];
|
|
[rosterItem setJID: [XMPPJID JIDWithString:
|
|
[[elem attributeForName: @"jid"] stringValue]]];
|
|
[rosterItem setName:
|
|
[[elem attributeForName: @"name"] stringValue]];
|
|
|
|
subscription = [[elem attributeForName:
|
|
@"subscription"] stringValue];
|
|
if ([subscription isEqual: @"none"] ||
|
|
[subscription isEqual: @"to"] ||
|
|
[subscription isEqual: @"from"] ||
|
|
[subscription isEqual: @"both"])
|
|
[rosterItem setSubscription: subscription];
|
|
|
|
groupEnumerator =
|
|
[[elem elementsForName: @"group"
|
|
namespace: XMPP_NS_ROSTER]
|
|
objectEnumerator];
|
|
while ((groupElem = [groupEnumerator nextObject])
|
|
!= nil)
|
|
[groups addObject: [groupElem stringValue]];
|
|
|
|
if ([groups count] > 0)
|
|
[rosterItem setGroups: groups];
|
|
|
|
[roster XMPP_addRosterItem: rosterItem];
|
|
}
|
|
|
|
if ([delegate respondsToSelector:
|
|
@selector(connectionDidReceiveRoster:)])
|
|
[delegate connectionDidReceiveRoster: self];
|
|
|
|
[rosterID release];
|
|
rosterID = nil;
|
|
} else {
|
|
XMPPRosterItem *rosterItem;
|
|
OFMutableArray *groups = [OFMutableArray array];
|
|
OFEnumerator *groupEnumerator;
|
|
OFXMLElement *groupElem;
|
|
XMPPIQ *response;
|
|
|
|
assert([[iq type] isEqual: @"set"]);
|
|
|
|
elem = [[rosterElem children] firstObject];
|
|
rosterItem = [XMPPRosterItem rosterItem];
|
|
[rosterItem setJID: [XMPPJID JIDWithString:
|
|
[[elem attributeForName: @"jid"] stringValue]]];
|
|
[rosterItem setName:
|
|
[[elem attributeForName: @"name"] stringValue]];
|
|
|
|
subscription = [[elem attributeForName:
|
|
@"subscription"] stringValue];
|
|
if ([subscription isEqual: @"none"] ||
|
|
[subscription isEqual: @"to"] ||
|
|
[subscription isEqual: @"from"] ||
|
|
[subscription isEqual: @"both"] ||
|
|
[subscription isEqual: @"remove"])
|
|
[rosterItem setSubscription: subscription];
|
|
|
|
groupEnumerator =
|
|
[[elem elementsForName: @"group"
|
|
namespace: XMPP_NS_ROSTER] objectEnumerator];
|
|
while ((groupElem = [groupEnumerator nextObject]) != nil)
|
|
[groups addObject: [groupElem stringValue]];
|
|
|
|
if ([groups count] > 0)
|
|
[rosterItem setGroups: groups];
|
|
|
|
[roster XMPP_updateRosterItem: rosterItem];
|
|
|
|
response = [XMPPIQ IQWithType: @"result"
|
|
ID: [iq ID]];
|
|
[response setTo: [iq from]];
|
|
[self sendStanza: response];
|
|
|
|
if ([delegate respondsToSelector:
|
|
@selector(connection:didReceiveRosterItem:)])
|
|
[delegate connection:self
|
|
didReceiveRosterItem: rosterItem];
|
|
}
|
|
}
|
|
|
|
- (XMPPJID*)JID
|
|
{
|
|
return [[JID copy] autorelease];
|
|
}
|
|
|
|
- (void)setPort: (uint16_t)port_
|
|
{
|
|
port = port_;
|
|
}
|
|
|
|
- (uint16_t)port
|
|
{
|
|
return port;
|
|
}
|
|
|
|
- (void)setDelegate: (id <XMPPConnectionDelegate>)delegate_
|
|
{
|
|
id old = delegate;
|
|
delegate = [(id)delegate_ retain];
|
|
[old release];
|
|
}
|
|
|
|
- (id <XMPPConnectionDelegate>)delegate
|
|
{
|
|
return [[delegate retain] autorelease];
|
|
}
|
|
|
|
- (XMPPRoster*)roster
|
|
{
|
|
return [[roster retain] autorelease];
|
|
}
|
|
@end
|
|
|
|
@implementation OFObject (XMPPConnectionDelegate)
|
|
- (void)connectionWasAuthenticated: (XMPPConnection*)conn
|
|
{
|
|
}
|
|
|
|
- (void)connection: (XMPPConnection*)conn
|
|
wasBoundToJID: (XMPPJID*)jid
|
|
{
|
|
}
|
|
|
|
- (void)connectionDidReceiveRoster: (XMPPConnection*)conn
|
|
{
|
|
}
|
|
|
|
- (BOOL)connection: (XMPPConnection*)conn
|
|
didReceiveIQ: (XMPPIQ*)iq
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
- (void)connection: (XMPPConnection*)conn
|
|
didReceivePresence: (XMPPPresence*)pres
|
|
{
|
|
}
|
|
|
|
- (void)connection: (XMPPConnection*)conn
|
|
didReceiveMessage: (XMPPMessage*)msg
|
|
{
|
|
}
|
|
|
|
- (void)connectionWasClosed: (XMPPConnection*)conn
|
|
{
|
|
}
|
|
|
|
- (void)connectionWillUpgradeToTLS: (XMPPConnection*)conn
|
|
{
|
|
}
|
|
|
|
- (void)connectionDidUpgradeToTLS: (XMPPConnection*)conn
|
|
{
|
|
}
|
|
@end
|