1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
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(TQObject* tqparent, const char* name, const TQStringList& args)
: Plugin(tqparent, 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 TQString & version) const
{
return version == KT_VERSION_MACRO;
}
}
#include "webinterfaceplugin.moc"
|