【iOS XMPP】使用XMPPFramewok(二):用戶登錄

原文地址:http://www.cnblogs.com/dyingbleed/archive/2013/05/10/3069397.html

【iOS XMPP】使用XMPPFramewok(二):用戶登錄

用戶登錄

 

準備工作

比較知名的開源XMPP服務器:一個是Openfire,一個是ejabberd

Openfire 使用 Java 語言編寫,比較容易上手,地址:http://www.igniterealtime.org/projects/openfire/

ejabberd 使用 Erlang 語言編寫,是一款非常知名的 Erlang 開源項目,地址:http://www.ejabberd.im/

安裝 ejabberd,可以參考我的博客:【ejabberd】安裝XMPP服務器ejabberd(Ubuntu 12.04)

搭建一個自己的 XMPP 服務器之後,就讓我們開始吧!

 

連接服務器

1、新建一個 XMPPStream 對象,添加委託

添加委託方法 - (void)addDelegate:(id)delegate delegateQueue:(dispatch_queue_t)delegateQueue

參數 delegateQueue 爲委託回調所使用的 GCD 隊列,dispatch_get_main_queue() 獲取主線程 GCD 隊列

2、設置 JID 和 主機名

JID 一般由三部分構成:用戶名,域名和資源名,例如 [email protected]/Anthony

如果沒有設置主機名,則使用 JID 的域名作爲主機名

端口號是可選的,默認是 5222

3、連接

複製代碼
- (void)connect {
    if (self.xmppStream == nil) {
        self.xmppStream = [[XMPPStream alloc] init];
        [self.xmppStream addDelegate:self delegateQueue:dispatch_get_main_queue()];
    }
    
    if (![self.xmppStream isConnected]) {
        NSString *username = [[NSUserDefaults standardUserDefaults] objectForKey:@"username"];
        XMPPJID *jid = [XMPPJID jidWithUser:username domain:@"lizhen" resource:@"Ework"];
        [self.xmppStream setMyJID:jid];
        [self.xmppStream setHostName:@"10.4.125.113"];
        NSError *error = nil;
        if (![self.xmppStream connect:&error]) {
            NSLog(@"Connect Error: %@", [[error userInfo] description]);
        }
    }
}
複製代碼

 

身份認證

實現 - (void)xmppStreamDidConnect:(XMPPStream *)sender 委託方法

連接服務器成功後,回調該方法

This method is called after the XML stream has been fully opened. More precisely, this method is called after an opening <xml/> and <stream:stream/> tag have been sent and received, and after the stream features have been received, and any required features have been fullfilled. At this point it's safe to begin communication with the server.

身份認證方法 - (BOOL)authenticateWithPassword:(NSString *)inPassword error:(NSError **)errPtr

複製代碼
- (void)xmppStreamDidConnect:(XMPPStream *)sender {
    NSString *password = [[NSUserDefaults standardUserDefaults] objectForKey:@"password"];
    NSError *error = nil;
    if (![self.xmppStream authenticateWithPassword:password error:&error]) {
        NSLog(@"Authenticate Error: %@", [[error userInfo] description]);
    }
}
複製代碼

 

上線

實現 - (void)xmppStreamDidAuthenticate:(XMPPStream *)sender 委託方法

身份認證成功後,回調該方法

This method is called after authentication has successfully finished. 

If authentication fails for some reason, the xmppStream:didNotAuthenticate: method will be called instead.

新建一個 XMPPPresence 對象,類型爲 available,發送!

- (void)xmppStreamDidAuthenticate:(XMPPStream *)sender {
    XMPPPresence *presence = [XMPPPresence presenceWithType:@"available"];
    [self.xmppStream sendElement:presence];
}

 

退出並斷開連接

新建一個 XMPPPresence 對象,類型爲 unavailable,發送!

斷開連接

- (void)disconnect {
    XMPPPresence *presence = [XMPPPresence presenceWithType:@"unavailable"];
    [self.xmppStream sendElement:presence];
    
    [self.xmppStream disconnect];
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章