blob: 1c2739571bb112bb5c3a77e0988c0849487c99a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/*
* Copyright (c) 2010 Kevin Smith
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#include "Swiften/Roster/ContactRosterItem.h"
#include "Swiften/Roster/GroupRosterItem.h"
namespace Swift {
ContactRosterItem::ContactRosterItem(const JID& jid, const JID& displayJID, const String& name, GroupRosterItem* parent) : RosterItem(name, parent), jid_(jid), displayJID_(displayJID) {
}
ContactRosterItem::~ContactRosterItem() {
}
StatusShow::Type ContactRosterItem::getStatusShow() const {
return shownPresence_ ? shownPresence_->getShow() : StatusShow::None;
}
StatusShow::Type ContactRosterItem::getSimplifiedStatusShow() const {
switch (shownPresence_ ? shownPresence_->getShow() : StatusShow::None) {
case StatusShow::Online: return StatusShow::Online; break;
case StatusShow::Away: return StatusShow::Away; break;
case StatusShow::XA: return StatusShow::Away; break;
case StatusShow::FFC: return StatusShow::Online; break;
case StatusShow::DND: return StatusShow::DND; break;
case StatusShow::None: return StatusShow::None; break;
}
assert(false);
return StatusShow::None;
}
String ContactRosterItem::getStatusText() const {
return shownPresence_ ? shownPresence_->getStatus() : "";
}
void ContactRosterItem::setAvatarPath(const String& path) {
avatarPath_ = path;
onDataChanged();
}
const String& ContactRosterItem::getAvatarPath() const {
return avatarPath_;
}
const JID& ContactRosterItem::getJID() const {
return jid_;
}
void ContactRosterItem::setDisplayJID(const JID& jid) {
displayJID_ = jid;
}
const JID& ContactRosterItem::getDisplayJID() const {
return displayJID_;
}
typedef std::pair<String, boost::shared_ptr<Presence> > StringPresencePair;
void ContactRosterItem::calculateShownPresence() {
shownPresence_ = offlinePresence_;
foreach (StringPresencePair presencePair, presences_) {
boost::shared_ptr<Presence> presence = presencePair.second;
if (!shownPresence_ || presence->getPriority() > shownPresence_->getPriority() || presence->getShow() < shownPresence_->getShow()) {
shownPresence_ = presence;
}
}
}
void ContactRosterItem::clearPresence() {
presences_.clear();
calculateShownPresence();
}
void ContactRosterItem::applyPresence(const String& resource, boost::shared_ptr<Presence> presence) {
if (offlinePresence_) {
offlinePresence_ = boost::shared_ptr<Presence>();
}
if (presence->getType() == Presence::Unavailable) {
if (presences_.find(resource) != presences_.end()) {
presences_.erase(resource);
}
if (presences_.size() > 0) {
offlinePresence_ = presence;
}
} else {
presences_[resource] = presence;
}
calculateShownPresence();
onDataChanged();
}
}
|