diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 02:37:40 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 02:37:40 +0000 |
commit | 9ad5c7b5e23b4940e7a3ea3ca3a6fb77e6a8fab0 (patch) | |
tree | d088b5210e77d9fa91d954d8550e00e372b47378 /plugins/webinterface/webinterfaceplugin.cpp | |
download | ktorrent-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/webinterface/webinterfaceplugin.cpp')
-rw-r--r-- | plugins/webinterface/webinterfaceplugin.cpp | 128 |
1 files changed, 128 insertions, 0 deletions
diff --git a/plugins/webinterface/webinterfaceplugin.cpp b/plugins/webinterface/webinterfaceplugin.cpp new file mode 100644 index 0000000..bce4115 --- /dev/null +++ b/plugins/webinterface/webinterfaceplugin.cpp @@ -0,0 +1,128 @@ + /*************************************************************************** + * Copyright (C) 2006 by Diego R. Brogna * + * dierbro@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 <kglobal.h> + +#include <util/log.h> +#include <interfaces/coreinterface.h> +#include <interfaces/guiinterface.h> +#include <interfaces/torrentinterface.h> +#include <torrent/globals.h> +#include <net/portlist.h> +#include "webinterfaceprefpage.h" +#include "webinterfaceplugin.h" +#include "httpserver.h" +#include "webinterfacepluginsettings.h" + +#define NAME "Web Interface" +#define AUTHOR "Diego R. Brogna" +#define EMAIL "dierbro@gmail.com" + +K_EXPORT_COMPONENT_FACTORY(ktwebinterfaceplugin,KGenericFactory<kt::WebInterfacePlugin>("ktwebinterfaceplugin")) + +using namespace bt; +namespace kt +{ + WebInterfacePlugin::WebInterfacePlugin(QObject* parent, const char* name, const QStringList& args) + : Plugin(parent, name, args,NAME,i18n("Web Interface"),AUTHOR,EMAIL,i18n("Allow to control ktorrent through browser"),"toggle_log") + { + http_server = 0; + pref=0; + } + + WebInterfacePlugin::~WebInterfacePlugin() + { + + } + + void WebInterfacePlugin::load() + { + initServer(); + + pref = new WebInterfacePrefPage(this); + getGUI()->addPrefPage(pref); + + } + + void WebInterfacePlugin::unload() + { + if (http_server) + { + bt::Globals::instance().getPortList().removePort(http_server->port(),net::TCP); + delete http_server; + http_server = 0; + } + + getGUI()->removePrefPage(pref); + delete pref; + pref = 0; + } + + void WebInterfacePlugin::initServer() + { + bt::Uint16 port = WebInterfacePluginSettings::port(); + bt::Uint16 i = 0; + + while (i < 10) + { + http_server = new HttpServer(getCore(),port + i); + if (!http_server->ok()) + { + delete http_server; + http_server = 0; + } + else + break; + i++; + } + + if (http_server) + { + if(WebInterfacePluginSettings::forward()) + bt::Globals::instance().getPortList().addNewPort(http_server->port(),net::TCP,true); + Out(SYS_WEB|LOG_ALL) << "Web server listen on port "<< http_server->port() << endl; + } + else + { + Out(SYS_WEB|LOG_ALL) << "Cannot bind to port " << port <<" or the 10 following ports. WebInterface plugin cannot be loaded." << endl; + return; + } + } + + void WebInterfacePlugin::preferencesUpdated() + { + if( http_server && http_server->port() != WebInterfacePluginSettings::port()) + { + //stop and delete http server + bt::Globals::instance().getPortList().removePort(http_server->port(),net::TCP); + delete http_server; + http_server = 0; + // reinitialize server + initServer(); + } + } + + bool WebInterfacePlugin::versionCheck(const QString & version) const + { + return version == KT_VERSION_MACRO; + } +} + +#include "webinterfaceplugin.moc" |