2019-04-17 20:08:56 +00:00
|
|
|
/*
|
2019-08-14 14:54:46 +00:00
|
|
|
* Squawk messenger.
|
2019-04-17 20:08:56 +00:00
|
|
|
* Copyright (C) 2019 Yury Gubich <blue@macaw.me>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "contact.h"
|
2019-05-15 17:36:37 +00:00
|
|
|
#include <QDebug>
|
2019-04-17 20:08:56 +00:00
|
|
|
|
|
|
|
Core::Contact::Contact(const QString& pJid, const QString& account, QObject* parent):
|
2019-08-14 14:54:46 +00:00
|
|
|
RosterItem(pJid, account, parent),
|
2019-08-21 09:35:07 +00:00
|
|
|
groups(),
|
2022-08-25 22:49:49 +00:00
|
|
|
subscriptionState(Shared::SubscriptionState::unknown),
|
|
|
|
pep(Shared::Support::unknown)
|
2023-11-10 22:26:16 +00:00
|
|
|
|
|
|
|
#ifdef WITH_OMEMO
|
|
|
|
,omemoBundles(Shared::Possible::unknown)
|
|
|
|
#endif
|
2023-03-16 19:38:05 +00:00
|
|
|
{}
|
2019-04-17 20:08:56 +00:00
|
|
|
|
2023-03-16 19:38:05 +00:00
|
|
|
Core::Contact::~Contact() {}
|
2019-04-17 20:08:56 +00:00
|
|
|
|
2023-03-16 19:38:05 +00:00
|
|
|
QSet<QString> Core::Contact::getGroups() const {
|
2019-04-17 20:08:56 +00:00
|
|
|
return groups;
|
|
|
|
}
|
|
|
|
|
2023-03-16 19:38:05 +00:00
|
|
|
unsigned int Core::Contact::groupsCount() const {
|
2019-08-14 14:54:46 +00:00
|
|
|
return groups.size();
|
2019-04-19 09:12:12 +00:00
|
|
|
}
|
|
|
|
|
2023-03-16 19:38:05 +00:00
|
|
|
void Core::Contact::setGroups(const QSet<QString>& set) {
|
2019-04-19 09:12:12 +00:00
|
|
|
QSet<QString> toRemove = groups - set;
|
|
|
|
QSet<QString> toAdd = set - groups;
|
|
|
|
|
|
|
|
groups = set;
|
|
|
|
|
2023-03-16 19:38:05 +00:00
|
|
|
for (const QString& group : toRemove)
|
|
|
|
emit groupRemoved(group);
|
2019-04-19 09:12:12 +00:00
|
|
|
|
2023-03-16 19:38:05 +00:00
|
|
|
for (const QString& group : toAdd)
|
|
|
|
emit groupAdded(group);
|
2019-04-19 09:12:12 +00:00
|
|
|
}
|
2019-08-21 09:35:07 +00:00
|
|
|
|
2023-03-16 19:38:05 +00:00
|
|
|
Shared::SubscriptionState Core::Contact::getSubscriptionState() const {
|
2019-08-21 09:35:07 +00:00
|
|
|
return subscriptionState;
|
|
|
|
}
|
|
|
|
|
2023-03-16 19:38:05 +00:00
|
|
|
void Core::Contact::setSubscriptionState(Shared::SubscriptionState state) {
|
2019-08-21 09:35:07 +00:00
|
|
|
if (subscriptionState != state) {
|
|
|
|
subscriptionState = state;
|
|
|
|
emit subscriptionStateChanged(subscriptionState);
|
|
|
|
}
|
|
|
|
}
|
2019-12-30 20:22:04 +00:00
|
|
|
|
2023-03-16 19:38:05 +00:00
|
|
|
void Core::Contact::handlePresence(const QXmppPresence& pres) {
|
2019-12-30 20:22:04 +00:00
|
|
|
switch (pres.vCardUpdateType()) {
|
|
|
|
case QXmppPresence::VCardUpdateNone: //this presence has nothing to do with photo
|
|
|
|
break;
|
|
|
|
case QXmppPresence::VCardUpdateNotReady: //let's say the photo didn't change here
|
|
|
|
break;
|
|
|
|
case QXmppPresence::VCardUpdateNoPhoto: { //there is no photo, need to drop if any
|
|
|
|
Archive::AvatarInfo info;
|
|
|
|
bool hasAvatar = readAvatarInfo(info);
|
2024-01-31 23:22:49 +00:00
|
|
|
if (!hasAvatar || !info.autogenerated)
|
2019-12-30 20:22:04 +00:00
|
|
|
setAutoGeneratedAvatar();
|
2024-01-31 23:22:49 +00:00
|
|
|
|
2019-12-30 20:22:04 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case QXmppPresence::VCardUpdateValidPhoto:{ //there is a photo, need to load
|
|
|
|
Archive::AvatarInfo info;
|
|
|
|
bool hasAvatar = readAvatarInfo(info);
|
|
|
|
if (hasAvatar) {
|
2024-01-31 23:22:49 +00:00
|
|
|
if (info.autogenerated || info.hash != pres.photoHash())
|
2019-12-30 20:22:04 +00:00
|
|
|
emit requestVCard(jid);
|
|
|
|
} else {
|
|
|
|
emit requestVCard(jid);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-08-25 22:49:49 +00:00
|
|
|
|
|
|
|
void Core::Contact::setPepSupport(Shared::Support support) {
|
2023-03-16 19:38:05 +00:00
|
|
|
if (pep != support)
|
2022-08-25 22:49:49 +00:00
|
|
|
pep = support;
|
|
|
|
}
|
|
|
|
|
|
|
|
Shared::Support Core::Contact::getPepSupport() const {
|
2023-03-16 19:38:05 +00:00
|
|
|
return pep;
|
|
|
|
}
|
|
|
|
|
|
|
|
QMap<QString, QVariant> Core::Contact::getInfo() const {
|
|
|
|
QMap<QString, QVariant> data = RosterItem::getInfo();
|
|
|
|
|
|
|
|
data.insert("state", QVariant::fromValue(subscriptionState));
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2022-08-25 22:49:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
|