/* * Copyright (c) 2010-2024 Belledonne Communications SARL. * * This file is part of linphone-desktop * (see https://www.linphone.org). * * 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 . */ #include "CarddavModel.hpp" #include "model/core/CoreModel.hpp" #include "model/setting/SettingsModel.hpp" #include "tool/Utils.hpp" DEFINE_ABSTRACT_OBJECT(CarddavModel) using namespace std; std::shared_ptr CarddavModel::create(const std::shared_ptr &carddavFriendList, QObject *parent) { auto model = std::make_shared(carddavFriendList, parent); model->setSelf(model); return model; } CarddavModel::CarddavModel(const std::shared_ptr &carddavFriendList, QObject *parent) : ::Listener(nullptr, parent) { mustBeInLinphoneThread(getClassName()); mCarddavFriendList = carddavFriendList; mStoreNewFriendsInIt = storeNewFriendsInIt(); mCreatedAuthInfo = nullptr; mRemovedAuthInfo = nullptr; } CarddavModel::~CarddavModel() { mustBeInLinphoneThread(log().arg(Q_FUNC_INFO)); } bool CarddavModel::storeNewFriendsInIt() { if (!mCarddavFriendList) return false; auto carddavListForNewFriends = SettingsModel::getCardDAVListForNewFriends(); return carddavListForNewFriends != nullptr && mCarddavFriendList->getDisplayName() == carddavListForNewFriends->getDisplayName(); } void CarddavModel::save( string displayName, string uri, string username, string password, string realm, bool storeNewFriendsInIt) { mustBeInLinphoneThread(log().arg(Q_FUNC_INFO)); auto core = CoreModel::getInstance()->getCore(); // Auth info handled in lazy mode, if provided handle otherwise ignore. // TODO: add dialog to ask user before removing existing auth info if existing already - (comment from Android) if (!username.empty() && !realm.empty()) { mRemovedAuthInfo = core->findAuthInfo(realm, username, ""); if (mRemovedAuthInfo != nullptr) { lWarning() << log().arg("Auth info with username ") << username << " already exists, removing it first."; core->removeAuthInfo(mRemovedAuthInfo); } lInfo() << log().arg("Adding auth info with username") << username; mCreatedAuthInfo = linphone::Factory::get()->createAuthInfo(username, "", password, "", realm, ""); core->addAuthInfo(mCreatedAuthInfo); } else { lInfo() << log().arg("No auth info provided upon saving."); } if (!mCarddavFriendList) { mCarddavFriendList = CoreModel::getInstance()->getCore()->createFriendList(); mCarddavFriendList->setType(linphone::FriendList::Type::CardDAV); mCarddavFriendList->enableDatabaseStorage(true); core->addFriendList(mCarddavFriendList); } mCarddavFriendList->setDisplayName(displayName); mCarddavFriendList->setUri(uri); mStoreNewFriendsInIt = storeNewFriendsInIt; setMonitor(mCarddavFriendList); mCarddavFriendList->synchronizeFriendsFromServer(); } void CarddavModel::remove() { mustBeInLinphoneThread(log().arg(Q_FUNC_INFO)); CoreModel::getInstance()->getCore()->removeFriendList(mCarddavFriendList); lInfo() << log().arg("Friend list removed:") << mCarddavFriendList->getUri(); emit removed(); } void CarddavModel::onSyncStatusChanged(const std::shared_ptr &friendList, linphone::FriendList::SyncStatus status, const std::string &message) { lInfo() << log().arg("carddav sync status changed :") << message; if (status == linphone::FriendList::SyncStatus::Successful) { lInfo() << log().arg("Successfully synchronized:") << mCarddavFriendList->getUri(); setMonitor(nullptr); SettingsModel::setCardDAVListForNewFriends(mStoreNewFriendsInIt ? friendList->getDisplayName() : ""); emit saved(true, Utils::coreStringToAppString(message)); } if (status == linphone::FriendList::SyncStatus::Failure) { lWarning() << log().arg("Synchronization failure:") << mCarddavFriendList->getUri(); setMonitor(nullptr); emit saved(false, Utils::coreStringToAppString(message)); } }