mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-08 16:17:24 +03:00
c6b772da11
`SettingsStorage` methods require `QString` so make `SettingValue` follow it. `Path::operator+` can use `QStringView` to accept wider audience.
158 lines
5.5 KiB
C++
158 lines
5.5 KiB
C++
/*
|
|
* Bittorrent Client using Qt and libtorrent.
|
|
* Copyright (C) 2016 Vladimir Golovnev <glassez@yandex.ru>
|
|
*
|
|
* 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.
|
|
*
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
* and distribute the linked executables. You must obey the GNU General Public
|
|
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
* modify file(s), you may extend this exception to your version of the file(s),
|
|
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
* exception statement from your version.
|
|
*/
|
|
|
|
#include "proxyconfigurationmanager.h"
|
|
|
|
#define SETTINGS_KEY(name) (u"Network/Proxy/" name)
|
|
|
|
bool Net::operator==(const ProxyConfiguration &left, const ProxyConfiguration &right)
|
|
{
|
|
return (left.type == right.type)
|
|
&& (left.ip == right.ip)
|
|
&& (left.port == right.port)
|
|
&& (left.username == right.username)
|
|
&& (left.password == right.password);
|
|
}
|
|
|
|
bool Net::operator!=(const ProxyConfiguration &left, const ProxyConfiguration &right)
|
|
{
|
|
return !(left == right);
|
|
}
|
|
|
|
using namespace Net;
|
|
|
|
ProxyConfigurationManager *ProxyConfigurationManager::m_instance = nullptr;
|
|
|
|
ProxyConfigurationManager::ProxyConfigurationManager(QObject *parent)
|
|
: QObject {parent}
|
|
, m_storeProxyOnlyForTorrents {SETTINGS_KEY(u"OnlyForTorrents"_qs)}
|
|
, m_storeProxyType {SETTINGS_KEY(u"Type"_qs)}
|
|
, m_storeProxyIP {SETTINGS_KEY(u"IP"_qs)}
|
|
, m_storeProxyPort {SETTINGS_KEY(u"Port"_qs)}
|
|
, m_storeProxyUsername {SETTINGS_KEY(u"Username"_qs)}
|
|
, m_storeProxyPassword {SETTINGS_KEY(u"Password"_qs)}
|
|
{
|
|
m_config.type = m_storeProxyType.get(ProxyType::None);
|
|
if ((m_config.type < ProxyType::None) || (m_config.type > ProxyType::SOCKS4))
|
|
m_config.type = ProxyType::None;
|
|
m_config.ip = m_storeProxyIP.get(u"0.0.0.0"_qs);
|
|
m_config.port = m_storeProxyPort.get(8080);
|
|
m_config.username = m_storeProxyUsername;
|
|
m_config.password = m_storeProxyPassword;
|
|
configureProxy();
|
|
}
|
|
|
|
void ProxyConfigurationManager::initInstance()
|
|
{
|
|
if (!m_instance)
|
|
m_instance = new ProxyConfigurationManager;
|
|
}
|
|
|
|
void ProxyConfigurationManager::freeInstance()
|
|
{
|
|
delete m_instance;
|
|
m_instance = nullptr;
|
|
}
|
|
|
|
ProxyConfigurationManager *ProxyConfigurationManager::instance()
|
|
{
|
|
return m_instance;
|
|
}
|
|
|
|
ProxyConfiguration ProxyConfigurationManager::proxyConfiguration() const
|
|
{
|
|
return m_config;
|
|
}
|
|
|
|
void ProxyConfigurationManager::setProxyConfiguration(const ProxyConfiguration &config)
|
|
{
|
|
if (m_config != config)
|
|
{
|
|
m_config = config;
|
|
m_storeProxyType = config.type;
|
|
m_storeProxyIP = config.ip;
|
|
m_storeProxyPort = config.port;
|
|
m_storeProxyUsername = config.username;
|
|
m_storeProxyPassword = config.password;
|
|
configureProxy();
|
|
|
|
emit proxyConfigurationChanged();
|
|
}
|
|
}
|
|
|
|
bool ProxyConfigurationManager::isProxyOnlyForTorrents() const
|
|
{
|
|
return m_storeProxyOnlyForTorrents || (m_config.type == ProxyType::SOCKS4);
|
|
}
|
|
|
|
void ProxyConfigurationManager::setProxyOnlyForTorrents(const bool onlyForTorrents)
|
|
{
|
|
m_storeProxyOnlyForTorrents = onlyForTorrents;
|
|
}
|
|
|
|
bool ProxyConfigurationManager::isAuthenticationRequired() const
|
|
{
|
|
return m_config.type == ProxyType::SOCKS5_PW
|
|
|| m_config.type == ProxyType::HTTP_PW;
|
|
}
|
|
|
|
void ProxyConfigurationManager::configureProxy()
|
|
{
|
|
// Define environment variables for urllib in search engine plugins
|
|
QString proxyStrHTTP, proxyStrSOCK;
|
|
if (!isProxyOnlyForTorrents())
|
|
{
|
|
switch (m_config.type)
|
|
{
|
|
case ProxyType::HTTP_PW:
|
|
proxyStrHTTP = u"http://%1:%2@%3:%4"_qs.arg(m_config.username
|
|
, m_config.password, m_config.ip, QString::number(m_config.port));
|
|
break;
|
|
case ProxyType::HTTP:
|
|
proxyStrHTTP = u"http://%1:%2"_qs.arg(m_config.ip, QString::number(m_config.port));
|
|
break;
|
|
case ProxyType::SOCKS5:
|
|
proxyStrSOCK = u"%1:%2"_qs.arg(m_config.ip, QString::number(m_config.port));
|
|
break;
|
|
case ProxyType::SOCKS5_PW:
|
|
proxyStrSOCK = u"%1:%2@%3:%4"_qs.arg(m_config.username
|
|
, m_config.password, m_config.ip, QString::number(m_config.port));
|
|
break;
|
|
default:
|
|
qDebug("Disabling HTTP communications proxy");
|
|
}
|
|
|
|
qDebug("HTTP communications proxy string: %s"
|
|
, qUtf8Printable((m_config.type == ProxyType::SOCKS5) || (m_config.type == ProxyType::SOCKS5_PW)
|
|
? proxyStrSOCK : proxyStrHTTP));
|
|
}
|
|
|
|
qputenv("http_proxy", proxyStrHTTP.toLocal8Bit());
|
|
qputenv("https_proxy", proxyStrHTTP.toLocal8Bit());
|
|
qputenv("sock_proxy", proxyStrSOCK.toLocal8Bit());
|
|
}
|