sstrigler / JSJaC

JavaScript Jabber Client Library
Other
295 stars 86 forks source link

While reload page not get roster presence? #28

Closed nishant-zz closed 12 years ago

nishant-zz commented 12 years ago

Hello,

While Login , i can get Presence of all rosters users. //login time

However i reload my page i can not get rosters presence, // that time connection resume

/ function handlePresence(aJSJaCPacket) /

@sstrigler has become available @cstar has become available...... etc...

Please help me how to get all roster users presence , Like available or offline or away etc...

Thanks Nishant

ghost commented 12 years ago

I have the same issue. When connecting, the roster comes back with presence. When resuming, the roster comes back but without presence.

I'm thinking of storing the roster in local storage on each page unload and bringing it back up when a resume happens...

sstrigler commented 12 years ago

Sorry but this won't work as you expect. That's because you're not doing a new login upon reconnecting. Thus you have to store the state of the roster on your own and restore it after resuming. Local storage might indeed be an option to handle this.

ghost commented 12 years ago

Unfortunately, there is one severe issue here, even when storing the roster in local storage for page transitions.

When adding a user to the roster after resuming, you will not receive the new user's presence information, even if they are online.

sstrigler commented 12 years ago

How are you adding this new user?

Am 12.04.2012 um 22:48 schrieb Eric Colman reply@reply.github.com:

Unfortunately, there is one severe issue here, even when storing the roster in local storage for page transitions.

When adding a user to the roster after resuming, you will not receive the new user's presence information, even if they are online.


Reply to this email directly or view it on GitHub: https://github.com/sstrigler/JSJaC/issues/28#issuecomment-5100306

ghost commented 12 years ago

Here is the code, basically getting a subscription, gathering all groups the user is going to be in and already in, then sending off IQ msg:

function addUserToGroup(xid, nickname, subscription, groups) { // subscribe to user sendSubscribe(xid, 'subscribe');

// setup roster, send IQ msg to change groups for this contact
var iq = new JSJaCIQ();
iq.setType('set');
var query = iq.setQuery('jabber:iq:roster');
var item = query.appendChild(iq.buildNode('item', { 'xmlns': 'jabber:iq:roster', 'jid': xid }));

if (subscription)
    item.setAttribute('subscription', subscription);

if (nickname)
    item.setAttribute('name', nickname);

// check if groups are in an array, if not, make it one
var g = new Array();
if (groups.constructor.toString().indexOf("Array") != -1) {
    g = groups;
} else {
    g.push(groups);
}

// append all current groups this user is already in to the groups array
var existing = listGroupsForUser(xid);
for (i = 0; i < existing.length; i++) {
    if (jQuery.inArray(existing[i], g) == -1) {
        g.push(existing[i]);
    }
}

// loop all groups and add them to IQ msg
if (g && g.length) {
    for (i in g) {
        item.appendChild(iq.buildNode('group', { 'xmlns': 'jabber:iq:roster' }, g[i]));
    }
}

this.con.send(iq);

}

function sendSubscribe(to, type) { sendPresence(to, type, '', status); }

function sendPresence(to, type, show, status, checksum, limit_history, password, handle) { if (this.con) { var priority = '100'; if (show == 'available') show = ''; if (type == 'available') type = ''; if (!checksum || (checksum == 'none')) checksum = '';

    // New presence
    var presence = new JSJaCPresence();

    // Presence headers
    if (to) presence.setTo(to);
    if (type) presence.setType(type);
    if (show) presence.setShow(show);
    if (status) presence.setStatus(status);
    presence.setPriority(priority);

    this.con.send(presence);
}

}

function listGroupsForUser(xid) { for (i = 0; i < roster.length; i++) { if (roster[i].xid == xid) { return roster[i].groups; } }

return new Array();

}

sstrigler commented 12 years ago

Of course you will receive presence only after the recipient has acknowledged your subscription request. But given those packets were sent correctly this should work then.

Am 13.04.2012 um 16:37 schrieb Eric Colman reply@reply.github.com:

Here is the code, basically getting a subscription, gathering all groups the user is going to be in and already in, then sending off IQ msg:

function addUserToGroup(xid, nickname, subscription, groups) { // subscribe to user sendSubscribe(xid, 'subscribe');

// setup roster, send IQ msg to change groups for this contact var iq = new JSJaCIQ(); iq.setType('set'); var query = iq.setQuery('jabber:iq:roster'); var item = query.appendChild(iq.buildNode('item', { 'xmlns': 'jabber:iq:roster', 'jid': xid }));

if (subscription) item.setAttribute('subscription', subscription);

if (nickname) item.setAttribute('name', nickname);

// check if groups are in an array, if not, make it one var g = new Array(); if (groups.constructor.toString().indexOf("Array") != -1) { g = groups; } else { g.push(groups); }

// append all current groups this user is already in to the groups array var existing = listGroupsForUser(xid); for (i = 0; i < existing.length; i++) { if (jQuery.inArray(existing[i], g) == -1) { g.push(existing[i]); } }

// loop all groups and add them to IQ msg if (g && g.length) { for (i in g) { item.appendChild(iq.buildNode('group', { 'xmlns': 'jabber:iq:roster' }, g[i])); } }

this.con.send(iq); }

function sendSubscribe(to, type) { sendPresence(to, type, '', status); }

function sendPresence(to, type, show, status, checksum, limit_history, password, handle) { if (this.con) { var priority = '100'; if (show == 'available') show = ''; if (type == 'available') type = ''; if (!checksum || (checksum == 'none')) checksum = '';

   // New presence
   var presence = new JSJaCPresence();

   // Presence headers
   if (to) presence.setTo(to);
   if (type) presence.setType(type);
   if (show) presence.setShow(show);
   if (status) presence.setStatus(status);
   presence.setPriority(priority);

   this.con.send(presence);

} }

function listGroupsForUser(xid) { for (i = 0; i < roster.length; i++) { if (roster[i].xid == xid) { return roster[i].groups; } }

return new Array(); }


Reply to this email directly or view it on GitHub: https://github.com/sstrigler/JSJaC/issues/28#issuecomment-5115797