/* * Bittorrent Client using Qt4 and libtorrent. * Copyright (C) 2010 Christophe Dumez * * 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. * * In addition, as a special exception, the copyright holders give permission to * link this program with the OpenSSL project's "OpenSSL" library (or with * modified versions of it that use the same license as the "OpenSSL" library), * and distribute the linked executables. You must obey the GNU General Public * License in all respects for all of the code used other than "OpenSSL". If you * modify file(s), you may extend this exception to your version of the file(s), * but you are not obligated to do so. If you do not wish to do so, delete this * exception statement from your version. * * Contact : chris@qbittorrent.org */ #include #include #include "rssdownloadrule.h" #include "preferences.h" #include "qinisettings.h" #include "rssfeed.h" #include "rssarticle.h" RssDownloadRule::RssDownloadRule() { } bool RssDownloadRule::matches(const QString &article_title) const { foreach(const QString& token, m_mustContain) { if(token.isEmpty() || token == "") continue; QRegExp reg(token, Qt::CaseInsensitive, QRegExp::Wildcard); //reg.setMinimal(false); if(reg.indexIn(article_title) < 0) return false; } qDebug("Checking not matching tokens"); // Checking not matching foreach(const QString& token, m_mustNotContain) { if(token.isEmpty()) continue; QRegExp reg(token, Qt::CaseInsensitive, QRegExp::Wildcard); if(reg.indexIn(article_title) > -1) return false; } return true; } void RssDownloadRule::setMustContain(const QString &tokens) { m_mustContain = tokens.split(" "); } void RssDownloadRule::setMustNotContain(const QString &tokens) { m_mustNotContain = tokens.split(QRegExp("[\\s|]")); } RssDownloadRule RssDownloadRule::fromOldFormat(const QVariantHash &rule_hash, const QString &feed_url, const QString &rule_name) { qDebug() << Q_FUNC_INFO << feed_url << rule_name; RssDownloadRule rule; rule.setName(rule_name); rule.setMustContain(rule_hash.value("matches", "").toString()); rule.setMustNotContain(rule_hash.value("not", "").toString()); if(!feed_url.isEmpty()) rule.setRssFeeds(QStringList() << feed_url); rule.setSavePath(rule_hash.value("save_path", "").toString()); // Is enabled? QIniSettings qBTRSS("qBittorrent", "qBittorrent-rss"); const QHash feeds_w_downloader = qBTRSS.value("downloader_on").toHash(); rule.setEnabled(feeds_w_downloader.value(feed_url, true).toBool()); // label was unsupported < 2.5.0 return rule; } RssDownloadRule RssDownloadRule::fromNewFormat(const QVariantHash &rule_hash) { RssDownloadRule rule; rule.setName(rule_hash.value("name").toString()); rule.setMustContain(rule_hash.value("must_contain").toString()); rule.setMustNotContain(rule_hash.value("must_not_contain").toString()); rule.setRssFeeds(rule_hash.value("affected_feeds").toStringList()); rule.setEnabled(rule_hash.value("enabled", false).toBool()); rule.setSavePath(rule_hash.value("save_path").toString()); rule.setLabel(rule_hash.value("label_assigned").toString()); return rule; } QVariantHash RssDownloadRule::toVariantHash() const { QVariantHash hash; hash["name"] = m_name; hash["must_contain"] = m_mustContain.join(" "); hash["must_not_contain"] = m_mustNotContain.join(" "); hash["save_path"] = m_savePath; hash["affected_feeds"] = m_rssFeeds; hash["enabled"] = m_enabled; hash["label_assigned"] = m_label; return hash; } bool RssDownloadRule::operator==(const RssDownloadRule &other) { return m_name == other.name(); } void RssDownloadRule::setSavePath(const QString &save_path) { if(!save_path.isEmpty() && QDir(save_path) != QDir(Preferences().getSavePath())) m_savePath = save_path; else m_savePath = QString(); } QStringList RssDownloadRule::findMatchingArticles(const RssFeed *feed) const { QStringList ret; foreach(const RssArticle &art, feed->articleList()) { if(matches(art.title())) ret << art.title(); } return ret; }