1
2
3
4
5
6
7
8
9
|
1
2
3
4
5
6
7
8
9
|
-
+
|
/*
* Copyright (c) 2010, 2011, 2012, 2013, 2016, 2017, 2018
* Copyright (c) 2010, 2011, 2012, 2013, 2016, 2017, 2018, 2021
* Jonathan Schleifer <js@heap.zone>
* Copyright (c) 2011, 2012, Florian Zeitz <florob@babelmonkeys.de>
*
* https://heap.zone/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
|
︙ | | |
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
-
+
|
#import <ObjFW/ObjFW.h>
#import "XMPPCallback.h"
#import "XMPPStorage.h"
OF_ASSUME_NONNULL_BEGIN
#define XMPP_CONNECTION_BUFFER_LENGTH 512
#define XMPPConnectionBufferLength 512
@class XMPPConnection;
@class XMPPJID;
@class XMPPIQ;
@class XMPPMessage;
@class XMPPPresence;
@class XMPPAuthenticator;
|
︙ | | |
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
|
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
-
+
-
-
+
-
+
-
|
/*!
* @brief This callback is called when the connection was bound to a JID.
*
* @param connection The connection that was bound to a JID
* @param JID The JID the conecction was bound to
*/
- (void)connection: (XMPPConnection *)connection
- (void)connection: (XMPPConnection *)connection wasBoundToJID: (XMPPJID *)JID;
wasBoundToJID: (XMPPJID *)JID;
/*!
* @brief This callback is called when the connection received an IQ stanza.
*
* @param connection The connection that received the stanza
* @param iq The IQ stanza that was received
* @param IQ The IQ stanza that was received
*/
- (bool)connection: (XMPPConnection *)connection
- (bool)connection: (XMPPConnection *)connection didReceiveIQ: (XMPPIQ *)IQ;
didReceiveIQ: (XMPPIQ *)iq;
/*!
* @brief This callback is called when the connection received a presence
* stanza.
*
* @param connection The connection that received the stanza
* @param presence The presence stanza that was received
|
︙ | | |
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
-
+
|
/*!
* @brief A class which abstracts a connection to an XMPP service.
*/
@interface XMPPConnection: OFObject
{
OFTCPSocket *_socket;
char _buffer[XMPP_CONNECTION_BUFFER_LENGTH];
char _buffer[XMPPConnectionBufferLength];
OFXMLParser *_parser, *_oldParser;
OFXMLElementBuilder *_elementBuilder, *_oldElementBuilder;
OFString *_Nullable _username, *_Nullable _password, *_Nullable _server;
OFString *_Nullable _resource;
bool _usesAnonymousAuthentication;
OFString *_Nullable _privateKeyFile, *_Nullable _certificateFile;
const char *_Nullable _privateKeyPassphrase;
|
︙ | | |
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
|
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
|
-
+
-
|
*
* This is useful for handling multiple connections at once.
*
* @param buffer The buffer to parse
* @param length The length of the buffer. If length is 0, it is assumed that
* the connection was closed.
*/
- (void)parseBuffer: (const void *)buffer
- (void)parseBuffer: (const void *)buffer length: (size_t)length;
length: (size_t)length;
/*!
* @brief Sends an OFXMLElement, usually an XMPPStanza.
*
* @param element The element to send
*/
- (void)sendStanza: (OFXMLElement *)element;
|
︙ | | |
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
|
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
|
-
+
-
|
#ifdef OF_HAVE_BLOCKS
/*!
* @brief Sends an XMPPIQ, registering a callback block.
*
* @param IQ The IQ to send
* @param block The callback block
*/
- (void)sendIQ: (XMPPIQ *)IQ
- (void)sendIQ: (XMPPIQ *)IQ callbackBlock: (XMPPCallbackBlock)block;
callbackBlock: (xmpp_callback_block_t)block;
#endif
/*!
* @brief Generates a new, unique stanza ID.
*
* @return A new, generated, unique stanza ID.
*/
- (OFString *)generateStanzaID;
@end
OF_ASSUME_NONNULL_END
|
︙ | | |
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
|
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
|
-
+
-
-
+
-
|
#import "namespaces.h"
#import <ObjFW/macros.h>
@interface XMPPConnection () <OFDNSResolverQueryDelegate, OFTCPSocketDelegate,
OFXMLParserDelegate, OFXMLElementBuilderDelegate>
- (void)xmpp_tryNextSRVRecord;
- (bool)xmpp_parseBuffer: (const void *)buffer
- (bool)xmpp_parseBuffer: (const void *)buffer length: (size_t)length;
length: (size_t)length;
- (void)xmpp_startStream;
- (void)xmpp_handleStanza: (OFXMLElement *)element;
- (void)xmpp_handleStream: (OFXMLElement *)element;
- (void)xmpp_handleTLS: (OFXMLElement *)element;
- (void)xmpp_handleSASL: (OFXMLElement *)element;
- (void)xmpp_handleIQ: (XMPPIQ *)IQ;
- (void)xmpp_handleMessage: (XMPPMessage *)message;
- (void)xmpp_handlePresence: (XMPPPresence *)presence;
- (void)xmpp_handleFeatures: (OFXMLElement *)element;
- (void)xmpp_sendAuth: (OFString *)authName;
- (void)xmpp_sendResourceBind;
- (void)xmpp_sendStreamError: (OFString *)condition
- (void)xmpp_sendStreamError: (OFString *)condition text: (OFString *)text;
text: (OFString *)text;
- (void)xmpp_handleResourceBindForConnection: (XMPPConnection *)connection
IQ: (XMPPIQ *)IQ;
- (void)xmpp_sendSession;
- (void)xmpp_handleSessionForConnection: (XMPPConnection *)connection
IQ: (XMPPIQ *)IQ;
- (OFString *)xmpp_IDNAToASCII: (OFString *)domain;
- (XMPPMulticastDelegate *)xmpp_delegates;
|
︙ | | |
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
|
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
|
-
+
-
+
-
|
withObject: exception];
return;
}
[self xmpp_startStream];
[_socket asyncReadIntoBuffer: _buffer
length: XMPP_CONNECTION_BUFFER_LENGTH];
length: XMPPConnectionBufferLength];
}
- (void)xmpp_tryNextSRVRecord
{
OFSRVDNSResourceRecord *record =
[[[_nextSRVRecords objectAtIndex: 0] copy] autorelease];
if (_nextSRVRecords.count == 0) {
[_nextSRVRecords release];
_nextSRVRecords = nil;
}
[_socket asyncConnectToHost: record.target
[_socket asyncConnectToHost: record.target port: record.port];
port: record.port];
}
- (void)resolver: (OFDNSResolver *)resolver
didPerformQuery: (OFString *)domainName
response: (OFDNSResponse *)response
exception: (id)exception
{
|
︙ | | |
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
|
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
|
-
+
-
-
+
-
|
[records addObject: record];
/* TODO: Sort records */
[records makeImmutable];
if (records.count == 0) {
/* Fall back to A / AAAA record. */
[_socket asyncConnectToHost: _domainToASCII
[_socket asyncConnectToHost: _domainToASCII port: _port];
port: _port];
return;
}
[_nextSRVRecords release];
_nextSRVRecords = nil;
_nextSRVRecords = [records mutableCopy];
[self xmpp_tryNextSRVRecord];
}
- (void)asyncConnect
{
void *pool = objc_autoreleasePoolPush();
if (_socket != nil)
@throw [OFAlreadyConnectedException exception];
_socket = [[OFTCPSocket alloc] init];
[_socket setDelegate: self];
if (_server != nil)
[_socket asyncConnectToHost: _server
[_socket asyncConnectToHost: _server port: _port];
port: _port];
else {
OFString *SRVDomain = [_domainToASCII
stringByPrependingString: @"_xmpp-client._tcp."];
OFDNSQuery *query = [OFDNSQuery
queryWithDomainName: SRVDomain
DNSClass: OFDNSClassIN
recordType: OFDNSRecordTypeSRV];
|
︙ | | |
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
|
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
|
-
+
-
-
+
-
-
+
-
-
+
-
|
error:)
withObject: self
withObject: nil];
return false;
}
@try {
[_parser parseBuffer: buffer
[_parser parseBuffer: buffer length: length];
length: length];
} @catch (OFMalformedXMLException *e) {
[self xmpp_sendStreamError: @"bad-format"
[self xmpp_sendStreamError: @"bad-format" text: nil];
text: nil];
[self close];
return false;
}
return true;
}
- (void)parseBuffer: (const void *)buffer
- (void)parseBuffer: (const void *)buffer length: (size_t)length
length: (size_t)length
{
[self xmpp_parseBuffer: buffer
[self xmpp_parseBuffer: buffer length: length];
length: length];
[_oldParser release];
[_oldElementBuilder release];
_oldParser = nil;
_oldElementBuilder = nil;
}
|
︙ | | |
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
|
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
424
425
|
-
+
-
-
+
|
withObject: self
withObject: exception];
[self close];
return false;
}
@try {
if (![self xmpp_parseBuffer: buffer
if (![self xmpp_parseBuffer: buffer length: length])
length: length])
return false;
} @catch (id e) {
[_delegates broadcastSelector: @selector(connection:
didThrowException:)
withObject: self
withObject: e];
[self close];
return false;
}
if (_oldParser != nil || _oldElementBuilder != nil) {
[_oldParser release];
[_oldElementBuilder release];
_oldParser = nil;
_oldElementBuilder = nil;
[_socket asyncReadIntoBuffer: _buffer
length: XMPP_CONNECTION_BUFFER_LENGTH];
length: XMPPConnectionBufferLength];
return false;
}
return true;
}
- (bool)streamOpen
|
︙ | | |
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
|
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
|
-
+
-
-
+
-
-
+
-
-
+
-
|
if ((key = IQ.to.fullJID) == nil)
key = _JID.bareJID;
if (key == nil) // Only happens for resource bind
key = @"bind";
key = [key stringByAppendingString: ID];
callback = [XMPPCallback callbackWithTarget: target
callback = [XMPPCallback callbackWithTarget: target selector: selector];
selector: selector];
[_callbacks setObject: callback
[_callbacks setObject: callback forKey: key];
forKey: key];
objc_autoreleasePoolPop(pool);
[self sendStanza: IQ];
}
#ifdef OF_HAVE_BLOCKS
- (void)sendIQ: (XMPPIQ *)IQ
- (void)sendIQ: (XMPPIQ *)IQ callbackBlock: (XMPPCallbackBlock)block
callbackBlock: (xmpp_callback_block_t)block
{
void *pool = objc_autoreleasePoolPush();
XMPPCallback *callback;
OFString *ID, *key;
if ((ID = IQ.ID) == nil) {
ID = [self generateStanzaID];
IQ.ID = ID;
}
if ((key = IQ.to.fullJID) == nil)
key = _JID.bareJID;
if (key == nil) // Connection not yet bound, can't send stanzas
@throw [OFInvalidArgumentException exception];
key = [key stringByAppendingString: ID];
callback = [XMPPCallback callbackWithBlock: block];
[_callbacks setObject: callback
[_callbacks setObject: callback forKey: key];
forKey: key];
objc_autoreleasePoolPop(pool);
[self sendStanza: IQ];
}
#endif
|
︙ | | |
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
|
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
|
-
+
-
-
-
+
+
-
-
+
-
-
-
+
+
-
-
+
-
+
-
+
-
+
-
+
|
// No dedicated stream error for this, may not even be XMPP
[self close];
[_socket close];
return;
}
if (![prefix isEqual: @"stream"]) {
[self xmpp_sendStreamError: @"bad-namespace-prefix"
[self xmpp_sendStreamError: @"bad-namespace-prefix" text: nil];
text: nil];
return;
}
if (![namespace isEqual: XMPP_NS_STREAM]) {
[self xmpp_sendStreamError: @"invalid-namespace"
if (![namespace isEqual: XMPPStreamNS]) {
[self xmpp_sendStreamError: @"invalid-namespace" text: nil];
text: nil];
return;
}
for (OFXMLAttribute *attribute in attributes) {
if ([attribute.name isEqual: @"from"] &&
![attribute.stringValue isEqual: _domain]) {
[self xmpp_sendStreamError: @"invalid-from"
[self xmpp_sendStreamError: @"invalid-from" text: nil];
text: nil];
return;
}
if ([attribute.name isEqual: @"version"] &&
![attribute.stringValue isEqual: @"1.0"]) {
[self xmpp_sendStreamError: @"unsupported-version"
text: nil];
return;
}
}
parser.delegate = _elementBuilder;
}
- (void)elementBuilder: (OFXMLElementBuilder *)builder
didBuildElement: (OFXMLElement *)element
{
/* Ignore whitespace elements */
if (element.name == nil)
return;
element.defaultNamespace = XMPP_NS_CLIENT;
[element setPrefix: @"stream"
element.defaultNamespace = XMPPClientNS;
[element setPrefix: @"stream" forNamespace: XMPPStreamNS];
forNamespace: XMPP_NS_STREAM];
[_delegates broadcastSelector: @selector(connection:didReceiveElement:)
withObject: self
withObject: element];
if ([element.namespace isEqual: XMPP_NS_CLIENT])
if ([element.namespace isEqual: XMPPClientNS])
[self xmpp_handleStanza: element];
if ([element.namespace isEqual: XMPP_NS_STREAM])
if ([element.namespace isEqual: XMPPStreamNS])
[self xmpp_handleStream: element];
if ([element.namespace isEqual: XMPP_NS_STARTTLS])
if ([element.namespace isEqual: XMPPStartTLSNS])
[self xmpp_handleTLS: element];
if ([element.namespace isEqual: XMPP_NS_SASL])
if ([element.namespace isEqual: XMPPSASLNS])
[self xmpp_handleSASL: element];
}
- (void)elementBuilder: (OFXMLElementBuilder *)builder
didNotExpectCloseTag: (OFString *)name
prefix: (OFString *)prefix
namespace: (OFString *)ns
{
if (![name isEqual: @"stream"] || ![prefix isEqual: @"stream"] ||
![ns isEqual: XMPP_NS_STREAM])
![ns isEqual: XMPPStreamNS])
@throw [OFMalformedXMLException exception];
else
[self close];
}
- (void)xmpp_startStream
{
|
︙ | | |
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
|
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
|
-
-
+
+
|
if (_language != nil)
langString = [OFString stringWithFormat: @"xml:lang='%@' ",
_language];
[_socket writeFormat: @"<?xml version='1.0'?>\n"
@"<stream:stream to='%@' "
@"xmlns='" XMPP_NS_CLIENT @"' "
@"xmlns:stream='" XMPP_NS_STREAM @"' %@"
@"xmlns='" XMPPClientNS @"' "
@"xmlns:stream='" XMPPStreamNS @"' %@"
@"version='1.0'>", _domain, langString];
_streamOpen = true;
}
- (void)close
{
|
︙ | | |
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
|
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
|
-
+
-
-
-
+
+
-
+
-
-
+
|
if ([element.name isEqual: @"presence"]) {
[self xmpp_handlePresence:
[XMPPPresence stanzaWithElement: element]];
return;
}
[self xmpp_sendStreamError: @"unsupported-stanza-type"
[self xmpp_sendStreamError: @"unsupported-stanza-type" text: nil];
text: nil];
}
- (void)xmpp_handleStream: (OFXMLElement *)element
{
if ([element.name isEqual: @"features"]) {
[self xmpp_handleFeatures: element];
return;
}
if ([element.name isEqual: @"error"]) {
OFString *condition, *reason;
[self close];
[_delegates broadcastSelector: @selector(connectionWasClosed:)
withObject: self
withObject: element];
condition = [[element elementsForNamespace:
XMPP_NS_XMPP_STREAM].firstObject name];
condition = [[element elementsForNamespace: XMPPXMPPStreamNS]
.firstObject name];
if (condition == nil)
condition = @"undefined";
reason = [element
reason = [element elementForName: @"text"
elementForName: @"text"
namespace: XMPP_NS_XMPP_STREAM].stringValue;
namespace: XMPPXMPPStreamNS].stringValue;
@throw [XMPPStreamErrorException
exceptionWithConnection: self
condition: condition
reason: reason];
return;
}
|
︙ | | |
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
|
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
|
-
+
|
if ([element.name isEqual: @"challenge"]) {
OFXMLElement *responseTag;
OFData *challenge =
[OFData dataWithBase64EncodedString: element.stringValue];
OFData *response = [_authModule continueWithData: challenge];
responseTag = [OFXMLElement elementWithName: @"response"
namespace: XMPP_NS_SASL];
namespace: XMPPSASLNS];
if (response) {
if (response.count == 0)
responseTag.stringValue = @"=";
else
responseTag.stringValue =
response.stringByBase64Encoding;
}
|
︙ | | |
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
|
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
|
-
+
-
|
if ((key = IQ.from.fullJID) == nil)
key = _JID.bareJID;
if (key == nil) // Only happens for resource bind
key = @"bind";
key = [key stringByAppendingString: IQ.ID];
if ((callback = [_callbacks objectForKey: key])) {
[callback runWithIQ: IQ
[callback runWithIQ: IQ connection: self];
connection: self];
[_callbacks removeObjectForKey: key];
return;
}
handled = [_delegates broadcastSelector: @selector(
connection:didReceiveIQ:)
withObject: self
|
︙ | | |
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
|
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
|
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
-
|
withObject: self
withObject: presence];
}
- (void)xmpp_handleFeatures: (OFXMLElement *)element
{
OFXMLElement *startTLS = [element elementForName: @"starttls"
namespace: XMPP_NS_STARTTLS];
namespace: XMPPStartTLSNS];
OFXMLElement *bind = [element elementForName: @"bind"
namespace: XMPP_NS_BIND];
namespace: XMPPBindNS];
OFXMLElement *session = [element elementForName: @"session"
namespace: XMPP_NS_SESSION];
namespace: XMPPSessionNS];
OFXMLElement *mechs = [element elementForName: @"mechanisms"
namespace: XMPP_NS_SASL];
namespace: XMPPSASLNS];
OFMutableSet *mechanisms = [OFMutableSet set];
if (!_encrypted && startTLS != nil) {
[self sendStanza:
[OFXMLElement elementWithName: @"starttls"
namespace: XMPP_NS_STARTTLS]];
namespace: XMPPStartTLSNS]];
return;
}
if (_encryptionRequired && !_encrypted)
/* TODO: Find/create an exception to throw here */
@throw [OFException exception];
if ([element elementForName: @"ver"
if ([element elementForName: @"ver" namespace: XMPPRosterVerNS] != nil)
namespace: XMPP_NS_ROSTERVER] != nil)
_supportsRosterVersioning = true;
if ([element elementForName: @"sm"
if ([element elementForName: @"sm" namespace: XMPPSMNS] != nil)
namespace: XMPP_NS_SM] != nil)
_supportsStreamManagement = true;
if (mechs != nil) {
for (OFXMLElement *mech in mechs.children)
[mechanisms addObject: mech.stringValue];
if (_usesAnonymousAuthentication) {
|
︙ | | |
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
|
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
|
-
+
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
+
-
-
+
-
+
-
+
-
-
+
-
-
+
-
-
+
|
@throw [XMPPAuthFailedException
exceptionWithConnection: self
reason: @"No supported auth mechanism"];
}
if (session != nil && [session elementForName: @"optional"
namespace: XMPP_NS_SESSION] == nil)
namespace: XMPPSessionNS] == nil)
_needsSession = true;
if (bind != nil) {
[self xmpp_sendResourceBind];
return;
}
assert(0);
}
- (void)xmpp_sendAuth: (OFString *)authName
{
OFXMLElement *authTag;
OFData *initialMessage = [_authModule initialMessage];
authTag = [OFXMLElement elementWithName: @"auth"
authTag = [OFXMLElement elementWithName: @"auth" namespace: XMPPSASLNS];
namespace: XMPP_NS_SASL];
[authTag addAttributeWithName: @"mechanism"
[authTag addAttributeWithName: @"mechanism" stringValue: authName];
stringValue: authName];
if (initialMessage != nil) {
if (initialMessage.count == 0)
authTag.stringValue = @"=";
else
authTag.stringValue =
initialMessage.stringByBase64Encoding;
}
[self sendStanza: authTag];
}
- (void)xmpp_sendResourceBind
{
XMPPIQ *IQ;
OFXMLElement *bind;
IQ = [XMPPIQ IQWithType: @"set"
IQ = [XMPPIQ IQWithType: @"set" ID: [self generateStanzaID]];
ID: [self generateStanzaID]];
bind = [OFXMLElement elementWithName: @"bind"
bind = [OFXMLElement elementWithName: @"bind" namespace: XMPPBindNS];
namespace: XMPP_NS_BIND];
if (_resource != nil)
[bind addChild: [OFXMLElement elementWithName: @"resource"
namespace: XMPP_NS_BIND
namespace: XMPPBindNS
stringValue: _resource]];
[IQ addChild: bind];
[self sendIQ: IQ
callbackTarget: self
selector: @selector(xmpp_handleResourceBindForConnection:
IQ:)];
}
- (void)xmpp_sendStreamError: (OFString *)condition
text: (OFString *)text
{
OFXMLElement *error = [OFXMLElement
elementWithName: @"error"
namespace: XMPP_NS_STREAM];
[error setPrefix: @"stream"
namespace: XMPPStreamNS];
[error setPrefix: @"stream" forNamespace: XMPPStreamNS];
forNamespace: XMPP_NS_STREAM];
[error addChild: [OFXMLElement elementWithName: condition
namespace: XMPP_NS_XMPP_STREAM]];
namespace: XMPPXMPPStreamNS]];
if (text)
[error addChild: [OFXMLElement
elementWithName: @"text"
namespace: XMPP_NS_XMPP_STREAM
namespace: XMPPXMPPStreamNS
stringValue: text]];
_parser.delegate = nil;
[self sendStanza: error];
[self close];
}
- (void)xmpp_handleResourceBindForConnection: (XMPPConnection *)connection
IQ: (XMPPIQ *)IQ
{
OFXMLElement *bindElement, *JIDElement;
assert([IQ.type isEqual: @"result"]);
bindElement = [IQ elementForName: @"bind"
bindElement = [IQ elementForName: @"bind" namespace: XMPPBindNS];
namespace: XMPP_NS_BIND];
assert(bindElement != nil);
JIDElement = [bindElement elementForName: @"jid"
JIDElement = [bindElement elementForName: @"jid" namespace: XMPPBindNS];
namespace: XMPP_NS_BIND];
_JID = [[XMPPJID alloc] initWithString: JIDElement.stringValue];
if (_needsSession) {
[self xmpp_sendSession];
return;
}
[_delegates broadcastSelector: @selector(connection:wasBoundToJID:)
withObject: self
withObject: _JID];
}
- (void)xmpp_sendSession
{
XMPPIQ *IQ = [XMPPIQ IQWithType: @"set"
XMPPIQ *IQ = [XMPPIQ IQWithType: @"set" ID: [self generateStanzaID]];
ID: [self generateStanzaID]];
[IQ addChild: [OFXMLElement elementWithName: @"session"
namespace: XMPP_NS_SESSION]];
namespace: XMPPSessionNS]];
[self sendIQ: IQ
callbackTarget: self
selector: @selector(xmpp_handleSessionForConnection:IQ:)];
}
- (void)xmpp_handleSessionForConnection: (XMPPConnection *)connection
|
︙ | | |
︙ | | |
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
-
+
-
|
#import "XMPPIQ.h"
#import "XMPPJID.h"
#import "namespaces.h"
@implementation XMPPDiscoEntity
@synthesize discoNodes = _discoNodes, capsNode = _capsNode;
+ (instancetype)discoNodeWithJID: (XMPPJID *)JID
+ (instancetype)discoNodeWithJID: (XMPPJID *)JID node: (OFString *)node
node: (OFString *)node
{
OF_UNRECOGNIZED_SELECTOR
}
+ (instancetype)discoNodeWithJID: (XMPPJID *)JID
node: (OFString *)node
name: (OFString *)name
|
︙ | | |
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
|
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
|
-
+
-
-
+
-
-
|
+ (instancetype)discoEntityWithConnection: (XMPPConnection *)connection
capsNode: (OFString *)capsNode
{
return [[[self alloc] initWithConnection: connection
capsNode: capsNode] autorelease];
}
- (instancetype)initWithJID: (XMPPJID *)JID
- (instancetype)initWithJID: (XMPPJID *)JID node: (nullable OFString *)node
node: (nullable OFString *)node
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithJID: (XMPPJID *)JID
node: (nullable OFString *)node
name: (nullable OFString *)name
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithConnection: (XMPPConnection *)connection
{
return [self initWithConnection: connection
capsNode: nil];
}
- (instancetype)initWithConnection: (XMPPConnection *)connection
capsNode: (OFString *)capsNode
{
self = [super initWithJID: [connection JID]
self = [super initWithJID: [connection JID] node: nil name: nil];
node: nil
name: nil];
@try {
_discoNodes = [[OFMutableDictionary alloc] init];
_connection = connection;
_capsNode = [capsNode copy];
[_connection addDelegate: self];
|
︙ | | |
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
|
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
|
-
+
-
-
+
-
-
+
-
-
+
-
+
-
|
[_discoNodes release];
[super dealloc];
}
- (void)addDiscoNode: (XMPPDiscoNode *)node
{
[_discoNodes setObject: node
[_discoNodes setObject: node forKey: node.node];
forKey: node.node];
}
- (OFString *)capsHash
{
OFMutableString *caps = [OFMutableString string];
OFSHA1Hash *hash = [OFSHA1Hash hashWithAllowsSwappableMemory: true];
OFData *digest;
for (XMPPDiscoIdentity *identity in _identities)
[caps appendFormat: @"%@/%@//%@<",
identity.category, identity.type, identity.name];
for (OFString *feature in _features)
[caps appendFormat: @"%@<", feature];
[hash updateWithBuffer: caps.UTF8String
[hash updateWithBuffer: caps.UTF8String length: caps.UTF8StringLength];
length: caps.UTF8StringLength];
digest = [OFData dataWithItems: hash.digest
digest = [OFData dataWithItems: hash.digest count: hash.digestSize];
count: hash.digestSize];
return digest.stringByBase64Encoding;
}
- (void)connection: (XMPPConnection *)connection
wasBoundToJID: (XMPPJID *)JID
{
_JID = [JID copy];
}
- (bool)connection: (XMPPConnection *)connection
didReceiveIQ: (XMPPIQ *)IQ
{
if (![IQ.to isEqual: _JID])
return false;
OFXMLElement *query = [IQ elementForName: @"query"
namespace: XMPP_NS_DISCO_ITEMS];
namespace: XMPPDiscoItemsNS];
if (query != nil) {
OFString *node = [query attributeForName: @"node"].stringValue;
if (node == nil)
return [self xmpp_handleItemsIQ: IQ
connection: connection];
XMPPDiscoNode *responder = [_discoNodes objectForKey: node];
if (responder != nil)
return [responder xmpp_handleItemsIQ: IQ
connection: connection];
return false;
}
query = [IQ elementForName: @"query"
query = [IQ elementForName: @"query" namespace: XMPPDiscoInfoNS];
namespace: XMPP_NS_DISCO_INFO];
if (query != nil) {
OFString *node = [query attributeForName: @"node"].stringValue;
if (node == nil)
return [self xmpp_handleInfoIQ: IQ
connection: connection];
|
︙ | | |
1
2
3
4
5
6
7
8
9
10
|
1
2
3
4
5
6
7
8
9
10
|
-
+
|
/*
* Copyright (c) 2013, Florian Zeitz <florob@babelmonkeys.de>
* Copyright (c) 2013, 2016, 2019, Jonathan Schleifer <js@heap.zone>
* Copyright (c) 2013, 2016, 2019, 2021, Jonathan Schleifer <js@nil.im>
*
* https://heap.zone/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.
*
|
︙ | | |
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
|
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
|
-
+
-
-
+
-
-
+
-
-
+
-
-
-
-
+
+
|
#import "namespaces.h"
@implementation XMPPDiscoNode
@synthesize JID = _JID, node = _node, name = _name, identities = _identities;
@synthesize features = _features, childNodes = _childNodes;
+ (instancetype)discoNodeWithJID: (XMPPJID *)JID
+ (instancetype)discoNodeWithJID: (XMPPJID *)JID node: (OFString *)node;
node: (OFString *)node;
{
return [[[self alloc] initWithJID: JID
return [[[self alloc] initWithJID: JID node: node] autorelease];
node: node] autorelease];
}
+ (instancetype)discoNodeWithJID: (XMPPJID *)JID
node: (OFString *)node
name: (OFString *)name
{
return [[[self alloc] initWithJID: JID
node: node
name: name] autorelease];
}
- (instancetype)initWithJID: (XMPPJID *)JID
- (instancetype)initWithJID: (XMPPJID *)JID node: (OFString *)node
node: (OFString *)node
{
return [self initWithJID: JID
return [self initWithJID: JID node: node name: nil];
node: node
name: nil];
}
- (instancetype)initWithJID: (XMPPJID *)JID
node: (OFString *)node
name: (OFString *)name
{
self = [super init];
@try {
if (JID == nil &&
![self isKindOfClass: [XMPPDiscoEntity class]])
@throw [OFInvalidArgumentException exception];
_JID = [JID copy];
_node = [node copy];
_name = [name copy];
_identities = [[OFSortedList alloc] init];
_features = [[OFSortedList alloc] init];
_childNodes = [[OFMutableDictionary alloc] init];
[self addFeature: XMPP_NS_DISCO_ITEMS];
[self addFeature: XMPP_NS_DISCO_INFO];
[self addFeature: XMPPDiscoItemsNS];
[self addFeature: XMPPDiscoInfoNS];
} @catch (id e) {
[self release];
@throw e;
}
return self;
}
|
︙ | | |
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
|
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
|
-
+
-
+
-
+
-
+
-
-
+
-
+
-
+
|
- (bool)xmpp_handleItemsIQ: (XMPPIQ *)IQ
connection: (XMPPConnection *)connection
{
XMPPIQ *resultIQ;
OFXMLElement *response;
OFXMLElement *query = [IQ elementForName: @"query"
namespace: XMPP_NS_DISCO_ITEMS];
namespace: XMPPDiscoItemsNS];
OFString *node = [[query attributeForName: @"node"] stringValue];
if (!(node == _node) && ![node isEqual: _node])
return false;
resultIQ = [IQ resultIQ];
response = [OFXMLElement elementWithName: @"query"
namespace: XMPP_NS_DISCO_ITEMS];
namespace: XMPPDiscoItemsNS];
[resultIQ addChild: response];
for (XMPPDiscoNode *child in _childNodes) {
OFXMLElement *item =
[OFXMLElement elementWithName: @"item"
namespace: XMPP_NS_DISCO_ITEMS];
namespace: XMPPDiscoItemsNS];
[item addAttributeWithName: @"jid"
stringValue: child.JID.fullJID];
if (child.node != nil)
[item addAttributeWithName: @"node"
stringValue: child.node];
if (child.name != nil)
[item addAttributeWithName: @"name"
stringValue: child.name];
[response addChild: item];
}
[connection sendStanza: resultIQ];
return true;
}
- (bool)xmpp_handleInfoIQ: (XMPPIQ *)IQ
- (bool)xmpp_handleInfoIQ: (XMPPIQ *)IQ connection: (XMPPConnection *)connection
connection: (XMPPConnection *)connection
{
XMPPIQ *resultIQ;
OFXMLElement *response;
resultIQ = [IQ resultIQ];
response = [OFXMLElement elementWithName: @"query"
namespace: XMPP_NS_DISCO_INFO];
namespace: XMPPDiscoInfoNS];
[resultIQ addChild: response];
for (XMPPDiscoIdentity *identity in _identities) {
OFXMLElement *identityElement =
[OFXMLElement elementWithName: @"identity"
namespace: XMPP_NS_DISCO_INFO];
namespace: XMPPDiscoInfoNS];
[identityElement addAttributeWithName: @"category"
stringValue: identity.category];
[identityElement addAttributeWithName: @"type"
stringValue: identity.type];
if (identity.name != nil)
[identityElement addAttributeWithName: @"name"
stringValue: identity.name];
[response addChild: identityElement];
}
for (OFString *feature in _features) {
OFXMLElement *featureElement =
[OFXMLElement elementWithName: @"feature"
namespace: XMPP_NS_DISCO_INFO];
namespace: XMPPDiscoInfoNS];
[featureElement addAttributeWithName: @"var"
stringValue: feature];
[response addChild: featureElement];
}
[connection sendStanza: resultIQ];
return true;
}
@end
|
1
2
3
4
5
6
7
8
9
|
1
2
3
4
5
6
7
8
9
|
-
+
|
/*
* Copyright (c) 2011, 2019, Jonathan Schleifer <js@webkeks.org>
* Copyright (c) 2011, 2019, 2021, Jonathan Schleifer <js@nil.im>
* Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de>
*
* https://heap.zone/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.
|
︙ | | |
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
|
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
-
+
-
-
+
-
-
+
-
-
+
-
-
|
#include "config.h"
#import "namespaces.h"
#import "XMPPIQ.h"
@implementation XMPPIQ
+ (instancetype)IQWithType: (OFString *)type
+ (instancetype)IQWithType: (OFString *)type ID: (OFString *)ID
ID: (OFString *)ID
{
return [[[self alloc] initWithType: type
return [[[self alloc] initWithType: type ID: ID] autorelease];
ID: ID] autorelease];
}
- (instancetype)initWithType: (OFString *)type
- (instancetype)initWithType: (OFString *)type ID: (OFString *)ID
ID: (OFString *)ID
{
self = [super initWithName: @"iq"
self = [super initWithName: @"iq" type: type ID: ID];
type: type
ID: ID];
@try {
if (![type isEqual: @"get"] && ![type isEqual: @"set"] &&
![type isEqual: @"result"] && ![type isEqual: @"error"])
@throw [OFInvalidArgumentException exception];
} @catch (id e) {
[self release];
|
︙ | | |
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
|
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
|
-
+
-
+
-
-
+
-
+
-
+
-
-
+
-
-
|
condition: (OFString *)condition
text: (OFString *)text
{
XMPPIQ *ret = [XMPPIQ IQWithType: @"error"
ID: self.ID];
void *pool = objc_autoreleasePoolPush();
OFXMLElement *error = [OFXMLElement elementWithName: @"error"
namespace: XMPP_NS_CLIENT];
namespace: XMPPClientNS];
[error addAttributeWithName: @"type"
[error addAttributeWithName: @"type" stringValue: type];
stringValue: type];
[error addChild: [OFXMLElement elementWithName: condition
namespace: XMPP_NS_STANZAS]];
namespace: XMPPStanzasNS]];
if (text)
[error addChild: [OFXMLElement elementWithName: @"text"
namespace: XMPP_NS_STANZAS
namespace: XMPPStanzasNS
stringValue: text]];
[ret addChild: error];
ret.to = self.from;
ret.from = nil;
objc_autoreleasePoolPop(pool);
return ret;
}
- (XMPPIQ *)errorIQWithType: (OFString *)type
- (XMPPIQ *)errorIQWithType: (OFString *)type condition: (OFString *)condition
condition: (OFString *)condition
{
return [self errorIQWithType: type
return [self errorIQWithType: type condition: condition text: nil];
condition: condition
text: nil];
}
@end
|
1
2
3
4
5
6
7
8
9
|
1
2
3
4
5
6
7
8
9
10
|
-
+
+
|
/*
* Copyright (c) 2011, 2012, 2013, 2016, 2019, Jonathan Schleifer <js@heap.zone>
* Copyright (c) 2011, 2012, 2013, 2016, 2019, 2021,
* Jonathan Schleifer <js@nil.im>
* Copyright (c) 2012, Florian Zeitz <florob@babelmonkeys.de>
*
* https://heap.zone/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.
|
︙ | | |
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
|
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
|
-
+
-
-
+
-
+
-
-
+
-
-
+
-
-
+
-
+
-
-
+
-
+
-
+
-
-
+
-
+
-
+
-
+
-
-
+
-
|
- (void)requestRoster
{
XMPPIQ *IQ;
OFXMLElement *query;
_rosterRequested = true;
IQ = [XMPPIQ IQWithType: @"get"
IQ = [XMPPIQ IQWithType: @"get" ID: [_connection generateStanzaID]];
ID: [_connection generateStanzaID]];
query = [OFXMLElement elementWithName: @"query"
namespace: XMPP_NS_ROSTER];
namespace: XMPPRosterNS];
if (_connection.supportsRosterVersioning) {
OFString *ver =
[_dataStorage stringValueForPath: @"roster.ver"];
if (ver == nil)
ver = @"";
[query addAttributeWithName: @"ver"
[query addAttributeWithName: @"ver" stringValue: ver];
stringValue: ver];
}
[IQ addChild: query];
[_connection sendIQ: IQ
callbackTarget: self
selector: @selector(xmpp_handleInitialRosterForConnection:
IQ:)];
}
- (bool)connection: (XMPPConnection *)connection
- (bool)connection: (XMPPConnection *)connection didReceiveIQ: (XMPPIQ *)IQ
didReceiveIQ: (XMPPIQ *)IQ
{
OFXMLElement *rosterElement;
OFXMLElement *element;
XMPPRosterItem *rosterItem;
OFString *origin;
rosterElement = [IQ elementForName: @"query"
rosterElement = [IQ elementForName: @"query" namespace: XMPPRosterNS];
namespace: XMPP_NS_ROSTER];
if (rosterElement == nil)
return false;
if (![IQ.type isEqual: @"set"])
return false;
// Ensure the roster push has been sent by the server
origin = IQ.from.fullJID;
if (origin != nil && ![origin isEqual: connection.JID.bareJID])
return false;
element = [rosterElement elementForName: @"item"
namespace: XMPP_NS_ROSTER];
namespace: XMPPRosterNS];
if (element != nil) {
rosterItem = [self xmpp_rosterItemWithXMLElement: element];
[_delegates broadcastSelector: @selector(
roster:didReceiveRosterItem:)
withObject: self
withObject: rosterItem];
[self xmpp_updateRosterItem: rosterItem];
}
if (_connection.supportsRosterVersioning) {
OFString *ver =
[rosterElement attributeForName: @"ver"].stringValue;
[_dataStorage setStringValue: ver
[_dataStorage setStringValue: ver forPath: @"roster.ver"];
forPath: @"roster.ver"];
[_dataStorage save];
}
[connection sendStanza: [IQ resultIQ]];
return true;
}
- (void)addRosterItem: (XMPPRosterItem *)rosterItem
{
[self updateRosterItem: rosterItem];
}
- (void)updateRosterItem: (XMPPRosterItem *)rosterItem
{
XMPPIQ *IQ = [XMPPIQ IQWithType: @"set"
ID: [_connection generateStanzaID]];
OFXMLElement *query = [OFXMLElement elementWithName: @"query"
namespace: XMPP_NS_ROSTER];
namespace: XMPPRosterNS];
OFXMLElement *item = [OFXMLElement elementWithName: @"item"
namespace: XMPP_NS_ROSTER];
namespace: XMPPRosterNS];
[item addAttributeWithName: @"jid"
[item addAttributeWithName: @"jid" stringValue: rosterItem.JID.bareJID];
stringValue: rosterItem.JID.bareJID];
if (rosterItem.name != nil)
[item addAttributeWithName: @"name"
stringValue: rosterItem.name];
for (OFString *group in rosterItem.groups)
[item addChild: [OFXMLElement elementWithName: @"group"
namespace: XMPP_NS_ROSTER
namespace: XMPPRosterNS
stringValue: group]];
[query addChild: item];
[IQ addChild: query];
[_connection sendStanza: IQ];
}
- (void)deleteRosterItem: (XMPPRosterItem *)rosterItem
{
XMPPIQ *IQ = [XMPPIQ IQWithType: @"set"
ID: [_connection generateStanzaID]];
OFXMLElement *query = [OFXMLElement elementWithName: @"query"
namespace: XMPP_NS_ROSTER];
namespace: XMPPRosterNS];
OFXMLElement *item = [OFXMLElement elementWithName: @"item"
namespace: XMPP_NS_ROSTER];
namespace: XMPPRosterNS];
[item addAttributeWithName: @"jid"
[item addAttributeWithName: @"jid" stringValue: rosterItem.JID.bareJID];
stringValue: rosterItem.JID.bareJID];
[item addAttributeWithName: @"subscription"
[item addAttributeWithName: @"subscription" stringValue: @"remove"];
stringValue: @"remove"];
[query addChild: item];
[IQ addChild: query];
[_connection sendStanza: IQ];
}
|
︙ | | |
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
|
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
|
-
+
-
-
+
-
|
[item setObject: rosterItem.name
forKey: @"name"];
if ([rosterItem groups] != nil)
[item setObject: rosterItem.groups
forKey: @"groups"];
[items setObject: item
[items setObject: item forKey: rosterItem.JID.bareJID];
forKey: rosterItem.JID.bareJID];
} else
[items removeObjectForKey: rosterItem.JID.bareJID];
[_dataStorage setDictionary: items
[_dataStorage setDictionary: items forPath: @"roster.items"];
forPath: @"roster.items"];
}
if (![rosterItem.subscription isEqual: @"remove"])
[_rosterItems setObject: rosterItem
forKey: rosterItem.JID.bareJID];
else
[_rosterItems removeObjectForKey: rosterItem.JID.bareJID];
|
︙ | | |
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
|
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
|
-
+
-
-
+
|
![subscription isEqual: @"both"] &&
![subscription isEqual: @"remove"])
subscription = @"none";
rosterItem.subscription = subscription;
for (OFXMLElement *groupElement in
[element elementsForName: @"group"
[element elementsForName: @"group" namespace: XMPPRosterNS])
namespace: XMPP_NS_ROSTER])
[groups addObject: groupElement.stringValue];
if (groups.count > 0)
rosterItem.groups = groups;
return rosterItem;
}
- (void)xmpp_handleInitialRosterForConnection: (XMPPConnection *)connection
IQ: (XMPPIQ *)IQ
{
OFXMLElement *rosterElement = [IQ elementForName: @"query"
namespace: XMPP_NS_ROSTER];
namespace: XMPPRosterNS];
if (connection.supportsRosterVersioning) {
if (rosterElement == nil) {
for (OFDictionary *item in
[_dataStorage dictionaryForPath: @"roster.items"]) {
XMPPRosterItem *rosterItem;
XMPPJID *JID;
|
︙ | | |
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
|
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
|
-
+
-
+
-
|
}
for (OFXMLElement *element in rosterElement.children) {
void *pool = objc_autoreleasePoolPush();
XMPPRosterItem *rosterItem;
if (![element.name isEqual: @"item"] ||
![element.namespace isEqual: XMPP_NS_ROSTER])
![element.namespace isEqual: XMPPRosterNS])
continue;
rosterItem = [self xmpp_rosterItemWithXMLElement: element];
[self xmpp_updateRosterItem: rosterItem];
objc_autoreleasePoolPop(pool);
}
if (connection.supportsRosterVersioning && rosterElement != nil) {
OFString *ver =
[rosterElement attributeForName: @"ver"].stringValue;
[_dataStorage setStringValue: ver
[_dataStorage setStringValue: ver forPath: @"roster.ver"];
forPath: @"roster.ver"];
[_dataStorage save];
}
[_delegates broadcastSelector: @selector(rosterWasReceived:)
withObject: self];
}
@end
|
︙ | | |
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
-
+
-
|
#import "XMPPExceptions.h"
#define HMAC_IPAD 0x36
#define HMAC_OPAD 0x5c
@interface XMPPSCRAMAuth ()
- (OFString *)xmpp_genNonce;
- (const uint8_t *)xmpp_HMACWithKey: (OFData *)key
- (const uint8_t *)xmpp_HMACWithKey: (OFData *)key data: (OFData *)data;
data: (OFData *)data;
- (OFData *)xmpp_hiWithData: (OFData *)str
salt: (OFData *)salt
iterationCount: (intmax_t)i;
- (OFData *)xmpp_parseServerFirstMessage: (OFData *)data;
- (OFData *)xmpp_parseServerFinalMessage: (OFData *)data;
@end
|
︙ | | |
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
|
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
|
-
+
-
-
+
-
-
+
-
-
+
-
|
- (void)setAuthzid: (OFString *)authzid
{
OFString *old = _authzid;
if (authzid) {
OFMutableString *new = [[authzid mutableCopy] autorelease];
[new replaceOccurrencesOfString: @"="
[new replaceOccurrencesOfString: @"=" withString: @"=3D"];
withString: @"=3D"];
[new replaceOccurrencesOfString: @","
[new replaceOccurrencesOfString: @"," withString: @"=2C"];
withString: @"=2C"];
[new makeImmutable];
_authzid = [new copy];
} else
_authzid = nil;
[old release];
}
- (void)setAuthcid: (OFString *)authcid
{
OFString *old = _authcid;
if (authcid) {
OFMutableString *new = [[authcid mutableCopy] autorelease];
[new replaceOccurrencesOfString: @"="
[new replaceOccurrencesOfString: @"=" withString: @"=3D"];
withString: @"=3D"];
[new replaceOccurrencesOfString: @","
[new replaceOccurrencesOfString: @"," withString: @"=2C"];
withString: @"=2C"];
[new makeImmutable];
_authcid = [new copy];
} else
_authcid = nil;
[old release];
}
|
︙ | | |
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
|
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
|
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
+
-
-
+
+
-
|
if (_plusAvailable && _connection.encrypted) {
OFData *channelBinding = [((SSLSocket *)[_connection socket])
channelBindingDataWithType: @"tls-unique"];
[tmpArray addItems: channelBinding.items
count: channelBinding.count];
}
tmpString = tmpArray.stringByBase64Encoding;
[ret addItems: "c="
[ret addItems: "c=" count: 2];
count: 2];
[ret addItems: tmpString.UTF8String
[ret addItems: tmpString.UTF8String count: tmpString.UTF8StringLength];
count: tmpString.UTF8StringLength];
// Add r=<nonce>
[ret addItem: ","];
[ret addItems: "r="
[ret addItems: "r=" count: 2];
count: 2];
[ret addItems: sNonce.UTF8String
[ret addItems: sNonce.UTF8String count: sNonce.UTF8StringLength];
count: sNonce.UTF8StringLength];
/*
* IETF RFC 5802:
* SaltedPassword := Hi(Normalize(password), salt, i)
*/
tmpArray = [OFMutableData dataWithItems: _password.UTF8String
count: _password.UTF8StringLength];
saltedPassword = [self xmpp_hiWithData: tmpArray
salt: salt
iterationCount: iterCount];
/*
* IETF RFC 5802:
* AuthMessage := client-first-message-bare + "," +
* server-first-message + "," +
* client-final-message-without-proof
*/
[authMessage addItems: _clientFirstMessageBare.UTF8String
count: _clientFirstMessageBare.UTF8StringLength];
[authMessage addItem: ","];
[authMessage addItems: data.items
[authMessage addItems: data.items count: data.count * data.itemSize];
count: data.count * data.itemSize];
[authMessage addItem: ","];
[authMessage addItems: ret.items
[authMessage addItems: ret.items count: ret.count];
count: ret.count];
/*
* IETF RFC 5802:
* ClientKey := HMAC(SaltedPassword, "Client Key")
*/
clientKey = [self
clientKey = [self xmpp_HMACWithKey: saltedPassword
data: [OFData dataWithItems: "Client Key"
xmpp_HMACWithKey: saltedPassword
data: [OFData dataWithItems: "Client Key" count: 10]];
count: 10]];
/*
* IETF RFC 5802:
* StoredKey := H(ClientKey)
*/
[hash updateWithBuffer: (void *)clientKey
length: [_hashType digestSize]];
|
︙ | | |
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
|
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
|
+
-
-
+
+
-
-
+
-
-
+
-
-
+
-
|
count: hash.digestSize]
data: authMessage];
/*
* IETF RFC 5802:
* ServerKey := HMAC(SaltedPassword, "Server Key")
*/
serverKey = [self
serverKey = [self xmpp_HMACWithKey: saltedPassword
data: [OFData dataWithItems: "Server Key"
xmpp_HMACWithKey: saltedPassword
data: [OFData dataWithItems: "Server Key" count: 10]];
count: 10]];
/*
* IETF RFC 5802:
* ServerSignature := HMAC(ServerKey, AuthMessage)
*/
tmpArray = [OFMutableData dataWithItems: serverKey
count: [_hashType digestSize]];
[_serverSignature release];
_serverSignature = [[OFData alloc]
initWithItems: [self xmpp_HMACWithKey: tmpArray
initWithItems: [self xmpp_HMACWithKey: tmpArray data: authMessage]
data: authMessage]
count: [_hashType digestSize]];
/*
* IETF RFC 5802:
* ClientProof := ClientKey XOR ClientSignature
*/
tmpArray = [OFMutableData dataWithCapacity: [_hashType digestSize]];
for (i = 0; i < [_hashType digestSize]; i++) {
uint8_t c = clientKey[i] ^ clientSignature[i];
[tmpArray addItem: &c];
}
// Add p=<base64(ClientProof)>
[ret addItem: ","];
[ret addItems: "p="
[ret addItems: "p=" count: 2];
count: 2];
tmpString = tmpArray.stringByBase64Encoding;
[ret addItems: tmpString.UTF8String
[ret addItems: tmpString.UTF8String count: tmpString.UTF8StringLength];
count: tmpString.UTF8StringLength];
return ret;
}
- (OFData *)xmpp_parseServerFinalMessage: (OFData *)data
{
OFString *mess, *value;
|
︙ | | |
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
|
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
|
-
+
-
-
+
-
|
uint8_t *kI = NULL, *kO = NULL;
id <OFCryptographicHash> hashI, hashO;
if (key.itemSize * key.count > blockSize) {
hashI = [[[_hashType alloc] init] autorelease];
[hashI updateWithBuffer: key.items
length: key.itemSize * key.count];
[k addItems: hashI.digest
[k addItems: hashI.digest count: hashI.digestSize];
count: hashI.digestSize];
} else
[k addItems: key.items
[k addItems: key.items count: key.itemSize * key.count];
count: key.itemSize * key.count];
@try {
kI = OFAllocMemory(1, blockSize);
kO = OFAllocMemory(1, blockSize);
kSize = k.count;
memcpy(kI, k.items, kSize);
|
︙ | | |
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
|
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
|
-
+
-
-
+
-
-
+
-
-
+
-
|
@try {
memset(result, 0, digestSize);
salty = [[salt mutableCopy] autorelease];
[salty addItems: "\0\0\0\1"
count: 4];
uOld = [self xmpp_HMACWithKey: str
uOld = [self xmpp_HMACWithKey: str data: salty];
data: salty];
for (j = 0; j < digestSize; j++)
result[j] ^= uOld[j];
for (j = 0; j < i - 1; j++) {
tmp = [[OFMutableData alloc] init];
[tmp addItems: uOld
[tmp addItems: uOld count: digestSize];
count: digestSize];
/* releases uOld and previous tmp */
objc_autoreleasePoolPop(pool);
pool = objc_autoreleasePoolPush();
[tmp autorelease];
u = [self xmpp_HMACWithKey: str
u = [self xmpp_HMACWithKey: str data: tmp];
data: tmp];
for (k = 0; k < digestSize; k++)
result[k] ^= u[k];
uOld = u;
}
ret = [OFData dataWithItems: result
ret = [OFData dataWithItems: result count: digestSize];
count: digestSize];
} @finally {
OFFreeMemory(result);
}
[ret retain];
objc_autoreleasePoolPop(pool);
return [ret autorelease];
}
@end
|
1
2
3
4
5
6
7
8
9
|
1
2
3
4
5
6
7
8
9
|
-
+
|
/*
* Copyright (c) 2011, 2012, 2013, 2016, Jonathan Schleifer <js@heap.zone>
* Copyright (c) 2011, 2012, 2013, 2016, 2021, Jonathan Schleifer <js@nil.im>
* Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de>
*
* https://heap.zone/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.
|
︙ | | |
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
-
+
-
|
/*!
* @brief Creates a new autoreleased XMPPStanza with the specified name and ID.
*
* @param name The stanza's name (one of iq, message or presence)
* @param ID The value for the stanza's id attribute
* @return A new autoreleased XMPPStanza
*/
+ (instancetype)stanzaWithName: (OFString *)name
+ (instancetype)stanzaWithName: (OFString *)name ID: (nullable OFString *)ID;
ID: (nullable OFString *)ID;
/*!
* @brief Creates a new autoreleased XMPPStanza with the specified name, type
* and ID.
*
* @param name The stanza's name (one of iq, message or presence)
* @param type The value for the stanza's type attribute
|
︙ | | |
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
|
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
|
-
+
-
-
+
-
|
* @brief Initializes an already allocated XMPPStanza with the specified name
* and type.
*
* @param name The stanza's name (one of iq, message or presence)
* @param type The value for the stanza's type attribute
* @return A initialized XMPPStanza
*/
- (instancetype)initWithName: (OFString *)name
- (instancetype)initWithName: (OFString *)name type: (nullable OFString *)type;
type: (nullable OFString *)type;
/*!
* @brief Initializes an already allocated XMPPStanza with the specified name
* and ID.
*
* @param name The stanza's name (one of iq, message or presence)
* @param ID The value for the stanza's id attribute
* @return A initialized XMPPStanza
*/
- (instancetype)initWithName: (OFString *)name
- (instancetype)initWithName: (OFString *)name ID: (nullable OFString *)ID;
ID: (nullable OFString *)ID;
/*!
* @brief Initializes an already allocated XMPPStanza with the specified name,
* type and ID.
*
* @param name The stanza's name (one of iq, message or presence)
* @param type The value for the stanza's type attribute
|
︙ | | |
1
2
3
4
5
6
7
8
9
|
1
2
3
4
5
6
7
8
9
|
-
+
|
/*
* Copyright (c) 2011, 2012, 2013, 2019, Jonathan Schleifer <js@heap.zone>
* Copyright (c) 2011, 2012, 2013, 2019, 2021, Jonathan Schleifer <js@nil.im>
* Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de>
*
* https://heap.zone/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.
|
︙ | | |
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
|
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
-
+
-
-
+
-
-
+
-
-
+
-
|
@synthesize language = _language;
+ (instancetype)stanzaWithName: (OFString *)name
{
return [[[self alloc] initWithName: name] autorelease];
}
+ (instancetype)stanzaWithName: (OFString *)name
+ (instancetype)stanzaWithName: (OFString *)name type: (OFString *)type
type: (OFString *)type
{
return [[[self alloc] initWithName: name
return [[[self alloc] initWithName: name type: type] autorelease];
type: type] autorelease];
}
+ (instancetype)stanzaWithName: (OFString *)name
+ (instancetype)stanzaWithName: (OFString *)name ID: (OFString *)ID
ID: (OFString *)ID
{
return [[[self alloc] initWithName: name
return [[[self alloc] initWithName: name ID: ID] autorelease];
ID: ID] autorelease];
}
+ (instancetype)stanzaWithName: (OFString *)name
type: (OFString *)type
ID: (OFString *)ID
{
return [[[self alloc] initWithName: name
|
︙ | | |
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
-
+
-
|
- (instancetype)initWithName: (OFString *)name
stringValue: (OFString *)stringValue
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithName: (OFString *)name
- (instancetype)initWithName: (OFString *)name namespace: (OFString *)namespace
namespace: (OFString *)namespace
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithName: (OFString *)name
namespace: (nullable OFString *)namespace
stringValue: (nullable OFString *)stringValue
|
︙ | | |
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
|
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
|
-
+
-
-
-
+
-
-
+
-
-
-
+
-
-
-
+
-
-
+
+
-
|
- (instancetype)initWithFile: (OFString *)path
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithName: (OFString *)name
{
return [self initWithName: name
return [self initWithName: name type: nil ID: nil];
type: nil
ID: nil];
}
- (instancetype)initWithName: (OFString *)name
- (instancetype)initWithName: (OFString *)name type: (OFString *)type
type: (OFString *)type
{
return [self initWithName: name
return [self initWithName: name type: type ID: nil];
type: type
ID: nil];
}
- (instancetype)initWithName: (OFString *)name
ID: (OFString *)ID
{
return [self initWithName: name
return [self initWithName: name type: nil ID: ID];
type: nil
ID: ID];
}
- (instancetype)initWithName: (OFString *)name
type: (OFString *)type
ID: (OFString *)ID
{
self = [super initWithName: name
namespace: XMPP_NS_CLIENT
namespace: XMPPClientNS
stringValue: nil];
@try {
if (![name isEqual: @"iq"] && ![name isEqual: @"message"] &&
![name isEqual: @"presence"])
@throw [OFInvalidArgumentException exception];
self.defaultNamespace = XMPP_NS_CLIENT;
[self setPrefix: @"stream"
self.defaultNamespace = XMPPClientNS;
[self setPrefix: @"stream" forNamespace: XMPPStreamNS];
forNamespace: XMPP_NS_STREAM];
if (type != nil)
self.type = type;
if (ID != nil)
self.ID = ID;
} @catch (id e) {
|
︙ | | |
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
|
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
|
-
+
-
-
+
-
-
+
-
-
+
-
|
XMPPJID *old = _from;
_from = [from copy];
[old release];
[self removeAttributeForName: @"from"];
if (from != nil)
[self addAttributeWithName: @"from"
[self addAttributeWithName: @"from" stringValue: from.fullJID];
stringValue: from.fullJID];
}
- (void)setTo: (XMPPJID *)to
{
XMPPJID *old = _to;
_to = [to copy];
[old release];
[self removeAttributeForName: @"to"];
if (to != nil)
[self addAttributeWithName: @"to"
[self addAttributeWithName: @"to" stringValue: to.fullJID];
stringValue: to.fullJID];
}
- (void)setType: (OFString *)type
{
OFString *old = _type;
_type = [type copy];
[old release];
[self removeAttributeForName: @"type"];
if (type != nil)
[self addAttributeWithName: @"type"
[self addAttributeWithName: @"type" stringValue: type];
stringValue: type];
}
- (void)setID: (OFString *)ID
{
OFString *old = _ID;
_ID = [ID copy];
[old release];
[self removeAttributeForName: @"id"];
if (ID != nil)
[self addAttributeWithName: @"id"
[self addAttributeWithName: @"id" stringValue: ID];
stringValue: ID];
}
- (void)setLanguage: (OFString *)language
{
OFString *old = _language;
_language = [language copy];
[old release];
|
︙ | | |
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
|
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
|
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
/*
* Copyright (c) 2011, Jonathan Schleifer <js@webkeks.org>
* Copyright (c) 2011, 2021, Jonathan Schleifer <js@nil.im>
*
* https://heap.zone/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_NS_BIND @"urn:ietf:params:xml:ns:xmpp-bind"
#define XMPP_NS_CAPS @"http://jabber.org/protocol/caps"
#define XMPP_NS_CLIENT @"jabber:client"
#define XMPP_NS_DISCO_INFO @"http://jabber.org/protocol/disco#info"
#define XMPP_NS_DISCO_ITEMS @"http://jabber.org/protocol/disco#items"
#define XMPP_NS_MUC @"http://jabber.org/protocol/muc"
#define XMPP_NS_ROSTER @"jabber:iq:roster"
#define XMPP_NS_ROSTERVER @"urn:xmpp:features:rosterver"
#define XMPP_NS_SASL @"urn:ietf:params:xml:ns:xmpp-sasl"
#define XMPP_NS_SESSION @"urn:ietf:params:xml:ns:xmpp-session"
#define XMPP_NS_SM @"urn:xmpp:sm:3"
#define XMPP_NS_STANZAS @"urn:ietf:params:xml:ns:xmpp-stanzas"
#define XMPP_NS_STARTTLS @"urn:ietf:params:xml:ns:xmpp-tls"
#define XMPP_NS_STREAM @"http://etherx.jabber.org/streams"
#define XMPP_NS_XMPP_STREAM @"urn:ietf:params:xml:ns:xmpp-streams"
#define XMPPBindNS @"urn:ietf:params:xml:ns:xmpp-bind"
#define XMPPCapsNS @"http://jabber.org/protocol/caps"
#define XMPPClientNS @"jabber:client"
#define XMPPDiscoInfoNS @"http://jabber.org/protocol/disco#info"
#define XMPPDiscoItemsNS @"http://jabber.org/protocol/disco#items"
#define XMPPMUCNS @"http://jabber.org/protocol/muc"
#define XMPPRosterNS @"jabber:iq:roster"
#define XMPPRosterVerNS @"urn:xmpp:features:rosterver"
#define XMPPSASLNS @"urn:ietf:params:xml:ns:xmpp-sasl"
#define XMPPSessionNS @"urn:ietf:params:xml:ns:xmpp-session"
#define XMPPSMNS @"urn:xmpp:sm:3"
#define XMPPStanzasNS @"urn:ietf:params:xml:ns:xmpp-stanzas"
#define XMPPStartTLSNS @"urn:ietf:params:xml:ns:xmpp-tls"
#define XMPPStreamNS @"http://etherx.jabber.org/streams"
#define XMPPXMPPStreamNS @"urn:ietf:params:xml:ns:xmpp-streams"
|
︙ | | |
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
|
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
|
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
|
msg.to = [XMPPJID JIDWithString: @"jdev@conference.jabber.org"];
msg.from = [XMPPJID JIDWithString: @"alice@example.com"];
assert([msg.XMLString isEqual: @"<message type='chat' "
@"to='jdev@conference.jabber.org' "
@"from='alice@example.com'><body>Hello everyone</body>"
@"</message>"]);
XMPPIQ *IQ = [XMPPIQ IQWithType: @"set"
XMPPIQ *IQ = [XMPPIQ IQWithType: @"set" ID: @"128"];
ID: @"128"];
IQ.to = [XMPPJID JIDWithString: @"juliet@capulet.lit"];
IQ.from = [XMPPJID JIDWithString: @"romeo@montague.lit"];
assert([IQ.XMLString isEqual: @"<iq type='set' id='128' "
@"to='juliet@capulet.lit' "
@"from='romeo@montague.lit'/>"]);
OFXMLElement *elem = [OFXMLElement elementWithName: @"iq"];
[elem addAttributeWithName: @"from"
[elem addAttributeWithName: @"from" stringValue: @"bob@localhost"];
stringValue: @"bob@localhost"];
[elem addAttributeWithName: @"to"
[elem addAttributeWithName: @"to" stringValue: @"alice@localhost"];
stringValue: @"alice@localhost"];
[elem addAttributeWithName: @"type"
[elem addAttributeWithName: @"type" stringValue: @"get"];
stringValue: @"get"];
[elem addAttributeWithName: @"id"
[elem addAttributeWithName: @"id" stringValue: @"42"];
stringValue: @"42"];
XMPPStanza *stanza = [XMPPStanza stanzaWithElement: elem];
assert([elem.XMLString isEqual: [stanza XMLString]]);
assert(([[OFString stringWithFormat: @"%@, %@, %@, %@",
stanza.from.fullJID, stanza.to.fullJID, stanza.type, stanza.ID]
isEqual: @"bob@localhost, alice@localhost, get, 42"]));
|
︙ | | |
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
-
+
-
|
}
- (void)connectionWasAuthenticated: (XMPPConnection *)conn
{
OFLog(@"Auth successful");
}
- (void)connection: (XMPPConnection *)conn_
- (void)connection: (XMPPConnection *)conn_ wasBoundToJID: (XMPPJID *)JID
wasBoundToJID: (XMPPJID *)JID
{
OFLog(@"Bound to JID: %@", JID.fullJID);
OFLog(@"Supports SM: %@",
conn_.supportsStreamManagement ? @"true" : @"false");
XMPPDiscoEntity *discoEntity =
[[XMPPDiscoEntity alloc] initWithConnection: conn];
|
︙ | | |
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
-
+
-
-
-
+
|
pres = [XMPPPresence presence];
pres.priority = [OFNumber numberWithChar: 10];
pres.status = @"ObjXMPP test is working!";
[conn sendStanza: pres];
#ifdef OF_HAVE_BLOCKS
XMPPIQ *IQ = [XMPPIQ IQWithType: @"get"
XMPPIQ *IQ = [XMPPIQ IQWithType: @"get" ID: [conn generateStanzaID]];
ID: [conn generateStanzaID]];
[IQ addChild: [OFXMLElement elementWithName: @"ping"
namespace: @"urn:xmpp:ping"]];
[conn sendIQ: IQ
callbackBlock: ^ (XMPPConnection *c, XMPPIQ *resp) {
[conn sendIQ: IQ callbackBlock: ^ (XMPPConnection *c, XMPPIQ *resp) {
OFLog(@"Ping response: %@", resp);
}];
#endif
}
- (void)connectionDidUpgradeToTLS: (XMPPConnection *)conn_
{
|
︙ | | |
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
|
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
|
-
+
-
-
+
-
-
+
-
-
+
-
|
- (void)roster: (XMPPRoster *)roster_
didReceiveRosterItem: (XMPPRosterItem *)rosterItem
{
OFLog(@"Got roster push: %@", rosterItem);
}
- (bool)connection: (XMPPConnection *)conn
- (bool)connection: (XMPPConnection *)conn didReceiveIQ: (XMPPIQ *)iq
didReceiveIQ: (XMPPIQ *)iq
{
OFLog(@"IQ: %@", iq);
return NO;
}
- (void)connection: (XMPPConnection *)conn
- (void)connection: (XMPPConnection *)conn didReceiveMessage: (XMPPMessage *)msg
didReceiveMessage: (XMPPMessage *)msg
{
OFLog(@"Message: %@", msg);
}
- (void)connection: (XMPPConnection *)conn
didReceivePresence: (XMPPPresence *)pres
{
OFLog(@"Presence: %@", pres);
}
- (void)connection: (XMPPConnection *)conn
- (void)connection: (XMPPConnection *)conn didThrowException: (id)e
didThrowException: (id)e
{
@throw e;
}
- (void)connectionWasClosed: (XMPPConnection *)conn
- (void)connectionWasClosed: (XMPPConnection *)conn error: (OFXMLElement *)error
error: (OFXMLElement *)error
{
OFLog(@"Connection was closed: %@", error);
}
@end
|