summaryrefslogtreecommitdiffstats
path: root/plugins/rssfeed/rssfilter.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 02:37:40 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 02:37:40 +0000
commit9ad5c7b5e23b4940e7a3ea3ca3a6fb77e6a8fab0 (patch)
treed088b5210e77d9fa91d954d8550e00e372b47378 /plugins/rssfeed/rssfilter.h
downloadktorrent-9ad5c7b5e23b4940e7a3ea3ca3a6fb77e6a8fab0.tar.gz
ktorrent-9ad5c7b5e23b4940e7a3ea3ca3a6fb77e6a8fab0.zip
Updated to final KDE3 ktorrent release (2.2.6)
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktorrent@1077377 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'plugins/rssfeed/rssfilter.h')
-rw-r--r--plugins/rssfeed/rssfilter.h151
1 files changed, 151 insertions, 0 deletions
diff --git a/plugins/rssfeed/rssfilter.h b/plugins/rssfeed/rssfilter.h
new file mode 100644
index 0000000..be31d18
--- /dev/null
+++ b/plugins/rssfeed/rssfilter.h
@@ -0,0 +1,151 @@
+/***************************************************************************
+ * Copyright (C) 2006 by Alan Jones *
+ * skyphyr@gmail.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. *
+ ***************************************************************************/
+#ifndef RSSFILTER_H
+#define RSSFILTER_H
+
+#include <qobject.h>
+#include <qstring.h>
+#include <qtimer.h>
+#include <qdatastream.h>
+#include <qregexp.h>
+
+#include "rssarticle.h"
+
+using namespace RSS;
+
+namespace kt
+{
+ /**
+ * @brief RssFilter Class
+ * @author Alan Jones <skyphyr@gmail.com>
+ *
+ *
+ */
+ class FilterMatch
+ {
+ public:
+
+ FilterMatch() { m_season = 0; m_episode = 0; m_time = QDateTime::currentDateTime().toString(); m_link=QString(); };
+ FilterMatch(int season, int episode, QString link, QString time = QDateTime::currentDateTime().toString());
+ FilterMatch(const FilterMatch &other);
+ FilterMatch &operator=(const FilterMatch &other);
+ bool operator==(const FilterMatch &other) const;
+ ~FilterMatch() {};
+
+ QString link() const { return m_link; }
+ int season() const { return m_season; }
+ int episode() const { return m_episode; }
+ QString time() const { return m_time; }
+
+ void setLink(const QString& link) { m_link = link; }
+ void setSeason(int season) { m_season = season; }
+ void setEpisode(int episode) { m_episode = episode; }
+ void setTime(QString time) { m_time = time; }
+
+ private:
+ int m_season;
+ int m_episode;
+ QString m_link;
+ QString m_time;
+ };
+
+ class RssFilter : public QObject
+ {
+ Q_OBJECT
+ public:
+
+ /**
+ * Default constructor.
+ */
+ RssFilter(QObject * parent = 0);
+ RssFilter(const RssFilter &other);
+ RssFilter(QString title, bool active, QStringList regexps, bool series, bool sansEpisode,
+ int minSeason, int minEpisode, int maxSeason, int maxEpisode,
+ QValueList<FilterMatch> matches);
+ RssFilter &operator=(const RssFilter &other);
+ ~RssFilter();
+
+ QString title() const { return m_title; }
+ bool active() const { return m_active; }
+ QStringList regExps() const { return m_regExps; }
+ bool series() const { return m_series; }
+ bool sansEpisode() const { return m_sansEpisode; }
+ int minSeason() const { return m_minSeason; }
+ int minEpisode() const { return m_minEpisode; }
+ int maxSeason() const { return m_maxSeason; }
+ int maxEpisode() const { return m_maxEpisode; }
+ QValueList<FilterMatch> matches() const { return m_matches; }
+
+ bool scanArticle(RssArticle article, bool ignoreMatches = true, bool saveMatch = true);
+ void deleteMatch(const QString& link);
+
+ public slots:
+ void setTitle( const QString& title );
+ void setActive( bool active );
+ void setRegExps ( const QStringList& regexps );
+ void setSeries ( bool series );
+ void setSansEpisode ( bool sansEpisode );
+ void setMinSeason( int minSeason );
+ void setMinEpisode( int minEpisode );
+ void setMaxSeason( int maxSeason );
+ void setMaxEpisode( int maxEpisode );
+ void setMatches( const QValueList<FilterMatch>& matches );
+
+ //void scanFilter();
+
+ signals:
+ void titleChanged( const QString& title );
+ void activeChanged( bool active );
+ void regExpsChanged( const QStringList& regexps );
+ void seriesChanged( bool series );
+ void sansEpisodeChanged( bool sansEpisode );
+ void minSeasonChanged (int minSeason);
+ void minEpisodeChanged (int minEpisode);
+ void maxSeasonChanged (int maxSeason);
+ void maxEpisodeChanged (int maxEpisode);
+ void matchesChanged( const QValueList<FilterMatch>& matches );
+
+ void rescanFilter();
+
+ private:
+ QString m_title;
+ bool m_active;
+ QStringList m_regExps;
+ bool m_series;
+ bool m_sansEpisode;
+ int m_minSeason;
+ int m_minEpisode;
+ int m_maxSeason;
+ int m_maxEpisode;
+ QValueList<FilterMatch> m_matches;
+
+ bool episodeInRange(int season, int episode, bool ignoreMatches, bool& alreadyDownloaded);
+
+ };
+
+ QDataStream &operator<<( QDataStream &out, const FilterMatch &filterMatch );
+ QDataStream &operator>>( QDataStream &in, FilterMatch &filterMatch );
+
+ QDataStream &operator<<( QDataStream &out, const RssFilter &filter );
+ QDataStream &operator>>( QDataStream &in, RssFilter &filter );
+
+}
+
+#endif