Skip to content

Commit

Permalink
Create new Candy.Core.Contact for invites, add inRoster boolean to ob…
Browse files Browse the repository at this point in the history
…ject.
  • Loading branch information
Melissa Noelle committed Jan 9, 2015
1 parent 5c7205e commit b01d6f9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
9 changes: 7 additions & 2 deletions src/core/contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@
Candy.Core.Contact = function(stropheRosterItem) {
/** Object: data
* Strophe Roster plugin item model containing:
* - jid
* - name
* - (String) jid
* - (String) name
* - subscription
* - groups
* - (Boolean) inRoster
*/
this.data = stropheRosterItem;
};
Expand Down Expand Up @@ -134,6 +135,10 @@ Candy.Core.Contact.prototype.getStatus = function() {
return status;
};

Candy.Core.Contact.prototype.isInRoster = function() {
return this.data.inRoster;
}

Candy.Core.Contact.prototype._weightForStatus = function(status) {
switch (status) {
case 'chat':
Expand Down
7 changes: 4 additions & 3 deletions src/core/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ Candy.Core.Event = (function(self, Strophe, $) {
},

_addRosterItem: function(item) {
item.inRoster = true;
var user = new Candy.Core.Contact(item);
Candy.Core.getRoster().add(user);
return user;
Expand Down Expand Up @@ -482,8 +483,8 @@ Candy.Core.Event = (function(self, Strophe, $) {
}

if(directInvite.length > 0) {
fromUser = Candy.Core.getRoster().get(msg.attr('from'));
room = Candy.Core.getRoom(directInvite.attr('jid'));
var fromUser = new Candy.Core.Contact;
fromUser.data.jid = Candy.Core.getRoster().get(msg.attr('from'));

/*
* (Candy.Core.Chatroom) room -
Expand All @@ -493,7 +494,7 @@ Candy.Core.Event = (function(self, Strophe, $) {
* (String) continuedThread -
*/
invite = {
room: room,
roomJid: directInvite.attr('jid'),
from: fromUser,
reason: directInvite.attr('reason'),
password: directInvite.attr('password'),
Expand Down

0 comments on commit b01d6f9

Please sign in to comment.