2 * Bittorrent Client using Qt and libtorrent.
3 * Copyright (C) 2015 Vladimir Golovnev <glassez@yandex.ru>
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * In addition, as a special exception, the copyright holders give permission to
20 * link this program with the OpenSSL project's "OpenSSL" library (or with
21 * modified versions of it that use the same license as the "OpenSSL" library),
22 * and distribute the linked executables. You must obey the GNU General Public
23 * License in all respects for all of the code used other than "OpenSSL". If you
24 * modify file(s), you may extend this exception to your version of the file(s),
25 * but you are not obligated to do so. If you do not wish to do so, delete this
26 * exception statement from your version.
33 #include "base/http/server.h"
34 #include "base/logger.h"
35 #include "base/net/dnsupdater.h"
36 #include "base/net/portforwarder.h"
37 #include "base/preferences.h"
38 #include "base/utils/net.h"
39 #include "webapplication.h"
46 connect(Preferences::instance(), &Preferences::changed
, this, &WebUI::configure
);
49 void WebUI::configure()
51 m_isErrored
= false; // clear previous error state
53 Logger
*const logger
= Logger::instance();
54 Preferences
*const pref
= Preferences::instance();
56 const quint16 oldPort
= m_port
;
57 m_port
= pref
->getWebUiPort();
59 if (pref
->isWebUiEnabled())
62 if (pref
->useUPnPForWebUIPort())
64 if (m_port
!= oldPort
)
66 Net::PortForwarder::instance()->deletePort(oldPort
);
67 Net::PortForwarder::instance()->addPort(m_port
);
72 Net::PortForwarder::instance()->deletePort(oldPort
);
76 const QString serverAddressString
= pref
->getWebUiAddress();
79 m_webapp
= new WebApplication(this);
80 m_httpServer
= new Http::Server(m_webapp
, this);
84 if ((m_httpServer
->serverAddress().toString() != serverAddressString
)
85 || (m_httpServer
->serverPort() != m_port
))
86 m_httpServer
->close();
89 if (pref
->isWebUiHttpsEnabled())
91 const auto readData
= [](const QString
&path
) -> QByteArray
94 if (!file
.open(QIODevice::ReadOnly
))
96 return file
.read(Utils::Net::MAX_SSL_FILE_SIZE
);
98 const QByteArray cert
= readData(pref
->getWebUIHttpsCertificatePath());
99 const QByteArray key
= readData(pref
->getWebUIHttpsKeyPath());
101 const bool success
= m_httpServer
->setupHttps(cert
, key
);
103 logger
->addMessage(tr("Web UI: HTTPS setup successful"));
105 logger
->addMessage(tr("Web UI: HTTPS setup failed, fallback to HTTP"), Log::CRITICAL
);
109 m_httpServer
->disableHttps();
112 if (!m_httpServer
->isListening())
114 const auto address
= (serverAddressString
== "*" || serverAddressString
.isEmpty())
115 ? QHostAddress::Any
: QHostAddress(serverAddressString
);
116 bool success
= m_httpServer
->listen(address
, m_port
);
119 logger
->addMessage(tr("Web UI: Now listening on IP: %1, port: %2").arg(serverAddressString
).arg(m_port
));
123 const QString errorMsg
= tr("Web UI: Unable to bind to IP: %1, port: %2. Reason: %3")
124 .arg(serverAddressString
).arg(m_port
).arg(m_httpServer
->errorString());
125 logger
->addMessage(errorMsg
, Log::CRITICAL
);
126 qCritical() << errorMsg
;
134 if (pref
->isDynDNSEnabled())
137 m_dnsUpdater
= new Net::DNSUpdater(this);
139 m_dnsUpdater
->updateCredentials();
148 Net::PortForwarder::instance()->deletePort(oldPort
);
156 bool WebUI::isErrored() const