2013-10-16 13:48:00 -04:00
|
|
|
/*global app, client, URL, me*/
|
2013-08-29 23:38:28 -04:00
|
|
|
"use strict";
|
|
|
|
|
2013-09-03 22:18:31 -04:00
|
|
|
var HumanModel = require('human-model');
|
2013-10-16 13:48:00 -04:00
|
|
|
var getUserMedia = require('getusermedia');
|
2013-08-20 13:45:06 -04:00
|
|
|
var Contacts = require('./contacts');
|
2013-10-15 15:15:25 -04:00
|
|
|
var Calls = require('./calls');
|
2013-08-29 23:38:28 -04:00
|
|
|
var Contact = require('./contact');
|
2013-09-16 19:12:00 -04:00
|
|
|
var MUCs = require('./mucs');
|
|
|
|
var MUC = require('./muc');
|
2013-10-16 13:48:40 -04:00
|
|
|
var ContactRequests = require('./contactRequests');
|
2013-09-19 19:57:37 -04:00
|
|
|
var fetchAvatar = require('../helpers/fetchAvatar');
|
2013-06-03 18:51:30 -04:00
|
|
|
|
|
|
|
|
2013-09-05 19:53:23 -04:00
|
|
|
module.exports = HumanModel.define({
|
2013-10-15 17:48:39 -04:00
|
|
|
initialize: function (opts) {
|
|
|
|
if (opts.avatarID) {
|
|
|
|
this.setAvatar(opts.avatarID);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.bind('change:jid', this.load, this);
|
2013-09-14 05:12:57 -04:00
|
|
|
this.bind('change:hasFocus', function () {
|
|
|
|
this.setActiveContact(this._activeContact);
|
|
|
|
}, this);
|
2013-10-15 19:21:22 -04:00
|
|
|
this.calls.bind('add remove reset', this.updateActiveCalls, this);
|
2013-10-15 17:48:39 -04:00
|
|
|
this.bind('change:avatarID', this.save, this);
|
|
|
|
this.bind('change:status', this.save, this);
|
|
|
|
this.bind('change:rosterVer', this.save, this);
|
2013-09-27 12:47:54 -04:00
|
|
|
this.contacts.bind('change:unreadCount', this.updateUnreadCount, this);
|
2013-09-26 23:19:46 -04:00
|
|
|
app.state.bind('change:active', this.updateIdlePresence, this);
|
2013-09-11 17:58:39 -04:00
|
|
|
},
|
2013-10-15 17:48:39 -04:00
|
|
|
props: {
|
2013-09-10 03:57:01 -04:00
|
|
|
jid: ['object', true],
|
2013-08-20 13:45:06 -04:00
|
|
|
status: ['string', true, ''],
|
2013-09-18 19:24:40 -04:00
|
|
|
avatarID: ['string', true, ''],
|
2013-10-15 17:48:39 -04:00
|
|
|
rosterVer: ['string', true, '']
|
|
|
|
},
|
|
|
|
session: {
|
|
|
|
avatar: ['string', true, ''],
|
2013-09-11 23:59:50 -04:00
|
|
|
connected: ['bool', true, false],
|
2013-09-12 14:18:44 -04:00
|
|
|
shouldAskForAlertsPermission: ['bool', true, false],
|
2013-09-14 05:12:57 -04:00
|
|
|
hasFocus: ['bool', true, false],
|
2013-09-25 23:38:00 -04:00
|
|
|
_activeContact: ['string', true, ''],
|
2013-10-16 13:48:00 -04:00
|
|
|
displayName: ['string', true, 'Me'],
|
|
|
|
stream: 'object'
|
2013-06-03 18:51:30 -04:00
|
|
|
},
|
2013-08-20 13:45:06 -04:00
|
|
|
collections: {
|
2013-09-16 19:12:00 -04:00
|
|
|
contacts: Contacts,
|
2013-10-16 13:48:40 -04:00
|
|
|
contactRequests: ContactRequests,
|
2013-10-15 15:15:25 -04:00
|
|
|
mucs: MUCs,
|
|
|
|
calls: Calls
|
2013-08-20 13:45:06 -04:00
|
|
|
},
|
2013-10-16 13:48:00 -04:00
|
|
|
derived: {
|
|
|
|
streamUrl: {
|
|
|
|
deps: ['stream'],
|
|
|
|
cache: true,
|
|
|
|
fn: function () {
|
|
|
|
if (!this.stream) return '';
|
|
|
|
return URL.createObjectURL(this.stream);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2013-09-11 23:59:50 -04:00
|
|
|
setActiveContact: function (jid) {
|
|
|
|
var prev = this.getContact(this._activeContact);
|
|
|
|
if (prev) {
|
|
|
|
prev.activeContact = false;
|
|
|
|
}
|
|
|
|
var curr = this.getContact(jid);
|
|
|
|
if (curr) {
|
|
|
|
curr.activeContact = true;
|
|
|
|
curr.unreadCount = 0;
|
|
|
|
}
|
|
|
|
this._activeContact = jid;
|
|
|
|
},
|
2013-09-18 19:24:40 -04:00
|
|
|
setAvatar: function (id, type) {
|
|
|
|
var self = this;
|
2013-09-19 19:57:37 -04:00
|
|
|
fetchAvatar('', id, type, function (avatar) {
|
|
|
|
self.avatarID = avatar.id;
|
|
|
|
self.avatar = avatar.uri;
|
2013-09-18 19:24:40 -04:00
|
|
|
});
|
|
|
|
},
|
2013-08-20 13:45:06 -04:00
|
|
|
getContact: function (jid, alt) {
|
2013-09-11 23:59:50 -04:00
|
|
|
if (typeof jid === 'string') jid = new client.JID(jid);
|
|
|
|
if (typeof alt === 'string') alt = new client.JID(alt);
|
|
|
|
|
2013-08-20 13:45:06 -04:00
|
|
|
if (this.isMe(jid)) {
|
|
|
|
jid = alt || jid;
|
|
|
|
}
|
2013-10-15 22:16:09 -04:00
|
|
|
return this.contacts.get(jid.bare) ||
|
|
|
|
this.mucs.get(jid.bare) ||
|
|
|
|
this.calls.findWhere('jid', jid);
|
2013-08-20 13:45:06 -04:00
|
|
|
},
|
2013-08-29 23:38:28 -04:00
|
|
|
setContact: function (data, create) {
|
|
|
|
var contact = this.getContact(data.jid);
|
2013-09-10 03:57:01 -04:00
|
|
|
data.jid = data.jid.bare;
|
|
|
|
|
2013-08-29 23:38:28 -04:00
|
|
|
if (contact) {
|
|
|
|
contact.set(data);
|
|
|
|
contact.save();
|
|
|
|
} else if (create) {
|
|
|
|
contact = new Contact(data);
|
2013-09-11 17:58:39 -04:00
|
|
|
contact.inRoster = true;
|
|
|
|
contact.owner = this.jid.bare;
|
2013-08-29 23:38:28 -04:00
|
|
|
contact.save();
|
|
|
|
this.contacts.add(contact);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
removeContact: function (jid) {
|
2013-10-16 13:48:40 -04:00
|
|
|
var contact = this.getContact(jid);
|
|
|
|
this.contacts.remove(contact.jid);
|
|
|
|
app.storage.roster.remove(contact.storageId);
|
2013-08-29 23:38:28 -04:00
|
|
|
},
|
2013-10-15 17:48:39 -04:00
|
|
|
load: function () {
|
2013-09-11 17:58:39 -04:00
|
|
|
if (!this.jid.bare) return;
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
2013-10-15 17:48:39 -04:00
|
|
|
app.storage.profiles.get(this.jid.bare, function (err, profile) {
|
|
|
|
if (!err) {
|
|
|
|
self.status = profile.status;
|
|
|
|
self.avatarID = profile.avatarID;
|
|
|
|
}
|
|
|
|
self.save();
|
|
|
|
app.storage.roster.getAll(self.jid.bare, function (err, contacts) {
|
|
|
|
if (err) return;
|
|
|
|
|
|
|
|
contacts.forEach(function (contact) {
|
|
|
|
contact = new Contact(contact);
|
|
|
|
contact.owner = self.jid.bare;
|
|
|
|
contact.inRoster = true;
|
|
|
|
contact.save();
|
|
|
|
self.contacts.add(contact);
|
|
|
|
});
|
2013-10-14 19:45:31 -04:00
|
|
|
|
2013-10-15 17:48:39 -04:00
|
|
|
self.contacts.trigger('loaded');
|
|
|
|
});
|
2013-09-11 17:58:39 -04:00
|
|
|
});
|
|
|
|
},
|
2013-08-20 13:45:06 -04:00
|
|
|
isMe: function (jid) {
|
2013-09-10 03:57:01 -04:00
|
|
|
return jid.bare === this.jid.bare;
|
2013-09-26 23:19:46 -04:00
|
|
|
},
|
|
|
|
updateIdlePresence: function () {
|
|
|
|
var update = {
|
|
|
|
status: this.status,
|
|
|
|
show: this.show,
|
|
|
|
caps: app.api.disco.caps
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!app.state.active) {
|
|
|
|
update.idle = {since: app.state.idleSince};
|
|
|
|
}
|
|
|
|
|
|
|
|
app.api.sendPresence(update);
|
2013-09-27 12:47:54 -04:00
|
|
|
},
|
|
|
|
updateUnreadCount: function () {
|
|
|
|
var unreadCounts = this.contacts.pluck('unreadCount');
|
|
|
|
var count = unreadCounts.reduce(function (a, b) { return a + b; });
|
|
|
|
if (count === 0) {
|
|
|
|
count = '';
|
|
|
|
}
|
|
|
|
app.state.badge = '' + count;
|
2013-10-15 19:21:22 -04:00
|
|
|
},
|
|
|
|
updateActiveCalls: function () {
|
|
|
|
app.state.hasActiveCall = !!this.calls.length;
|
2013-10-15 19:22:53 -04:00
|
|
|
},
|
2013-10-15 17:48:39 -04:00
|
|
|
save: function () {
|
|
|
|
var data = {
|
|
|
|
jid: this.jid.bare,
|
|
|
|
avatarID: this.avatarID,
|
|
|
|
status: this.status,
|
|
|
|
rosterVer: this.rosterVer
|
|
|
|
};
|
|
|
|
app.storage.profiles.set(data);
|
2013-10-16 13:48:00 -04:00
|
|
|
},
|
|
|
|
cameraOn: function () {
|
2013-10-16 13:49:49 -04:00
|
|
|
var self = this;
|
2013-10-16 13:48:00 -04:00
|
|
|
getUserMedia(function (err, stream) {
|
|
|
|
if (err) {
|
|
|
|
console.error(err);
|
|
|
|
} else {
|
2013-10-16 13:49:49 -04:00
|
|
|
self.stream = stream;
|
2013-10-16 13:48:00 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
cameraOff: function () {
|
|
|
|
if (this.stream) {
|
|
|
|
this.stream.stop();
|
|
|
|
this.stream = null;
|
|
|
|
}
|
2013-06-03 18:51:30 -04:00
|
|
|
}
|
|
|
|
});
|