diff options
Diffstat (limited to 'src/plugins/scanfolder/scanfolderplugin.cpp')
-rw-r--r-- | src/plugins/scanfolder/scanfolderplugin.cpp | 189 |
1 files changed, 189 insertions, 0 deletions
diff --git a/src/plugins/scanfolder/scanfolderplugin.cpp b/src/plugins/scanfolder/scanfolderplugin.cpp new file mode 100644 index 0000000..58e1bea --- /dev/null +++ b/src/plugins/scanfolder/scanfolderplugin.cpp @@ -0,0 +1,189 @@ +/*************************************************************************** + * Copyright (C) 2006 by Ivan Vasić * + * ivasic@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 <kgenericfactory.h> + +#include <interfaces/coreinterface.h> +#include <interfaces/guiinterface.h> +#include <interfaces/plugin.h> +#include <util/constants.h> +#include <util/log.h> + +#include <tqstring.h> +#include <tqfile.h> + +#include <tdemessagebox.h> +#include <tdelocale.h> +#include <tdeglobal.h> + +#include "scanfolder.h" +#include "scanfolderplugin.h" +#include "scanfolderprefpage.h" +#include "scanfolderpluginsettings.h" + +using namespace bt; + +K_EXPORT_COMPONENT_FACTORY(ktscanfolderplugin,KGenericFactory<kt::ScanFolderPlugin>("scanfolderplugin")) + +namespace kt +{ + const TQString NAME = "Scan Folder"; + const TQString AUTHOR = "Ivan Vasic"; + const TQString EMAIL = "ivasic@gmail.com"; + const TQString DESCRIPTION = i18n("Automatically scans directories for torrent files and loads them."); + + ScanFolderPlugin::ScanFolderPlugin(TQObject* parent, const char* name, const TQStringList& args) + : Plugin(parent, name, args,NAME,i18n("Scan Folder"),AUTHOR,EMAIL,DESCRIPTION,"view_sidetree") + { +// setXMLFile("ktscanfolderpluginui.rc"); + m_sf1 = 0; + m_sf2 = 0; + m_sf3 = 0; + } + + + ScanFolderPlugin::~ScanFolderPlugin() + { + } + + void ScanFolderPlugin::load() + { + pref = new ScanFolderPrefPage(this); + getGUI()->addPrefPage(pref); + updateScanFolders(); + } + + void ScanFolderPlugin::unload() + { + getGUI()->removePrefPage(pref); + delete pref; + pref = 0; + + if(m_sf1) + delete m_sf1; + m_sf1 = 0; + + if(m_sf2) + delete m_sf2; + m_sf2 = 0; + + if(m_sf3) + delete m_sf3; + m_sf3 = 0; + } + + void ScanFolderPlugin::updateScanFolders() + { + TQString sfPath1 = ScanFolderPluginSettings::folder1(); + TQString sfPath2 = ScanFolderPluginSettings::folder2(); + TQString sfPath3 = ScanFolderPluginSettings::folder3(); + + bool valid1 = TQFile::exists(sfPath1); + bool valid2 = TQFile::exists(sfPath2); + bool valid3 = TQFile::exists(sfPath3); + + bool usesf1 = ScanFolderPluginSettings::useFolder1() && valid1; + bool usesf2 = ScanFolderPluginSettings::useFolder2() && valid2; + bool usesf3 = ScanFolderPluginSettings::useFolder3() && valid3; + + bool silently = ScanFolderPluginSettings::openSilently(); + + LoadedTorrentAction action; + + if(ScanFolderPluginSettings::actionDelete()) + action = deleteAction; + else if(ScanFolderPluginSettings::actionMove()) + action = moveAction; + else + action = defaultAction; + + + if(usesf1) + { + if(!m_sf1) + m_sf1 = new ScanFolder(getCore(), sfPath1, action, silently); + else + { + m_sf1->setFolderUrl(sfPath1); + m_sf1->setLoadedAction(action); + m_sf1->setOpenSilently(silently); + } + } + else + { + if(m_sf1) + delete m_sf1; + m_sf1 = 0; + } + + if(usesf2) + { + if(!m_sf2) + m_sf2 = new ScanFolder(getCore(), sfPath1, action, silently); + else + { + m_sf2->setFolderUrl(sfPath1); + m_sf2->setLoadedAction(action); + m_sf2->setOpenSilently(silently); + } + } + else + { + if(m_sf2) + delete m_sf2; + m_sf2 = 0; + } + + if(usesf3) + { + if(!m_sf3) + m_sf3 = new ScanFolder(getCore(), sfPath1, action, silently); + else + { + m_sf3->setFolderUrl(sfPath1); + m_sf3->setLoadedAction(action); + m_sf3->setOpenSilently(silently); + } + } + else + { + if(m_sf3) + delete m_sf3; + m_sf3 = 0; + } + + //update config file + if(!valid1) + ScanFolderPluginSettings::setUseFolder1(false); + if(!valid2) + ScanFolderPluginSettings::setUseFolder2(false); + if(!valid3) + ScanFolderPluginSettings::setUseFolder3(false); + + ScanFolderPluginSettings::writeConfig(); + + } + + bool ScanFolderPlugin::versionCheck(const TQString & version) const + { + return version == KT_VERSION_MACRO; + } +} + +#include "scanfolderplugin.moc" |