From 17b259df9cb6b28779d4881b2b6c805ee2e48eea Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 7 Jun 2024 23:30:05 +0900 Subject: Rename to tde-ebook-reader Signed-off-by: Michele Calgaro --- reader/src/network/NetworkLink.cpp | 146 +++++++++++++++++++++++++++++++++++++ 1 file changed, 146 insertions(+) create mode 100644 reader/src/network/NetworkLink.cpp (limited to 'reader/src/network/NetworkLink.cpp') diff --git a/reader/src/network/NetworkLink.cpp b/reader/src/network/NetworkLink.cpp new file mode 100644 index 0000000..218de23 --- /dev/null +++ b/reader/src/network/NetworkLink.cpp @@ -0,0 +1,146 @@ +/* + * Copyright (C) 2008-2012 Geometer Plus + * + * 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 2 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301, USA. + */ + +#include + +#include +#include +#include + +#include "NetworkLink.h" +#include "NetworkOperationData.h" + +const std::string NetworkLink::URL_MAIN = "main"; +const std::string NetworkLink::URL_SEARCH = "search"; +const std::string NetworkLink::URL_SIGN_IN = "signIn"; +const std::string NetworkLink::URL_SIGN_OUT = "signOut"; +const std::string NetworkLink::URL_SIGN_UP = "signUp"; +const std::string NetworkLink::URL_TOPUP = "topup"; +const std::string NetworkLink::URL_RECOVER_PASSWORD = "recoverPassword"; + +NetworkLink::NetworkLink( + const std::string &siteName +) : + mySiteName(ZLStringUtil::stringStartsWith(siteName, "www.") ? siteName.substr(std::string("www.").length()) : siteName), + myEnabled(true), + myUpdated(0) { +} + +NetworkLink::~NetworkLink() { +} + +std::string NetworkLink::url(const std::string &urlId) const { + std::map::const_iterator it = myLinks.find(urlId); + return (it != myLinks.end()) ? it->second : std::string(); +} + +shared_ptr NetworkLink::resume(NetworkOperationData &result) const { + result.clear(); + return 0; +} + +void NetworkLink::setTitle(const std::string& title) { + myTitle = title; +} +void NetworkLink::setSummary(const std::string& summary) { + mySummary = summary; +} + +void NetworkLink::setLanguage(const std::string &language) { + myLanguage = language; +} + +void NetworkLink::setIcon(const std::string& icon) { + myIcon = icon; +} + +void NetworkLink::setPredefinedId(const std::string& id) { + myPredefinedId = id; +} + +void NetworkLink::setLinks(const std::map& links) { + myLinks = links; +} + +void NetworkLink::setUpdated(shared_ptr u) { + myUpdated = u; +} + +std::string NetworkLink::getSiteName() const { + return mySiteName; +} + +void NetworkLink::setEnabled(bool enabled) { + myEnabled = enabled; +} + +std::string NetworkLink::getTitle() const { + return myTitle; +} +std::string NetworkLink::getSummary() const { + return mySummary; +} + +std::string NetworkLink::getLanguage() const { + return myLanguage; +} + +std::string NetworkLink::getPredefinedId() const { + return myPredefinedId; +} + +const std::map& NetworkLink::getLinks() const { + return myLinks; +} + +shared_ptr NetworkLink::getUpdated() const { + return myUpdated; +} + +bool NetworkLink::isPredefined() const { + return !myPredefinedId.empty(); +} + +std::string NetworkLink::getIcon() const { + return myIcon; +} +bool NetworkLink::isEnabled() const { + return myEnabled; +} + +void NetworkLink::loadFrom(const NetworkLink & link) { + myTitle = link.myTitle; + myIcon = link.myIcon; + mySummary = link.mySummary; + myLanguage = link.myLanguage; + myLinks = link.myLinks; + myPredefinedId = link.myPredefinedId; + myUpdated = link.myUpdated; +} + +void NetworkLink::loadLinksFrom(const NetworkLink & link) { + myIcon = link.myIcon; + myLinks = link.myLinks; + myUpdated = link.myUpdated; +} + +void NetworkLink::loadSummaryFrom(const NetworkLink & link) { + myTitle = link.myTitle; + mySummary = link.mySummary; +} -- cgit v1.2.3