summaryrefslogtreecommitdiffstats
path: root/reader/src/network/opds/OPDSLink_GenericFeedReader.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-07 23:30:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-07 23:30:05 +0900
commit17b259df9cb6b28779d4881b2b6c805ee2e48eea (patch)
tree5ed61937459cb7081089111b0242c01ec178f1f3 /reader/src/network/opds/OPDSLink_GenericFeedReader.cpp
parent1cba8bce178eb2d6719c6f7f21e2c9352c5513a6 (diff)
downloadtde-ebook-reader-17b259df9cb6b28779d4881b2b6c805ee2e48eea.tar.gz
tde-ebook-reader-17b259df9cb6b28779d4881b2b6c805ee2e48eea.zip
Rename to tde-ebook-reader
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'reader/src/network/opds/OPDSLink_GenericFeedReader.cpp')
-rw-r--r--reader/src/network/opds/OPDSLink_GenericFeedReader.cpp134
1 files changed, 134 insertions, 0 deletions
diff --git a/reader/src/network/opds/OPDSLink_GenericFeedReader.cpp b/reader/src/network/opds/OPDSLink_GenericFeedReader.cpp
new file mode 100644
index 0000000..5389f2d
--- /dev/null
+++ b/reader/src/network/opds/OPDSLink_GenericFeedReader.cpp
@@ -0,0 +1,134 @@
+/*
+ * Copyright (C) 2008-2012 Geometer Plus <contact@geometerplus.com>
+ *
+ * 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 <ZLNetworkUtil.h>
+#include <ZLStringUtil.h>
+#include <ZLMimeType.h>
+#include <ZLNetworkRequest.h>
+#include <ZLNetworkManager.h>
+
+#include "../authentication/litres/LitResAuthenticationManager.h"
+
+#include "OPDSLink_GenericFeedReader.h"
+#include "OpenSearchXMLReader.h"
+
+OPDSLink::GenericFeedReader::GenericFeedReader(
+ std::vector<shared_ptr<NetworkLink> >& links
+) :
+ myLinks(links) {
+}
+
+void OPDSLink::GenericFeedReader::processFeedStart() {
+}
+
+void OPDSLink::GenericFeedReader::processFeedMetadata(shared_ptr<OPDSFeedMetadata>) {
+
+}
+
+
+void OPDSLink::GenericFeedReader::processFeedEnd() {
+}
+
+void OPDSLink::GenericFeedReader::processFeedEntry(shared_ptr<OPDSEntry> entry) {
+ std::map<std::string,std::string> links;
+ std::string iconURL;
+ for (std::size_t i = 0; i < entry->links().size(); ++i) {
+ ATOMLink &link = *(entry->links()[i]);
+ const std::string &href = link.href();
+ const std::string &rel = link.rel();
+ shared_ptr<ZLMimeType> type = ZLMimeType::get(link.type());
+ if (rel == NetworkLink::URL_SEARCH) {
+ links[rel] = OpenSearchXMLReader::convertOpenSearchURL(href);
+ } else if (rel == "") {
+ links[NetworkLink::URL_MAIN] = href;
+ } else if (rel == OPDSConstants::REL_LINK_SIGN_IN) {
+ links[NetworkLink::URL_SIGN_IN] = href;
+ } else if (rel == OPDSConstants::REL_LINK_SIGN_OUT) {
+ links[NetworkLink::URL_SIGN_OUT] = href;
+ } else if (rel == OPDSConstants::REL_LINK_SIGN_UP) {
+ links[NetworkLink::URL_SIGN_UP] = href;
+ } else if (rel == OPDSConstants::REL_LINK_TOPUP) {
+ links[NetworkLink::URL_TOPUP] = href;
+ } else if (rel == OPDSConstants::REL_LINK_RECOVER_PASSWORD) {
+ links[NetworkLink::URL_RECOVER_PASSWORD] = href;
+ } else if (rel == OPDSConstants::REL_THUMBNAIL || rel == OPDSConstants::REL_IMAGE_THUMBNAIL) {
+ if (ZLMimeType::isImage(type)) {
+ iconURL = href;
+ }
+ } else if (iconURL.empty() && (rel == OPDSConstants::REL_COVER || ZLStringUtil::stringStartsWith(rel, OPDSConstants::REL_IMAGE_PREFIX))) {
+ if (ZLMimeType::isImage(type)) {
+ iconURL = href;
+ }
+ } else {
+ links[rel] = href;
+ }
+ }
+ if (entry->title().empty() || links[NetworkLink::URL_MAIN].empty()) {
+ return;
+ }
+ if (entry->id() == 0) {
+ return;
+ }
+ std::string id = entry->id()->uri();
+ std::string summary = entry->summary();
+ std::string language = entry->dcLanguage();
+
+ shared_ptr<NetworkLink> link = new OPDSLink(id.substr(25)); //why just 25 symbols?
+ link->setTitle(entry->title());
+ link->setSummary(summary);
+ link->setLanguage(language);
+ link->setIcon(iconURL);
+ link->setLinks(links);
+ link->setPredefinedId(id);
+ link->setUpdated(entry->updated());
+
+ OPDSLink &opdsLink = static_cast<OPDSLink&>(*link);
+ opdsLink.setUrlRewritingRules(myUrlRewritingRules);
+ if (!myAdvancedSearch.isNull()) {
+ opdsLink.setAdvancedSearch(myAdvancedSearch);
+ }
+ opdsLink.setRelationAliases(myRelationAliases);
+ if (myAuthenticationType == "litres") {
+ opdsLink.setAuthenticationManager(new LitResAuthenticationManager(*link));
+ }
+ myLinks.push_back(link);
+}
+
+void OPDSLink::GenericFeedReader::clear() {
+ myAuthenticationType.clear();
+ myUrlRewritingRules.clear();
+ myAdvancedSearch.reset();
+ myRelationAliases.clear();
+}
+
+void OPDSLink::GenericFeedReader::setAdvancedSearch(shared_ptr<OPDSLink::AdvancedSearch> advancedSearch) {
+ myAdvancedSearch = advancedSearch;
+}
+
+void OPDSLink::GenericFeedReader::setAuthenticationType(std::string type) {
+ myAuthenticationType = type;
+}
+
+void OPDSLink::GenericFeedReader::addUrlRewritingRule(shared_ptr<URLRewritingRule> rewritingRule) {
+ myUrlRewritingRules.push_back(rewritingRule);
+}
+
+void OPDSLink::GenericFeedReader::addRelationAlias(const OPDSLink::RelationAlias& alias, std::string name) {
+ myRelationAliases[alias] = name;
+}