node.js使用node-xmpp进行xmpp通信

博主CSDN昵称:守护者ly,欢迎大家前去指点

最近写了一个Node.js使用node-xmpp的例子,实现了登录、收发消息和消息的解析,贴出来与大家参详一下。
我使用的node-xmpp版本为1.0.4,在创建好node.js项目后,可以运行npm install node-xmpp进行安装,在此我就不再赘述了。实现通信还需要配置ejabberd服务器,这个网上有资料,请自行谷歌。

将node-xmpp引入项目后,首先声明变量

    //version 1.0.4  
    var XMPP = require('node-xmpp'); 

接下来配置连接属性

var cl = new XMPP.Client({  
    //用户名  
    jid: '[email protected]',  
    //密码  
    password: '111111',  
    reconnect: true,  
    //ejabberd服务器地址  
    host: '192.168.26.38',  
    //端口号  
    port: '5222'  
});

然后就可以登录了。我下面的代码实现了登陆后向一个名为“[email protected]”人发送一条"fighting!"的消息,然后开启接收消息的监听

// Do things when online  
    cl.on('online', function () {  
        console.log("We're online!");  
        // Set client's presence  
        cl.send(new XMPP.Element('presence', {type: 'available'}).c('show').t('chat'));  

        // Send keepalive  
        setInterval(function () {  
            cl.send(' ');  
        }, 30000);  

    var chatMessage = new XMPP.Element('message', {to: '[email protected]', type:'chat'})
        //添加名为body的标签,并设置内容为fighting!  up()表示添加的标签不作为子标签           
        .c('body').t('fighting!').up()        
        //添加名为userinfo的标签,与body标签同级别          
        .c('userinfo', {'xmlns':'extension'})          
        //添加作为userinfo子标签的名为name的标签          
        .c('name').t("lf");  
    cl.send(chatMessage.tree());  
    //监听方法  
        cl.on('stanza', function(message) {  
            console.log('message get'+ message);  
            //此if判断无效  
            if(message.attr.type == 'message'){  
                console.log('ok');  
            }  
            if(message.is('message')){  
                console.log('get');  
                console.log("type = " + message.type);  
                var userinfo = message.getChild('userinfo');  
                var name;  
                if(userinfo != null){  
                    name = userinfo.getChild('name');  
                    console.log("name = "+name);  
                    if(name != null){  
                        console.log("name text = " + name.getText());  
                    }  
                }  
                console.log("body = " + message.getChild('body').getText());  
            }  
        });  
    });  

在接收端接收到的消息内容如下:

    fighting!376fd9b5-c908-4b04-a7ae-9e3bc6f07265lf

其中接到的消息message,可以使用"message.from"获取到消息的发送人,使用"message.getChild('body')“方法获取到消息内容。我在Android端发送消息时又新增了名为"userinfo"的标签,又在其中加入了name标签,android端消息代码如下:

    Message message = new Message("[email protected]");  
    message.addBody(null, "I must be willing to fight!");  
    message.addSubject("favorite color", "red");  
    DefaultExtensionElement defaultExtensionElement = new DefaultExtensionElement(  
    "userinfo","extension");  
    defaultExtensionElement.setValue("name","ly");  
    message.addExtension(defaultExtensionElement);

[email protected]用户向[email protected]回复了一条"I must be willing to fight!"并在name标签中署名ly。具体接收到的消息如下:

    redI must be willing to fight!8902450d-4624-484c-8b0e-454db8243750ly

以上并非全部node.js代码,但是关键方法已经给出,用兴趣的朋友可以试试。如有不足之处,请大家不吝指教!

你可能感兴趣的:(node.js使用node-xmpp进行xmpp通信)