From 7a84518f2c7fb4c6d11cf25508b05f87453ddb69 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Blin?=
 <sebastien.blin@savoirfairelinux.com>
Date: Fri, 15 Sep 2023 13:29:52 -0400
Subject: [PATCH] misc: cleanup, remove cacheAvatars

Now there is only one client, this doesn't need to be configured

Change-Id: Iba1265fbdb8ab18bfb44fc7c2c70ebfe6000ee2c
GitLab: #1305
---
 src/app/mainapplication.cpp               |  1 -
 src/libclient/api/lrc.h                   |  5 -----
 src/libclient/authority/storagehelper.cpp | 10 ----------
 src/libclient/callmodel.cpp               |  3 +--
 src/libclient/contactmodel.cpp            | 21 +++++----------------
 src/libclient/lrc.cpp                     |  1 -
 6 files changed, 6 insertions(+), 35 deletions(-)

diff --git a/src/app/mainapplication.cpp b/src/app/mainapplication.cpp
index 7a858ca1a..2202c4561 100644
--- a/src/app/mainapplication.cpp
+++ b/src/app/mainapplication.cpp
@@ -231,7 +231,6 @@ MainApplication::initLrc(const QString& downloadUrl,
                          bool debugMode,
                          bool muteDaemon)
 {
-    lrc::api::Lrc::cacheAvatars.store(false);
     /*
      * Init mainwindow and finish splash when mainwindow shows up.
      */
diff --git a/src/libclient/api/lrc.h b/src/libclient/api/lrc.h
index 41149c9d6..1151c0bee 100644
--- a/src/libclient/api/lrc.h
+++ b/src/libclient/api/lrc.h
@@ -114,11 +114,6 @@ public:
      */
     static std::atomic_bool holdConferences;
 
-    /**
-     * If cache contact's avatar or reload
-     */
-    static std::atomic_bool cacheAvatars;
-
     /**
      * Make monitor continous or discrete
      */
diff --git a/src/libclient/authority/storagehelper.cpp b/src/libclient/authority/storagehelper.cpp
index d41baf2f8..8e505441e 100644
--- a/src/libclient/authority/storagehelper.cpp
+++ b/src/libclient/authority/storagehelper.cpp
@@ -440,16 +440,6 @@ buildContactFromProfile(const QString& accountId,
 
     const auto vCard = lrc::vCard::utils::toHashMap(file.readAll());
     const auto alias = vCard[vCard::Property::FORMATTED_NAME];
-    if (lrc::api::Lrc::cacheAvatars.load()) {
-        if (overridenAvatar.isEmpty()) {
-            for (const auto& key : vCard.keys()) {
-                if (key.contains("PHOTO"))
-                    profileInfo.avatar = vCard[key];
-            }
-        } else {
-            profileInfo.avatar = overridenAvatar;
-        }
-    }
     profileInfo.alias = overridenAlias.isEmpty() ? alias : overridenAlias;
     return {profileInfo, "", type == api::profile::Type::JAMI, false};
 }
diff --git a/src/libclient/callmodel.cpp b/src/libclient/callmodel.cpp
index 300366b42..27d6115ce 100644
--- a/src/libclient/callmodel.cpp
+++ b/src/libclient/callmodel.cpp
@@ -1583,8 +1583,7 @@ CallModelPimpl::slotincomingVCardChunk(const QString& accountId,
             contactInfo.profileInfo = profileInfo;
 
             linked.owner.contactModel->addContact(contactInfo);
-            if (!lrc::api::Lrc::cacheAvatars.load())
-                contactInfo.profileInfo.avatar.clear();
+            contactInfo.profileInfo.avatar.clear(); // Do not want avatar in memory here
             vcardsChunks.erase(from); // Transfer is finish, we don't want to reuse this entry.
         }
     } else {
diff --git a/src/libclient/contactmodel.cpp b/src/libclient/contactmodel.cpp
index 035fb07eb..22ae05e6a 100644
--- a/src/libclient/contactmodel.cpp
+++ b/src/libclient/contactmodel.cpp
@@ -386,8 +386,8 @@ ContactModel::updateContact(const QString& uri, const MapStringString& infos)
     if (ci != pimpl_->contacts.end()) {
         if (infos.contains("avatar")) {
             ci->profileInfo.avatar = storage::vcard::compressedAvatar(infos["avatar"]);
-        } else if (!lrc::api::Lrc::cacheAvatars.load()) {
-            // Else it will be reseted
+        } else {
+            // Else it will be resetted
             ci->profileInfo.avatar = storage::avatar(owner.id, uri);
         }
         if (infos.contains("title"))
@@ -743,16 +743,9 @@ ContactModelPimpl::fillWithJamiContacts()
 
         const auto vCard = lrc::vCard::utils::toHashMap(payload);
         const auto alias = vCard["FN"];
-        QByteArray photo;
-        for (const auto& key : vCard.keys()) {
-            if (key.contains("PHOTO") && lrc::api::Lrc::cacheAvatars.load())
-                photo = vCard[key];
-        }
         contactInfo.profileInfo.type = profile::Type::PENDING;
         if (!alias.isEmpty())
             contactInfo.profileInfo.alias = alias.constData();
-        if (!photo.isEmpty())
-            contactInfo.profileInfo.avatar = photo.constData();
         contactInfo.registeredName = "";
         contactInfo.isBanned = false;
 
@@ -937,9 +930,7 @@ ContactModelPimpl::addToContacts(const QString& contactUri,
         updateProfile = true;
         contactInfo.profileInfo.alias = profileInfo.alias;
     }
-    auto oldAvatar = lrc::api::Lrc::cacheAvatars.load()
-                         ? contactInfo.profileInfo.avatar
-                         : storage::avatar(linked.owner.id, contactUri);
+    auto oldAvatar = storage::avatar(linked.owner.id, contactUri);
     if (!profileInfo.avatar.isEmpty() && oldAvatar != profileInfo.avatar) {
         updateProfile = true;
         contactInfo.profileInfo.avatar = profileInfo.avatar;
@@ -949,8 +940,7 @@ ContactModelPimpl::addToContacts(const QString& contactUri,
 
     contactInfo.isBanned = banned;
     contactInfo.conversationId = conversationId;
-    if (!lrc::api::Lrc::cacheAvatars.load())
-        contactInfo.profileInfo.avatar.clear();
+    contactInfo.profileInfo.avatar.clear();
 
     if (type == profile::Type::JAMI) {
         ConfigurationManager::instance().lookupAddress(linked.owner.id, "", contactUri);
@@ -1229,8 +1219,7 @@ ContactModelPimpl::slotProfileReceived(const QString& accountId,
     contactInfo.profileInfo = profileInfo;
 
     linked.owner.contactModel->addContact(contactInfo);
-    if (!lrc::api::Lrc::cacheAvatars.load())
-        contactInfo.profileInfo.avatar.clear(); // Do not store after update
+    contactInfo.profileInfo.avatar.clear(); // Do not store after update
 }
 
 void
diff --git a/src/libclient/lrc.cpp b/src/libclient/lrc.cpp
index f63d9b977..c2fb60af0 100644
--- a/src/libclient/lrc.cpp
+++ b/src/libclient/lrc.cpp
@@ -45,7 +45,6 @@ namespace lrc {
 using namespace api;
 
 std::atomic_bool lrc::api::Lrc::holdConferences;
-std::atomic_bool lrc::api::Lrc::cacheAvatars {true};
 
 // To judge whether the call is finished or not depending on callState
 bool isFinished(const QString& callState);
-- 
GitLab