Giter Club home page Giter Club logo

Comments (6)

 avatar commented on July 30, 2024

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...

from jsjac.

sstrigler avatar sstrigler commented on July 30, 2024

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.

from jsjac.

 avatar commented on July 30, 2024

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.

from jsjac.

sstrigler avatar sstrigler commented on July 30, 2024

How are you adding this new user?

Am 12.04.2012 um 22:48 schrieb Eric Colman [email protected]:

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)

from jsjac.

 avatar commented on July 30, 2024

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();

}

from jsjac.

sstrigler avatar sstrigler commented on July 30, 2024

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 [email protected]:

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)

from jsjac.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.