Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

While reload page not get roster presence? #28

Closed
nishant-zz opened this issue Feb 7, 2012 · 6 comments
Closed

While reload page not get roster presence? #28

nishant-zz opened this issue Feb 7, 2012 · 6 comments

Comments

@nishant-zz
Copy link

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
Copy link

ghost commented Apr 3, 2012

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
Copy link
Owner

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
Copy link

ghost commented Apr 12, 2012

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
Copy link
Owner

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:
#28 (comment)

@ghost
Copy link

ghost commented Apr 13, 2012

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
Copy link
Owner

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:
#28 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants