mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 13:04:23 +00:00
RSS episode filter refactoring and logging (prep for later commits).
--HG-- branch : magao-dev
This commit is contained in:
parent
043ae1eb17
commit
2244b7cb66
@ -50,26 +50,45 @@ DownloadRule::DownloadRule()
|
|||||||
|
|
||||||
bool DownloadRule::matches(const QString &articleTitle) const
|
bool DownloadRule::matches(const QString &articleTitle) const
|
||||||
{
|
{
|
||||||
foreach (const QString &token, m_mustContain) {
|
if (!m_mustContain.empty()) {
|
||||||
if (!token.isEmpty()) {
|
bool logged = false;
|
||||||
QRegExp reg(token, Qt::CaseInsensitive, m_useRegex ? QRegExp::RegExp : QRegExp::Wildcard);
|
|
||||||
if (reg.indexIn(articleTitle) < 0)
|
foreach (const QString &token, m_mustContain) {
|
||||||
return false;
|
if (!token.isEmpty()) {
|
||||||
|
if (!logged) {
|
||||||
|
qDebug() << "Checking matching expressions:" << m_mustContain.join("|");
|
||||||
|
logged = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
QRegExp reg(token, Qt::CaseInsensitive, m_useRegex ? QRegExp::RegExp : QRegExp::Wildcard);
|
||||||
|
if (reg.indexIn(articleTitle) < 0)
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
qDebug("Checking not matching tokens");
|
|
||||||
// Checking not matching
|
if (!m_mustNotContain.empty()) {
|
||||||
foreach (const QString &token, m_mustNotContain) {
|
bool logged = false;
|
||||||
if (!token.isEmpty()) {
|
|
||||||
QRegExp reg(token, Qt::CaseInsensitive, m_useRegex ? QRegExp::RegExp : QRegExp::Wildcard);
|
foreach (const QString &token, m_mustNotContain) {
|
||||||
if (reg.indexIn(articleTitle) > -1)
|
if (!token.isEmpty()) {
|
||||||
return false;
|
if (!logged) {
|
||||||
|
qDebug() << "Checking not matching expressions:" << m_mustNotContain.join("|");
|
||||||
|
logged = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
QRegExp reg(token, Qt::CaseInsensitive, m_useRegex ? QRegExp::RegExp : QRegExp::Wildcard);
|
||||||
|
if (reg.indexIn(articleTitle) > -1)
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!m_episodeFilter.isEmpty()) {
|
if (!m_episodeFilter.isEmpty()) {
|
||||||
qDebug("Checking episode filter");
|
qDebug() << "Checking episode filter:" << m_episodeFilter;
|
||||||
QRegExp f("(^\\d{1,4})x(.*;$)");
|
QRegExp f("(^\\d{1,4})x(.*;$)");
|
||||||
int pos = f.indexIn(m_episodeFilter);
|
int pos = f.indexIn(m_episodeFilter);
|
||||||
|
|
||||||
if (pos < 0)
|
if (pos < 0)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
@ -93,8 +112,11 @@ bool DownloadRule::matches(const QString &articleTitle) const
|
|||||||
pos = reg.indexIn(articleTitle);
|
pos = reg.indexIn(articleTitle);
|
||||||
if (pos != -1) {
|
if (pos != -1) {
|
||||||
int epTheirs = reg.cap(1).toInt();
|
int epTheirs = reg.cap(1).toInt();
|
||||||
if (epTheirs >= epOurs)
|
if (epTheirs >= epOurs) {
|
||||||
|
qDebug() << "Matched episode:" << ep;
|
||||||
|
qDebug() << "Matched article:" << articleTitle;
|
||||||
return true;
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else { // Normal range
|
else { // Normal range
|
||||||
@ -110,19 +132,28 @@ bool DownloadRule::matches(const QString &articleTitle) const
|
|||||||
pos = reg.indexIn(articleTitle);
|
pos = reg.indexIn(articleTitle);
|
||||||
if (pos != -1) {
|
if (pos != -1) {
|
||||||
int epTheirs = reg.cap(1).toInt();
|
int epTheirs = reg.cap(1).toInt();
|
||||||
if ((epOursFirst <= epTheirs) && (epOursLast >= epTheirs))
|
if ((epOursFirst <= epTheirs) && (epOursLast >= epTheirs)) {
|
||||||
|
qDebug() << "Matched episode:" << ep;
|
||||||
|
qDebug() << "Matched article:" << articleTitle;
|
||||||
return true;
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else { // Single number
|
else { // Single number
|
||||||
QRegExp reg(expStr + ep + "\\D", Qt::CaseInsensitive);
|
QRegExp reg(expStr + ep + "\\D", Qt::CaseInsensitive);
|
||||||
if (reg.indexIn(articleTitle) != -1)
|
if (reg.indexIn(articleTitle) != -1) {
|
||||||
|
qDebug() << "Matched episode:" << ep;
|
||||||
|
qDebug() << "Matched article:" << articleTitle;
|
||||||
return true;
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
qDebug() << "Matched article:" << articleTitle;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -302,6 +333,7 @@ QStringList DownloadRule::findMatchingArticles(const FeedPtr &feed) const
|
|||||||
ArticleHash::ConstIterator artItend = feedArticles.end();
|
ArticleHash::ConstIterator artItend = feedArticles.end();
|
||||||
for (; artIt != artItend; ++artIt) {
|
for (; artIt != artItend; ++artIt) {
|
||||||
const QString title = artIt.value()->title();
|
const QString title = artIt.value()->title();
|
||||||
|
qDebug() << "Matching article:" << title;
|
||||||
if (matches(title))
|
if (matches(title))
|
||||||
ret << title;
|
ret << title;
|
||||||
}
|
}
|
||||||
|
@ -46,6 +46,7 @@ DownloadRuleList::DownloadRuleList()
|
|||||||
DownloadRulePtr DownloadRuleList::findMatchingRule(const QString &feedUrl, const QString &articleTitle) const
|
DownloadRulePtr DownloadRuleList::findMatchingRule(const QString &feedUrl, const QString &articleTitle) const
|
||||||
{
|
{
|
||||||
Q_ASSERT(Preferences::instance()->isRssDownloadingEnabled());
|
Q_ASSERT(Preferences::instance()->isRssDownloadingEnabled());
|
||||||
|
qDebug() << "Matching article:" << articleTitle;
|
||||||
QStringList ruleNames = m_feedRules.value(feedUrl);
|
QStringList ruleNames = m_feedRules.value(feedUrl);
|
||||||
foreach (const QString &rule_name, ruleNames) {
|
foreach (const QString &rule_name, ruleNames) {
|
||||||
DownloadRulePtr rule = m_rules[rule_name];
|
DownloadRulePtr rule = m_rules[rule_name];
|
||||||
|
@ -71,10 +71,9 @@ AutomatedRssDownloader::AutomatedRssDownloader(const QWeakPointer<Rss::Manager>
|
|||||||
Q_ASSERT(ok);
|
Q_ASSERT(ok);
|
||||||
m_ruleList = manager.toStrongRef()->downloadRules();
|
m_ruleList = manager.toStrongRef()->downloadRules();
|
||||||
m_editableRuleList = new Rss::DownloadRuleList; // Read rule list from disk
|
m_editableRuleList = new Rss::DownloadRuleList; // Read rule list from disk
|
||||||
m_episodeValidator = new QRegExpValidator(
|
m_episodeRegex = new QRegExp("^(^[1-9]{1,1}\\d{0,3}x([1-9]{1,1}\\d{0,3}(-([1-9]{1,1}\\d{0,3})?)?;){1,}){1,1}",
|
||||||
QRegExp("^(^[1-9]{1,1}\\d{0,3}x([1-9]{1,1}\\d{0,3}(-([1-9]{1,1}\\d{0,3})?)?;){1,}){1,1}",
|
Qt::CaseInsensitive);
|
||||||
Qt::CaseInsensitive),
|
m_episodeValidator = new QRegExpValidator(*m_episodeRegex, ui->lineEFilter);
|
||||||
ui->lineEFilter);
|
|
||||||
ui->lineEFilter->setValidator(m_episodeValidator);
|
ui->lineEFilter->setValidator(m_episodeValidator);
|
||||||
QString tip = "<p>" + tr("Matches articles based on episode filter.") + "</p><p><b>" + tr("Example: ")
|
QString tip = "<p>" + tr("Matches articles based on episode filter.") + "</p><p><b>" + tr("Example: ")
|
||||||
+ "1x2;8-15;5;30-;</b>" + tr(" will match 2, 5, 8 through 15, 30 and onward episodes of season one", "example X will match") + "</p>";
|
+ "1x2;8-15;5;30-;</b>" + tr(" will match 2, 5, 8 through 15, 30 and onward episodes of season one", "example X will match") + "</p>";
|
||||||
@ -134,6 +133,7 @@ AutomatedRssDownloader::~AutomatedRssDownloader()
|
|||||||
delete ui;
|
delete ui;
|
||||||
delete m_editableRuleList;
|
delete m_editableRuleList;
|
||||||
delete m_episodeValidator;
|
delete m_episodeValidator;
|
||||||
|
delete m_episodeRegex;
|
||||||
}
|
}
|
||||||
|
|
||||||
void AutomatedRssDownloader::loadSettings()
|
void AutomatedRssDownloader::loadSettings()
|
||||||
|
@ -99,6 +99,7 @@ private:
|
|||||||
QListWidgetItem *m_editedRule;
|
QListWidgetItem *m_editedRule;
|
||||||
Rss::DownloadRuleList *m_ruleList;
|
Rss::DownloadRuleList *m_ruleList;
|
||||||
Rss::DownloadRuleList *m_editableRuleList;
|
Rss::DownloadRuleList *m_editableRuleList;
|
||||||
|
QRegExp *m_episodeRegex;
|
||||||
QRegExpValidator *m_episodeValidator;
|
QRegExpValidator *m_episodeValidator;
|
||||||
QShortcut *editHotkey;
|
QShortcut *editHotkey;
|
||||||
QShortcut *deleteHotkey;
|
QShortcut *deleteHotkey;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user