/*************************************************************************** * 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. * ***************************************************************************/ #include "rssfeedmanager.h" #include #include #include #include #include #include // #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "../../libktorrent/torrent/bdecoder.h" #include "../../libktorrent/torrent/bnode.h" #include "rsslinkdownloader.h" using namespace bt; namespace kt { RssFeedManager::RssFeedManager(CoreInterface* core, TQWidget * parent) : RssFeedWidget(parent) { //Construct the manager m_core = core; currentFeed = -1; currentAcceptFilter = -1; currentRejectFilter = -1; feedListSaving = false; filterListSaving = false; //get the articles list setup feedArticles->setLeftMargin(0); feedArticles->verticalHeader()->hide(); feedArticles->setNumCols(3); feedArticles->setColumnLabels(TQStringList() << i18n("Title") << i18n("Description") << i18n("Link")); feedArticles->horizontalHeader()->setStretchEnabled(true, 0); feedArticles->hideColumn(1); feedArticles->hideColumn(2); //get the matches list setup filterMatches->setLeftMargin(0); filterMatches->verticalHeader()->hide(); filterMatches->setNumCols(4); filterMatches->setColumnLabels(TQStringList() << i18n("Season") << i18n("Episode") << i18n("Time") << i18n("Link")); filterMatches->setColumnWidth(0, 60); filterMatches->setColumnWidth(1, 60); filterMatches->setColumnWidth(2, 180); filterMatches->horizontalHeader()->setStretchEnabled(true, 3); loadFeedList(); loadFilterList(); //connect the buttons connect(newFeed, TQ_SIGNAL(clicked()), this, TQ_SLOT(addNewFeed() ) ); connect(deleteFeed, TQ_SIGNAL(clicked()), this, TQ_SLOT(deleteSelectedFeed() ) ); connect(newAcceptFilter, TQ_SIGNAL(clicked()), this, TQ_SLOT(addNewAcceptFilter() ) ); connect(deleteAcceptFilter, TQ_SIGNAL(clicked()), this, TQ_SLOT(deleteSelectedAcceptFilter() ) ); connect(newRejectFilter, TQ_SIGNAL(clicked()), this, TQ_SLOT(addNewRejectFilter() ) ); connect(deleteRejectFilter, TQ_SIGNAL(clicked()), this, TQ_SLOT(deleteSelectedRejectFilter() ) ); //connect the changing of the active feed connect(feedlist, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(changedActiveFeed()) ); //connect the changing of the url to enable the refresh button connect(feedUrl, TQ_SIGNAL(textChanged(const TQString &)), this, TQ_SLOT(changedFeedUrl()) ); //connect the changing of the filters connect(acceptFilterList, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(changedActiveAcceptFilter()) ); connect(rejectFilterList, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(changedActiveRejectFilter()) ); //connect the selection and downloading of articles connect(feedArticles, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(changedArticleSelection()) ); connect(downloadArticle, TQ_SIGNAL(clicked()), this, TQ_SLOT(downloadSelectedArticles()) ); //connect the selection, downloading and deletion of matches connect(filterMatches, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(changedMatchSelection()) ); connect(downloadFilterMatch, TQ_SIGNAL(clicked()), this, TQ_SLOT(downloadSelectedMatches()) ); connect(deleteFilterMatch, TQ_SIGNAL(clicked()), this, TQ_SLOT(deleteSelectedMatches()) ); //connect the test text update to the slot connect(testText, TQ_SIGNAL(textChanged(const TQString &)), this, TQ_SLOT(testTextChanged()) ); connect(testTestText, TQ_SIGNAL(clicked()), this, TQ_SLOT(testFilter()) ); changedActiveFeed(); changedActiveAcceptFilter(); } RssFeedManager::~RssFeedManager() { //Destruct the manager } void RssFeedManager::clearArticles() { int pos = feeds.find((RssFeed *)sender()); if (pos >= 0) { feeds.at(pos)->clearArticles(); if (feedlist->isSelected(pos)) { //this feed is active so we should update the display feedArticles->setNumRows(0); } } } void RssFeedManager::changedFeedUrl() { refreshFeed->setEnabled(!feedUrl->url().isEmpty()); } void RssFeedManager::connectFeed(int index) { connect(feedTitle, TQ_SIGNAL(textChanged(const TQString &)), feeds.at(index), TQ_SLOT(setTitle(const TQString &) ) ); connect(feeds.at(index), TQ_SIGNAL(titleChanged(const TQString &)), this, TQ_SLOT(setFeedTitle(const TQString &) ) ); //url connect(feedUrl, TQ_SIGNAL(textChanged(const TQString &)), feeds.at(index), TQ_SLOT(setFeedUrl(const TQString&) ) ); connect(feeds.at(index), TQ_SIGNAL(feedUrlChanged(const KURL&)), feedUrl, TQ_SLOT(setKURL(const KURL&) ) ); //articleAge connect(feedArticleAge, TQ_SIGNAL(valueChanged(int)), feeds.at(index), TQ_SLOT(setArticleAge(int) ) ); connect(feeds.at(index), TQ_SIGNAL(articleAgeChanged(int)), feedArticleAge, TQ_SLOT(setValue(int) ) ); //active connect(feedActive, TQ_SIGNAL(toggled(bool)), feeds.at(index), TQ_SLOT(setActive(bool) ) ); connect(feeds.at(index), TQ_SIGNAL(activeChanged(bool)), feedActive, TQ_SLOT(setChecked(bool) ) ); //autoRefresh connect(feedAutoRefresh, TQ_SIGNAL(valueChanged(const TQTime&)), feeds.at(index), TQ_SLOT(setAutoRefresh(const TQTime&) ) ); connect(feeds.at(index), TQ_SIGNAL(autoRefreshChanged(const TQTime&)), feedAutoRefresh, TQ_SLOT(setTime(const TQTime&) ) ); //ignoreTTL connect(feedIgnoreTTL, TQ_SIGNAL(toggled(bool)), feeds.at(index), TQ_SLOT(setIgnoreTTL(bool) ) ); connect(feeds.at(index), TQ_SIGNAL(ignoreTTLChanged(bool)), feedIgnoreTTL, TQ_SLOT(setChecked(bool) ) ); //articles connect(feeds.at(index), TQ_SIGNAL(articlesChanged(const RssArticle::List&)), this, TQ_SLOT(updateArticles(const RssArticle::List&) ) ); //connect the refresh button connect(refreshFeed, TQ_SIGNAL(clicked()), feeds.at(index), TQ_SLOT(refreshFeed()) ); } void RssFeedManager::disconnectFeed(int index) { disconnect(feedTitle, TQ_SIGNAL(textChanged(const TQString &)), feeds.at(index), TQ_SLOT(setTitle(const TQString &) ) ); disconnect(feeds.at(index), TQ_SIGNAL(titleChanged(const TQString &)), this, TQ_SLOT(setFeedTitle(const TQString &) ) ); //url disconnect(feedUrl, TQ_SIGNAL(textChanged(const TQString &)), feeds.at(index), TQ_SLOT(setFeedUrl(const TQString&) ) ); disconnect(feeds.at(index), TQ_SIGNAL(feedUrlChanged(const KURL&)), feedUrl, TQ_SLOT(setKURL(const KURL&) ) ); //articleAge disconnect(feedArticleAge, TQ_SIGNAL(valueChanged(int)), feeds.at(index), TQ_SLOT(setArticleAge(int) ) ); disconnect(feeds.at(index), TQ_SIGNAL(articleAgeChanged(int)), feedArticleAge, TQ_SLOT(setValue(int) ) ); //active disconnect(feedActive, TQ_SIGNAL(toggled(bool)), feeds.at(index), TQ_SLOT(setActive(bool) ) ); disconnect(feeds.at(index), TQ_SIGNAL(activeChanged(bool)), feedActive, TQ_SLOT(setChecked(bool) ) ); //autoRefresh disconnect(feedAutoRefresh, TQ_SIGNAL(valueChanged(const TQTime&)), feeds.at(index), TQ_SLOT(setAutoRefresh(const TQTime&) ) ); disconnect(feeds.at(index), TQ_SIGNAL(autoRefreshChanged(const TQTime&)), feedAutoRefresh, TQ_SLOT(setTime(const TQTime&) ) ); //ignoreTTL disconnect(feedIgnoreTTL, TQ_SIGNAL(toggled(bool)), feeds.at(index), TQ_SLOT(setIgnoreTTL(bool) ) ); disconnect(feeds.at(index), TQ_SIGNAL(ignoreTTLChanged(bool)), feedIgnoreTTL, TQ_SLOT(setChecked(bool) ) ); //articles disconnect(feeds.at(index), TQ_SIGNAL(articlesChanged(const RssArticle::List&)), this, TQ_SLOT(updateArticles(const RssArticle::List&) ) ); disconnect(refreshFeed, TQ_SIGNAL(clicked()), feeds.at(index), TQ_SLOT(refreshFeed()) ); } void RssFeedManager::connectFilter(int index, bool acceptFilter) { if (acceptFilter) { //title connect(filterTitle, TQ_SIGNAL(textChanged(const TQString &)), acceptFilters.at(index), TQ_SLOT(setTitle(const TQString &) ) ); connect(acceptFilters.at(index), TQ_SIGNAL(titleChanged(const TQString &)), this, TQ_SLOT(setFilterTitle(const TQString &) ) ); //active connect(filterActive, TQ_SIGNAL(toggled(bool)), acceptFilters.at(index), TQ_SLOT(setActive(bool) ) ); connect(acceptFilters.at(index), TQ_SIGNAL(activeChanged(bool)), filterActive, TQ_SLOT(setChecked(bool) ) ); //regExps connect(filterRegExps, TQ_SIGNAL(changed()), this, TQ_SLOT(updateRegExps()) ); //series connect(filterSeries, TQ_SIGNAL(toggled(bool)), acceptFilters.at(index), TQ_SLOT(setSeries(bool) ) ); connect(acceptFilters.at(index), TQ_SIGNAL(seriesChanged(bool)), filterSeries, TQ_SLOT(setChecked(bool) ) ); //sansEpisode connect(filterSansEpisode, TQ_SIGNAL(toggled(bool)), acceptFilters.at(index), TQ_SLOT(setSansEpisode(bool) ) ); connect(acceptFilters.at(index), TQ_SIGNAL(sansEpisodeChanged(bool)), filterSansEpisode, TQ_SLOT(setChecked(bool) ) ); //minSeason connect(filterMinSeason, TQ_SIGNAL(valueChanged(int)), acceptFilters.at(index), TQ_SLOT(setMinSeason(int) ) ); connect(acceptFilters.at(index), TQ_SIGNAL(minSeasonChanged(int)), filterMinSeason, TQ_SLOT(setValue(int) ) ); //minEpisode connect(filterMinEpisode, TQ_SIGNAL(valueChanged(int)), acceptFilters.at(index), TQ_SLOT(setMinEpisode(int) ) ); connect(acceptFilters.at(index), TQ_SIGNAL(minEpisodeChanged(int)), filterMinEpisode, TQ_SLOT(setValue(int) ) ); //maxSeason connect(filterMaxSeason, TQ_SIGNAL(valueChanged(int)), acceptFilters.at(index), TQ_SLOT(setMaxSeason(int) ) ); connect(acceptFilters.at(index), TQ_SIGNAL(maxSeasonChanged(int)), filterMaxSeason, TQ_SLOT(setValue(int) ) ); //maxEpisode connect(filterMaxEpisode, TQ_SIGNAL(valueChanged(int)), acceptFilters.at(index), TQ_SLOT(setMaxEpisode(int) ) ); connect(acceptFilters.at(index), TQ_SIGNAL(maxEpisodeChanged(int)), filterMaxEpisode, TQ_SLOT(setValue(int) ) ); //matches connect(acceptFilters.at(index), TQ_SIGNAL(matchesChanged(const TQValueList&)), this, TQ_SLOT(updateMatches(const TQValueList&) ) ); connect(processFilter, TQ_SIGNAL(clicked()), acceptFilters.at(index), TQ_SIGNAL(rescanFilter()) ); } else { //title connect(filterTitle, TQ_SIGNAL(textChanged(const TQString &)), rejectFilters.at(index), TQ_SLOT(setTitle(const TQString &) ) ); connect(rejectFilters.at(index), TQ_SIGNAL(titleChanged(const TQString &)), this, TQ_SLOT(setFilterTitle(const TQString &) ) ); //active connect(filterActive, TQ_SIGNAL(toggled(bool)), rejectFilters.at(index), TQ_SLOT(setActive(bool) ) ); connect(rejectFilters.at(index), TQ_SIGNAL(activeChanged(bool)), filterActive, TQ_SLOT(setChecked(bool) ) ); //regExps connect(filterRegExps, TQ_SIGNAL(changed()), this, TQ_SLOT(updateRegExps()) ); //series connect(filterSeries, TQ_SIGNAL(toggled(bool)), rejectFilters.at(index), TQ_SLOT(setSeries(bool) ) ); connect(rejectFilters.at(index), TQ_SIGNAL(seriesChanged(bool)), filterSeries, TQ_SLOT(setChecked(bool) ) ); //sansEpisode connect(filterSansEpisode, TQ_SIGNAL(toggled(bool)), rejectFilters.at(index), TQ_SLOT(setSansEpisode(bool) ) ); connect(rejectFilters.at(index), TQ_SIGNAL(sansEpisodeChanged(bool)), filterSansEpisode, TQ_SLOT(setChecked(bool) ) ); //minSeason connect(filterMinSeason, TQ_SIGNAL(valueChanged(int)), rejectFilters.at(index), TQ_SLOT(setMinSeason(int) ) ); connect(rejectFilters.at(index), TQ_SIGNAL(minSeasonChanged(int)), filterMinSeason, TQ_SLOT(setValue(int) ) ); //minEpisode connect(filterMinEpisode, TQ_SIGNAL(valueChanged(int)), rejectFilters.at(index), TQ_SLOT(setMinEpisode(int) ) ); connect(rejectFilters.at(index), TQ_SIGNAL(minEpisodeChanged(int)), filterMinEpisode, TQ_SLOT(setValue(int) ) ); //maxSeason connect(filterMaxSeason, TQ_SIGNAL(valueChanged(int)), rejectFilters.at(index), TQ_SLOT(setMaxSeason(int) ) ); connect(rejectFilters.at(index), TQ_SIGNAL(maxSeasonChanged(int)), filterMaxSeason, TQ_SLOT(setValue(int) ) ); //maxEpisode connect(filterMaxEpisode, TQ_SIGNAL(valueChanged(int)), rejectFilters.at(index), TQ_SLOT(setMaxEpisode(int) ) ); connect(rejectFilters.at(index), TQ_SIGNAL(maxEpisodeChanged(int)), filterMaxEpisode, TQ_SLOT(setValue(int) ) ); //matches connect(rejectFilters.at(index), TQ_SIGNAL(matchesChanged(const TQValueList&)), this, TQ_SLOT(updateMatches(const TQValueList&) ) ); connect(processFilter, TQ_SIGNAL(clicked()), rejectFilters.at(index), TQ_SIGNAL(rescanFilter()) ); } } void RssFeedManager::disconnectFilter(int index, bool acceptFilter) { if (acceptFilter) { //title disconnect(filterTitle, TQ_SIGNAL(textChanged(const TQString &)), acceptFilters.at(index), TQ_SLOT(setTitle(const TQString &) ) ); disconnect(acceptFilters.at(index), TQ_SIGNAL(titleChanged(const TQString &)), this, TQ_SLOT(setFilterTitle(const TQString &) ) ); //active disconnect(filterActive, TQ_SIGNAL(toggled(bool)), acceptFilters.at(index), TQ_SLOT(setActive(bool) ) ); disconnect(acceptFilters.at(index), TQ_SIGNAL(activeChanged(bool)), filterActive, TQ_SLOT(setChecked(bool) ) ); //regExps disconnect(filterRegExps, TQ_SIGNAL(changed()), this, TQ_SLOT(updateRegExps()) ); //series disconnect(filterSeries, TQ_SIGNAL(toggled(bool)), acceptFilters.at(index), TQ_SLOT(setSeries(bool) ) ); disconnect(acceptFilters.at(index), TQ_SIGNAL(seriesChanged(bool)), filterSeries, TQ_SLOT(setChecked(bool) ) ); //sansEpisode disconnect(filterSansEpisode, TQ_SIGNAL(toggled(bool)), acceptFilters.at(index), TQ_SLOT(setSansEpisode(bool) ) ); disconnect(acceptFilters.at(index), TQ_SIGNAL(sansEpisodeChanged(bool)), filterSansEpisode, TQ_SLOT(setChecked(bool) ) ); //minSeason disconnect(filterMinSeason, TQ_SIGNAL(valueChanged(int)), acceptFilters.at(index), TQ_SLOT(setMinSeason(int) ) ); disconnect(acceptFilters.at(index), TQ_SIGNAL(minSeasonChanged(int)), filterMinSeason, TQ_SLOT(setValue(int) ) ); //minEpisode disconnect(filterMinEpisode, TQ_SIGNAL(valueChanged(int)), acceptFilters.at(index), TQ_SLOT(setMinEpisode(int) ) ); disconnect(acceptFilters.at(index), TQ_SIGNAL(minEpisodeChanged(int)), filterMinEpisode, TQ_SLOT(setValue(int) ) ); //maxSeason disconnect(filterMaxSeason, TQ_SIGNAL(valueChanged(int)), acceptFilters.at(index), TQ_SLOT(setMaxSeason(int) ) ); disconnect(acceptFilters.at(index), TQ_SIGNAL(maxSeasonChanged(int)), filterMaxSeason, TQ_SLOT(setValue(int) ) ); //maxEpisode disconnect(filterMaxEpisode, TQ_SIGNAL(valueChanged(int)), acceptFilters.at(index), TQ_SLOT(setMaxEpisode(int) ) ); disconnect(acceptFilters.at(index), TQ_SIGNAL(maxEpisodeChanged(int)), filterMaxEpisode, TQ_SLOT(setValue(int) ) ); //matches disconnect(acceptFilters.at(index), TQ_SIGNAL(matchesChanged(const TQValueList&)), this, TQ_SLOT(updateMatches(const TQValueList&) ) ); disconnect(processFilter, TQ_SIGNAL(clicked()), acceptFilters.at(index), TQ_SIGNAL(rescanFilter()) ); } else { //title disconnect(filterTitle, TQ_SIGNAL(textChanged(const TQString &)), rejectFilters.at(index), TQ_SLOT(setTitle(const TQString &) ) ); disconnect(rejectFilters.at(index), TQ_SIGNAL(titleChanged(const TQString &)), this, TQ_SLOT(setFilterTitle(const TQString &) ) ); //active disconnect(filterActive, TQ_SIGNAL(toggled(bool)), rejectFilters.at(index), TQ_SLOT(setActive(bool) ) ); disconnect(rejectFilters.at(index), TQ_SIGNAL(activeChanged(bool)), filterActive, TQ_SLOT(setChecked(bool) ) ); //regExps disconnect(filterRegExps, TQ_SIGNAL(changed()), this, TQ_SLOT(updateRegExps()) ); //series disconnect(filterSeries, TQ_SIGNAL(toggled(bool)), rejectFilters.at(index), TQ_SLOT(setSeries(bool) ) ); disconnect(rejectFilters.at(index), TQ_SIGNAL(seriesChanged(bool)), filterSeries, TQ_SLOT(setChecked(bool) ) ); //sansEpisode disconnect(filterSansEpisode, TQ_SIGNAL(toggled(bool)), rejectFilters.at(index), TQ_SLOT(setSansEpisode(bool) ) ); disconnect(rejectFilters.at(index), TQ_SIGNAL(sansEpisodeChanged(bool)), filterSansEpisode, TQ_SLOT(setChecked(bool) ) ); //minSeason disconnect(filterMinSeason, TQ_SIGNAL(valueChanged(int)), rejectFilters.at(index), TQ_SLOT(setMinSeason(int) ) ); disconnect(rejectFilters.at(index), TQ_SIGNAL(minSeasonChanged(int)), filterMinSeason, TQ_SLOT(setValue(int) ) ); //minEpisode disconnect(filterMinEpisode, TQ_SIGNAL(valueChanged(int)), rejectFilters.at(index), TQ_SLOT(setMinEpisode(int) ) ); disconnect(rejectFilters.at(index), TQ_SIGNAL(minEpisodeChanged(int)), filterMinEpisode, TQ_SLOT(setValue(int) ) ); //maxSeason disconnect(filterMaxSeason, TQ_SIGNAL(valueChanged(int)), rejectFilters.at(index), TQ_SLOT(setMaxSeason(int) ) ); disconnect(rejectFilters.at(index), TQ_SIGNAL(maxSeasonChanged(int)), filterMaxSeason, TQ_SLOT(setValue(int) ) ); //maxEpisode disconnect(filterMaxEpisode, TQ_SIGNAL(valueChanged(int)), rejectFilters.at(index), TQ_SLOT(setMaxEpisode(int) ) ); disconnect(rejectFilters.at(index), TQ_SIGNAL(maxEpisodeChanged(int)), filterMaxEpisode, TQ_SLOT(setValue(int) ) ); //matches disconnect(rejectFilters.at(index), TQ_SIGNAL(matchesChanged(const TQValueList&)), this, TQ_SLOT(updateMatches(const TQValueList&) ) ); disconnect(processFilter, TQ_SIGNAL(clicked()), rejectFilters.at(index), TQ_SIGNAL(rescanFilter()) ); } } void RssFeedManager::addNewFeed(RssFeed feed) { if (feeds.isEmpty()) deleteFeed->setEnabled(true); feeds.append(new RssFeed(feed)); int index = feeds.count()-1; feedlist->insertItem(feeds.at(index)->title()); feedlist->setCurrentItem(index); //update the feed list connect(feeds.at(index), TQ_SIGNAL(titleChanged(const TQString&)), this, TQ_SLOT(updateFeedList()) ); //clear the articles list when the url is changed connect(feeds.at(index), TQ_SIGNAL(feedUrlChanged(const KURL&)), this, TQ_SLOT(clearArticles() ) ); //connect the scanArticle signal to the scanArticle slot connect(feeds.at(index), TQ_SIGNAL(scanRssArticle(RssArticle)), this, TQ_SLOT(scanArticle(RssArticle) ) ); //connect all the fields to the save slot //title connect(feeds.at(index), TQ_SIGNAL(titleChanged(const TQString &)), this, TQ_SLOT(saveFeedList() ) ); //url connect(feeds.at(index), TQ_SIGNAL(feedUrlChanged(const KURL&)), this, TQ_SLOT(saveFeedList() ) ); //articleAge connect(feeds.at(index), TQ_SIGNAL(articleAgeChanged(int)), this, TQ_SLOT(saveFeedList() ) ); //active connect(feeds.at(index), TQ_SIGNAL(activeChanged(bool)), this, TQ_SLOT(saveFeedList() ) ); //autoRefresh connect(feeds.at(index), TQ_SIGNAL(autoRefreshChanged(const TQTime&)), this, TQ_SLOT(saveFeedList() ) ); //ignoreTTL connect(feeds.at(index), TQ_SIGNAL(ignoreTTLChanged(bool)), this, TQ_SLOT(saveFeedList() ) ); } void RssFeedManager::addNewAcceptFilter(RssFilter filter) { if (acceptFilters.isEmpty()) deleteAcceptFilter->setEnabled(true); acceptFilters.append(new RssFilter(filter)); int index = acceptFilters.count()-1; acceptFilterList->insertItem(acceptFilters.at(index)->title()); acceptFilterList->setCurrentItem(index); connect(acceptFilters.at(index), TQ_SIGNAL(titleChanged(const TQString&)), this, TQ_SLOT(updateAcceptFilterList()) ); //connect all the fields to the save slot //title connect(acceptFilters.at(index), TQ_SIGNAL(titleChanged(const TQString &)), this, TQ_SLOT(saveFilterList() ) ); //active connect(acceptFilters.at(index), TQ_SIGNAL(activeChanged( bool )), this, TQ_SLOT(saveFilterList() ) ); //regexps connect(acceptFilters.at(index), TQ_SIGNAL(regExpsChanged( const TQStringList& )), this, TQ_SLOT(saveFilterList() ) ); //series connect(acceptFilters.at(index), TQ_SIGNAL(seriesChanged( bool )), this, TQ_SLOT(saveFilterList() ) ); //sansEpisode connect(acceptFilters.at(index), TQ_SIGNAL(sansEpisodeChanged( bool )), this, TQ_SLOT(saveFilterList() ) ); //minSeason connect(acceptFilters.at(index), TQ_SIGNAL(minSeasonChanged (int )), this, TQ_SLOT(saveFilterList() ) ); //minEpisode connect(acceptFilters.at(index), TQ_SIGNAL(minEpisodeChanged (int )), this, TQ_SLOT(saveFilterList() ) ); //maxSeason connect(acceptFilters.at(index), TQ_SIGNAL(maxSeasonChanged (int )), this, TQ_SLOT(saveFilterList() ) ); //maxEpiosde connect(acceptFilters.at(index), TQ_SIGNAL(maxEpisodeChanged (int )), this, TQ_SLOT(saveFilterList() ) ); //matches connect(acceptFilters.at(index), TQ_SIGNAL(matchesChanged( const TQValueList& )), this, TQ_SLOT(saveFilterList() ) ); //connect the rescan signal to the rescan slot connect(acceptFilters.at(index), TQ_SIGNAL(rescanFilter()), this, TQ_SLOT(rescanFilter()) ); // //connect all except the matchesChanged to the rescanFilter slot // //title // connect(acceptFilters.at(index), TQ_SIGNAL(titleChanged(const TQString &)), this, TQ_SLOT(rescanFilter() ) ); // //active // connect(acceptFilters.at(index), TQ_SIGNAL(activeChanged( bool )), this, TQ_SLOT(rescanFilter() ) ); // //regexps // connect(acceptFilters.at(index), TQ_SIGNAL(regExpsChanged( const TQStringList& )), this, TQ_SLOT(rescanFilter() ) ); // //series // connect(acceptFilters.at(index), TQ_SIGNAL(seriesChanged( bool )), this, TQ_SLOT(rescanFilter() ) ); // //sansEpisode // connect(acceptFilters.at(index), TQ_SIGNAL(sansEpisodeChanged( bool )), this, TQ_SLOT(rescanFilter() ) ); // //minSeason // connect(acceptFilters.at(index), TQ_SIGNAL(minSeasonChanged (int )), this, TQ_SLOT(rescanFilter() ) ); // //minEpisode // connect(acceptFilters.at(index), TQ_SIGNAL(minEpisodeChanged (int )), this, TQ_SLOT(rescanFilter() ) ); // //maxSeason // connect(acceptFilters.at(index), TQ_SIGNAL(maxSeasonChanged (int )), this, TQ_SLOT(rescanFilter() ) ); // //maxEpiosde // connect(acceptFilters.at(index), TQ_SIGNAL(maxEpisodeChanged (int )), this, TQ_SLOT(rescanFilter() ) ); } void RssFeedManager::addNewRejectFilter(RssFilter filter) { if (rejectFilters.isEmpty()) deleteRejectFilter->setEnabled(true); rejectFilters.append(new RssFilter(filter)); int index = rejectFilters.count()-1; rejectFilterList->insertItem(rejectFilters.at(index)->title()); rejectFilterList->setCurrentItem(index); connect(rejectFilters.at(index), TQ_SIGNAL(titleChanged(const TQString&)), this, TQ_SLOT(updateRejectFilterList()) ); //connect all the fields to the save slot //title connect(rejectFilters.at(index), TQ_SIGNAL(titleChanged(const TQString &)), this, TQ_SLOT(saveFilterList() ) ); //active connect(rejectFilters.at(index), TQ_SIGNAL(activeChanged( bool )), this, TQ_SLOT(saveFilterList() ) ); //regexps connect(rejectFilters.at(index), TQ_SIGNAL(regExpsChanged( const TQStringList& )), this, TQ_SLOT(saveFilterList() ) ); //series connect(rejectFilters.at(index), TQ_SIGNAL(seriesChanged( bool )), this, TQ_SLOT(saveFilterList() ) ); //sansEpisode connect(rejectFilters.at(index), TQ_SIGNAL(sansEpisodeChanged( bool )), this, TQ_SLOT(saveFilterList() ) ); //minSeason connect(rejectFilters.at(index), TQ_SIGNAL(minSeasonChanged (int )), this, TQ_SLOT(saveFilterList() ) ); //minEpisode connect(rejectFilters.at(index), TQ_SIGNAL(minEpisodeChanged (int )), this, TQ_SLOT(saveFilterList() ) ); //maxSeason connect(rejectFilters.at(index), TQ_SIGNAL(maxSeasonChanged (int )), this, TQ_SLOT(saveFilterList() ) ); //maxEpiosde connect(rejectFilters.at(index), TQ_SIGNAL(maxEpisodeChanged (int )), this, TQ_SLOT(saveFilterList() ) ); //matches connect(rejectFilters.at(index), TQ_SIGNAL(matchesChanged( const TQValueList& )), this, TQ_SLOT(saveFilterList() ) ); } void RssFeedManager::deleteSelectedFeed() { int currentItem = feedlist->currentItem(); if (currentItem < 0) return; int newItem=currentItem-1; if (currentItem == -1 && feeds.count()) newItem = 0; disconnectFeed(currentItem); currentFeed = -1; delete feeds.at(currentItem); feeds.remove(currentItem); feedlist->removeItem(currentItem); if (feeds.isEmpty()) deleteFeed->setEnabled(false); if (newItem >= 0) { feedlist->setSelected(newItem, true); } saveFeedList(); } void RssFeedManager::deleteSelectedAcceptFilter() { int currentItem = acceptFilterList->currentItem(); if (currentItem < 0) return; int newItem=currentItem-1; if (currentItem == -1 && acceptFilters.count()) newItem = 0; disconnectFilter(currentItem, true); currentAcceptFilter = -1; delete acceptFilters.at(currentItem); acceptFilters.remove(currentItem); acceptFilterList->removeItem(currentItem); if (acceptFilters.isEmpty()) deleteAcceptFilter->setEnabled(false); if (newItem >= 0) { acceptFilterList->setSelected(newItem, true); } saveFilterList(); } void RssFeedManager::deleteSelectedRejectFilter() { int currentItem = rejectFilterList->currentItem(); if (currentItem < 0) return; int newItem=currentItem-1; if (currentItem == -1 && rejectFilters.count()) newItem = 0; disconnectFilter(currentItem, false); currentRejectFilter = -1; delete rejectFilters.at(currentItem); rejectFilters.remove(currentItem); rejectFilterList->removeItem(currentItem); if (rejectFilters.isEmpty()) deleteRejectFilter->setEnabled(false); if (newItem >= 0) { rejectFilterList->setSelected(newItem, true); } saveFilterList(); } void RssFeedManager::updateRegExps() { if (currentRejectFilter < 0) { //accept filter is active acceptFilters.at(currentAcceptFilter)->setRegExps(filterRegExps->items()); } else { //reject filter is active rejectFilters.at(currentRejectFilter)->setRegExps(filterRegExps->items()); } } void RssFeedManager::updateFeedList(int item) { int cursorPos = feedTitle->cursorPosition(); if (item < 0) { //let's check which one sent the signal - if we can't figure it all then update them all int pos = feeds.find((RssFeed *)sender()); if (pos < 0) { for (int i=0; icount(); i++) { feedlist->changeItem(feeds.at(i)->title(), i); } } else { //just change the feed sending the signal feedlist->changeItem(feeds.at(pos)->title(), pos); if (feedlist->isSelected(pos)) { feedTitle->setFocus(); } } } else { //just update item feedlist->changeItem(feeds.at(item)->title(), item); } feedTitle->setCursorPosition(cursorPos); } void RssFeedManager::updateAcceptFilterList(int item) { int cursorPos = filterTitle->cursorPosition(); if (item < 0) { //let's check which one sent the signal - if we can't figure it all then update them all int pos = acceptFilters.find((RssFilter *)sender()); if (pos < 0) { for (int i=0; icount(); i++) { acceptFilterList->changeItem(acceptFilters.at(i)->title(), i); } } else { //just change the feed sending the signal acceptFilterList->changeItem(acceptFilters.at(pos)->title(), pos); if (acceptFilterList->isSelected(pos)) { filterTitle->setFocus(); } } } else { //just update item acceptFilterList->changeItem(acceptFilters.at(item)->title(), item); } filterTitle->setCursorPosition(cursorPos); } void RssFeedManager::updateRejectFilterList(int item) { int cursorPos = filterTitle->cursorPosition(); if (item < 0) { //let's check which one sent the signal - if we can't figure it all then update them all int pos = rejectFilters.find((RssFilter *)sender()); if (pos < 0) { for (int i=0; icount(); i++) { rejectFilterList->changeItem(rejectFilters.at(i)->title(), i); } } else { //just change the feed sending the signal rejectFilterList->changeItem(rejectFilters.at(pos)->title(), pos); if (rejectFilterList->isSelected(pos)) { filterTitle->setFocus(); } } } else { //just update item rejectFilterList->changeItem(rejectFilters.at(item)->title(), item); } filterTitle->setCursorPosition(cursorPos); } void RssFeedManager::updateArticles(const RssArticle::List& articles) { feedArticles->setNumRows(articles.count()); for (int i=0; isetText(i, 0, articles[i].title() + info); feedArticles->setText(i, 1, articles[i].description()); feedArticles->setText(i, 2, articles[i].link().prettyURL()); } } void RssFeedManager::updateMatches(const TQValueList& matches) { filterMatches->setNumRows(matches.count()); for (int i=0; isetText(i, 0, TQString::number(matches[i].season())); filterMatches->setText(i, 1, TQString::number(matches[i].episode())); filterMatches->setText(i, 2, matches[i].time()); filterMatches->setText(i, 3, matches[i].link()); } changedMatchSelection(); } void RssFeedManager::changedArticleSelection() { bool downloadEnabled = false; for (int i=0; inumSelections(); i++) { if (feedArticles->selection(i).numRows()) { downloadEnabled = true; break; } } downloadArticle->setEnabled(downloadEnabled); } void RssFeedManager::changedMatchSelection() { bool downloadEnabled = false; for (int i=0; inumSelections(); i++) { if (filterMatches->selection(i).numRows()) { downloadEnabled = true; break; } } downloadFilterMatch->setEnabled(downloadEnabled); deleteFilterMatch->setEnabled(downloadEnabled); } void RssFeedManager::downloadSelectedArticles() { for (int i=0; inumSelections(); i++) { int endRow = feedArticles->selection(i).topRow() + feedArticles->selection(i).numRows(); RssLinkDownloader * curDownload; for (int j=feedArticles->selection(i).topRow(); jtext(j, 2)); for (int i=0; inumSelections(); i++) { int endRow = filterMatches->selection(i).topRow() + filterMatches->selection(i).numRows(); for (int j=filterMatches->selection(i).topRow(); jtext(j, 3)); } } } void RssFeedManager::deleteSelectedMatches() { TQStringList selectedLinks; for (int i=0; inumSelections(); i++) { int endRow = filterMatches->selection(i).topRow() + filterMatches->selection(i).numRows(); for (int j=filterMatches->selection(i).topRow(); jtext(j, 3)); } } RssFilter * curFilter; if (currentRejectFilter<0) { //we're currently testing an acceptFilter curFilter = acceptFilters.at(currentAcceptFilter); } else { //it's a reject filter curFilter = rejectFilters.at(currentRejectFilter); } for (int i=0; ideleteMatch( selectedLinks[i] ); } updateMatches(curFilter->matches()); } void RssFeedManager::changedActiveFeed() { if (currentFeed != feedlist->currentItem() || currentFeed < 0) { //the selection has indeed changed if (currentFeed >= 0) { //disconnect the gui signals from the old feed disconnectFeed(currentFeed); } //update the currentFeed currentFeed = feedlist->currentItem(); if (currentFeed >= 0) { //set the values //title feedTitle->setText(feeds.at(currentFeed)->title()); //url feedUrl->setKURL(feeds.at(currentFeed)->feedUrl()); refreshFeed->setEnabled(!feeds.at(currentFeed)->feedUrl().url().isEmpty()); //articleAge feedArticleAge->setValue(feeds.at(currentFeed)->articleAge()); //active feedActive->setChecked(feeds.at(currentFeed)->active()); //autoRefresh feedAutoRefresh->setTime(feeds.at(currentFeed)->autoRefresh()); //ignoreTTL feedIgnoreTTL->setChecked(feeds.at(currentFeed)->ignoreTTL()); feedAutoRefresh->setEnabled(feeds.at(currentFeed)->ignoreTTL()); //articles updateArticles(feeds.at(currentFeed)->articles()); //title feedTitle->setEnabled(true); //url feedUrl->setEnabled(true); //articleAge feedArticleAge->setEnabled(true); //active feedActive->setEnabled(true); //ignoreTTL feedIgnoreTTL->setEnabled(true); //connect all the signals connectFeed(currentFeed); } else { //clear the items //title feedTitle->clear(); //url feedUrl->clear(); //articleAge feedArticleAge->setValue(0); //active feedActive->setChecked(false); //autoRefresh feedAutoRefresh->setTime(TQTime()); //ignoreTTL feedIgnoreTTL->setChecked(false); //articles feedArticles->setNumRows(0); //title feedTitle->setEnabled(false); //url feedUrl->setEnabled(false); //articleAge feedArticleAge->setEnabled(false); //active feedActive->setEnabled(false); //autoRefresh feedAutoRefresh->setEnabled(false); //ignoreTTL feedIgnoreTTL->setEnabled(false); } } } void RssFeedManager::changedActiveAcceptFilter() { if (currentRejectFilter >= 0) { rejectFilterList->setSelected(currentRejectFilter, false); disconnectFilter(currentRejectFilter, false); currentRejectFilter = -1; } if (currentAcceptFilter != acceptFilterList->currentItem() || currentAcceptFilter < 0) { //the selection has indeed changed if (currentAcceptFilter >= 0) { //disconnect the gui signals from the old feed disconnectFilter(currentAcceptFilter, true); } //update the currentFeed currentAcceptFilter = acceptFilterList->currentItem(); if (currentAcceptFilter >= 0) { //set the values filterTitle->setText(acceptFilters.at(currentAcceptFilter)->title()); filterActive->setChecked(acceptFilters.at(currentAcceptFilter)->active()); filterRegExps->setItems(acceptFilters.at(currentAcceptFilter)->regExps()); filterSeries->setChecked(acceptFilters.at(currentAcceptFilter)->series()); filterSansEpisode->setChecked(acceptFilters.at(currentAcceptFilter)->sansEpisode()); filterMinSeason->setValue(acceptFilters.at(currentAcceptFilter)->minSeason()); filterMinEpisode->setValue(acceptFilters.at(currentAcceptFilter)->minEpisode()); filterMaxSeason->setValue(acceptFilters.at(currentAcceptFilter)->maxSeason()); filterMaxEpisode->setValue(acceptFilters.at(currentAcceptFilter)->maxEpisode()); updateMatches(acceptFilters.at(currentAcceptFilter)->matches()); filterTitle->setEnabled(true); filterActive->setEnabled(true); filterRegExps->setEnabled(true); filterSeries->setEnabled(true); filterSansEpisode->setEnabled(true); filterMinSeason->setEnabled(true); filterMinEpisode->setEnabled(true); filterMaxSeason->setEnabled(true); filterMaxEpisode->setEnabled(true); processFilter->setEnabled(true); testText->setEnabled(true); //connect all the signals connectFilter(currentAcceptFilter, true); } else { if (currentRejectFilter < 0) { //clear the items filterTitle->clear(); filterActive->setChecked(false); filterRegExps->clear(); filterSeries->setChecked(false); filterSansEpisode->setChecked(false); filterMinSeason->setValue(0); filterMinEpisode->setValue(0); filterMaxSeason->setValue(0); filterMaxEpisode->setValue(0); filterMatches->setNumRows(0); filterTitle->setEnabled(false); filterActive->setEnabled(false); filterRegExps->setEnabled(false); filterSeries->setEnabled(false); filterSansEpisode->setEnabled(false); filterMinSeason->setEnabled(false); filterMinEpisode->setEnabled(false); filterMaxSeason->setEnabled(false); filterMaxEpisode->setEnabled(false); processFilter->setEnabled(false); testText->setEnabled(false); } } } } void RssFeedManager::changedActiveRejectFilter() { if (currentAcceptFilter >= 0) { acceptFilterList->setSelected(currentAcceptFilter, false); disconnectFilter(currentAcceptFilter, true); currentAcceptFilter = -1; } if (currentRejectFilter != rejectFilterList->currentItem() || currentRejectFilter < 0) { //the selection has indeed changed if (currentRejectFilter >= 0) { //disconnect the gui signals from the old feed disconnectFilter(currentRejectFilter, false); } //update the currentFeed currentRejectFilter = rejectFilterList->currentItem(); if (currentRejectFilter >= 0) { //set the values //title filterTitle->setText(rejectFilters.at(currentRejectFilter)->title()); filterActive->setChecked(rejectFilters.at(currentRejectFilter)->active()); filterRegExps->setItems(rejectFilters.at(currentRejectFilter)->regExps()); filterSeries->setChecked(rejectFilters.at(currentRejectFilter)->series()); filterSansEpisode->setChecked(rejectFilters.at(currentRejectFilter)->sansEpisode()); filterMinSeason->setValue(rejectFilters.at(currentRejectFilter)->minSeason()); filterMinEpisode->setValue(rejectFilters.at(currentRejectFilter)->minEpisode()); filterMaxSeason->setValue(rejectFilters.at(currentRejectFilter)->maxSeason()); filterMaxEpisode->setValue(rejectFilters.at(currentRejectFilter)->maxEpisode()); updateMatches(rejectFilters.at(currentRejectFilter)->matches()); filterTitle->setEnabled(true); filterActive->setEnabled(true); filterRegExps->setEnabled(true); filterSeries->setEnabled(true); filterSansEpisode->setEnabled(true); filterMinSeason->setEnabled(true); filterMinEpisode->setEnabled(true); filterMaxSeason->setEnabled(true); filterMaxEpisode->setEnabled(true); processFilter->setEnabled(true); testText->setEnabled(true); //connect all the signals connectFilter(currentRejectFilter, false); } else { if (currentRejectFilter < 0) { //clear the items filterTitle->clear(); filterActive->setChecked(false); filterRegExps->clear(); filterSeries->setChecked(false); filterSansEpisode->setChecked(false); filterMinSeason->setValue(0); filterMinEpisode->setValue(0); filterMaxSeason->setValue(0); filterMaxEpisode->setValue(0); filterMatches->setNumRows(0); filterTitle->setEnabled(false); filterActive->setEnabled(false); filterRegExps->setEnabled(false); filterSeries->setEnabled(false); filterSansEpisode->setEnabled(false); filterMinSeason->setEnabled(false); filterMinEpisode->setEnabled(false); filterMaxSeason->setEnabled(false); filterMaxEpisode->setEnabled(false); processFilter->setEnabled(false); testText->setEnabled(false); } } } } TQString RssFeedManager::getFeedListFilename() { return TDEGlobal::dirs()->saveLocation("data","ktorrent") + "rssfeeds.ktr"; } TQString RssFeedManager::getFilterListFilename() { return TDEGlobal::dirs()->saveLocation("data","ktorrent") + "rssfilters.ktr"; } void RssFeedManager::saveFeedList() { if (feedListSaving) return; feedListSaving = true; TQString filename = getFeedListFilename(); //save feeds to disk TQFile file(filename); file.open( IO_WriteOnly ); TQDataStream out(&file); out << feeds.count(); for (int i=0; i> numFeeds; RssFeed curFeed; for (int i=0; i> curFeed; addNewFeed(curFeed); } changedActiveFeed(); } } void RssFeedManager::saveFilterList() { if (filterListSaving) return; filterListSaving = true; TQString filename = getFilterListFilename(); //save feeds to disk TQFile file(filename); file.open( IO_WriteOnly ); TQDataStream out(&file); out << acceptFilters.count(); for (int i=0; i> numFilters; RssFilter curFilter; for (int i=0; i> curFilter; addNewAcceptFilter(curFilter); } in >> numFilters; for (int i=0; i> curFilter; addNewRejectFilter(curFilter); } //go through and grab the reject filters changedActiveRejectFilter(); changedActiveAcceptFilter(); } } void RssFeedManager::scanArticle(RssArticle article, RssFilter * filter) { //first run it through the reject filters - if any match go no further for (int i=0; iscanArticle(article, false)) { return; } } if (filter) { //we were passed a filter - so just scan it with that one if (filter->scanArticle(article)) { RssLinkDownloader * curDownload = new RssLinkDownloader(m_core, article.link().prettyURL(), filter); for (int i=0; iscanArticle(article)) { RssLinkDownloader * curDownload = new RssLinkDownloader(m_core, article.link().prettyURL(), acceptFilters.at(i)); for (int i=0; i= 0) { for (int i=0; iarticles().count(); j++) { scanArticle(feeds.at(i)->articles()[j], (RssFilter *)sender()); } } } } void RssFeedManager::testTextChanged() { testText->setPaletteBackgroundColor(TQColor(255, 255, 255)); testTestText->setEnabled(!testText->text().isEmpty()); } void RssFeedManager::testFilter() { RssFilter * curFilter; if (currentRejectFilter<0) { //we're currently testing an acceptFilter curFilter = acceptFilters.at(currentAcceptFilter); } else { //it's a reject filter curFilter = rejectFilters.at(currentRejectFilter); } RssArticle testArticle; testArticle.setTitle(testText->text()); if (curFilter->scanArticle(testArticle, false, false)) { testText->setPaletteBackgroundColor(TQColor(0, 255, 0)); } else { testText->setPaletteBackgroundColor(TQColor(255, 0, 0)); } } void RssFeedManager::setFilterTitle(const TQString& title) { int cursorPos = filterTitle->cursorPosition(); filterTitle->setText(title); filterTitle->setCursorPosition(cursorPos); } void RssFeedManager::setFeedTitle(const TQString& title) { int cursorPos = feedTitle->cursorPosition(); feedTitle->setText(title); feedTitle->setCursorPosition(cursorPos); } }