2014-11-01 19:26:05 +01:00
|
|
|
/* This file is part of Clementine.
|
2014-11-02 19:36:21 +01:00
|
|
|
Copyright 2010, David Sansome <davidsansome@gmail.com>
|
|
|
|
Copyright 2014, Krzysztof Sobiecki <sobkas@gmail.com>
|
2014-11-01 19:26:05 +01:00
|
|
|
Copyright 2014, John Maguire <john.maguire@gmail.com>
|
|
|
|
|
|
|
|
Clementine 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CORE_NETWORKPROXYFACTORY_H_
|
|
|
|
#define CORE_NETWORKPROXYFACTORY_H_
|
2010-12-25 18:25:29 +01:00
|
|
|
|
|
|
|
#include <QMutex>
|
|
|
|
#include <QNetworkProxyFactory>
|
|
|
|
#include <QUrl>
|
|
|
|
|
|
|
|
class NetworkProxyFactory : public QNetworkProxyFactory {
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
2010-12-25 18:25:29 +01:00
|
|
|
// These values are persisted
|
2014-02-07 16:34:20 +01:00
|
|
|
enum Mode { Mode_System = 0, Mode_Direct = 1, Mode_Manual = 2, };
|
2010-12-25 18:25:29 +01:00
|
|
|
|
|
|
|
static NetworkProxyFactory* Instance();
|
|
|
|
static const char* kSettingsGroup;
|
|
|
|
|
|
|
|
// These methods are thread-safe
|
|
|
|
void ReloadSettings();
|
|
|
|
QList<QNetworkProxy> queryProxy(const QNetworkProxyQuery& query);
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2010-12-25 18:25:29 +01:00
|
|
|
NetworkProxyFactory();
|
|
|
|
|
|
|
|
static NetworkProxyFactory* sInstance;
|
|
|
|
|
|
|
|
QMutex mutex_;
|
|
|
|
|
|
|
|
Mode mode_;
|
|
|
|
QNetworkProxy::ProxyType type_;
|
|
|
|
QString hostname_;
|
|
|
|
int port_;
|
|
|
|
bool use_authentication_;
|
|
|
|
QString username_;
|
|
|
|
QString password_;
|
|
|
|
|
|
|
|
#ifdef Q_OS_LINUX
|
|
|
|
QUrl env_url_;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2014-11-01 19:26:05 +01:00
|
|
|
#endif // CORE_NETWORKPROXYFACTORY_H_
|