qBittorrent/src/preferences.h

1031 lines
33 KiB
C
Raw Normal View History

/*
* Bittorrent Client using Qt4 and libtorrent.
* Copyright (C) 2006 Christophe Dumez
*
* 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.
*
* Contact : chris@qbittorrent.org
*/
#ifndef PREFERENCES_H
#define PREFERENCES_H
2009-12-10 22:19:19 +03:00
#include <QCryptographicHash>
#include <QPair>
#include <QDir>
#include <QTime>
2010-06-05 22:59:05 +04:00
#include <QList>
#include <libtorrent/version.hpp>
2010-05-31 01:45:55 +04:00
#ifndef DISABLE_GUI
#include <QApplication>
#else
#include <QCoreApplication>
#endif
2010-06-03 02:31:49 +04:00
#ifdef Q_WS_WIN
#include <QDesktopServices>
#endif
2010-06-05 22:59:05 +04:00
#include "misc.h"
#include "qinisettings.h"
2010-06-05 22:59:05 +04:00
#define QBT_REALM "Web UI Access"
enum scheduler_days { EVERY_DAY, WEEK_DAYS, WEEK_ENDS, MON, TUE, WED, THU, FRI, SAT, SUN };
enum maxRatioAction {PAUSE_ACTION, REMOVE_ACTION};
namespace Proxy {
enum ProxyType {HTTP=1, SOCKS5=2, HTTP_PW=3, SOCKS5_PW=4, SOCKS4=5};
}
class Preferences : public QIniSettings {
Q_DISABLE_COPY(Preferences);
public:
Preferences() : QIniSettings("qBittorrent", "qBittorrent") {}
public:
// General options
QString getLocale() const {
return value(QString::fromUtf8("Preferences/General/Locale"), "en_GB").toString();
}
void setLocale(const QString &locale) {
setValue(QString::fromUtf8("Preferences/General/Locale"), locale);
}
QString getStyle() const {
return value(QString::fromUtf8("Preferences/General/Style"), "").toString();
}
void setStyle(const QString &style) {
setValue(QString::fromUtf8("Preferences/General/Style"), style);
}
bool useProgramNotification() const {
return value(QString::fromUtf8("Preferences/General/ProgramNotification"), true).toBool();
}
void useProgramNotification(bool use) {
setValue(QString::fromUtf8("Preferences/General/ProgramNotification"), use);
2010-01-31 20:30:17 +03:00
}
bool deleteTorrentFilesAsDefault() const {
return value(QString::fromUtf8("Preferences/General/DeleteTorrentsFilesAsDefault"), false).toBool();
}
void setDeleteTorrentFilesAsDefault(bool del) {
setValue(QString::fromUtf8("Preferences/General/DeleteTorrentsFilesAsDefault"), del);
}
void setConfirmOnExit(bool confirm) {
setValue(QString::fromUtf8("Preferences/General/ExitConfirm"), confirm);
}
bool confirmOnExit() const {
return value(QString::fromUtf8("Preferences/General/ExitConfirm"), true).toBool();
}
void showSpeedInTitleBar(bool show) {
setValue(QString::fromUtf8("Preferences/General/SpeedInTitleBar"), show);
}
bool speedInTitleBar() const {
return value(QString::fromUtf8("Preferences/General/SpeedInTitleBar"), false).toBool();
2010-06-21 19:53:42 +04:00
}
bool useAlternatingRowColors() const {
return value(QString::fromUtf8("Preferences/General/AlternatingRowColors"), true).toBool();
}
void setAlternatingRowColors(bool b) {
setValue("Preferences/General/AlternatingRowColors", b);
2010-06-21 22:32:01 +04:00
}
bool systrayIntegration() const {
return value(QString::fromUtf8("Preferences/General/SystrayEnabled"), true).toBool();
}
void setSystrayIntegration(bool enabled) {
setValue(QString::fromUtf8("Preferences/General/SystrayEnabled"), enabled);
}
void setToolbarDisplayed(bool displayed) {
setValue(QString::fromUtf8("Preferences/General/ToolbarDisplayed"), displayed);
}
bool isToolbarDisplayed() const {
return value(QString::fromUtf8("Preferences/General/ToolbarDisplayed"), true).toBool();
2009-11-18 21:45:06 +03:00
}
bool minimizeToTray() const {
return value(QString::fromUtf8("Preferences/General/MinimizeToTray"), false).toBool();
2010-06-21 22:32:01 +04:00
}
void setMinimizeToTray(bool b) {
setValue("Preferences/General/MinimizeToTray", b);
}
bool closeToTray() const {
return value(QString::fromUtf8("Preferences/General/CloseToTray"), false).toBool();
}
void setCloseToTray(bool b) {
setValue("Preferences/General/CloseToTray", b);
}
bool startMinimized() const {
return value(QString::fromUtf8("Preferences/General/StartMinimized"), false).toBool();
}
void setStartMinimized(bool b) {
setValue("Preferences/General/StartMinimized", b);
}
bool isSlashScreenDisabled() const {
return value(QString::fromUtf8("Preferences/General/NoSplashScreen"), false).toBool();
}
void setSplashScreenDisabled(bool b) {
setValue("Preferences/General/NoSplashScreen", b);
}
// Downloads
QString getSavePath() const {
2010-06-03 02:31:49 +04:00
#ifdef Q_WS_WIN
return value(QString::fromUtf8("Preferences/Downloads/SavePath"),
2010-06-03 02:31:49 +04:00
QDir(QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation)).absoluteFilePath("Downloads")).toString();
#else
return value(QString::fromUtf8("Preferences/Downloads/SavePath"), QDir::home().absoluteFilePath("qBT_dir")).toString();
2010-06-03 02:31:49 +04:00
#endif
}
void setSavePath(const QString &save_path) {
setValue(QString::fromUtf8("Preferences/Downloads/SavePath"), save_path);
}
bool isTempPathEnabled() const {
return value(QString::fromUtf8("Preferences/Downloads/TempPathEnabled"), false).toBool();
}
void setTempPathEnabled(bool enabled) {
setValue(QString::fromUtf8("Preferences/Downloads/TempPathEnabled"), enabled);
}
QString getTempPath() const {
const QString temp = QDir(getSavePath()).absoluteFilePath("temp");
return value(QString::fromUtf8("Preferences/Downloads/TempPath"), temp).toString();
}
void setTempPath(const QString &path) {
setValue(QString::fromUtf8("Preferences/Downloads/TempPath"), path);
}
#if LIBTORRENT_VERSION_MINOR > 14
bool useIncompleteFilesExtension() const {
return value(QString::fromUtf8("Preferences/Downloads/UseIncompleteExtension"), false).toBool();
}
void useIncompleteFilesExtension(bool enabled) {
setValue(QString::fromUtf8("Preferences/Downloads/UseIncompleteExtension"), enabled);
}
#endif
bool appendTorrentLabel() const {
return value(QString::fromUtf8("Preferences/Downloads/AppendLabel"), false).toBool();
}
void setAppendTorrentLabel(bool b) {
setValue("Preferences/Downloads/AppendLabel", b);
}
bool preAllocateAllFiles() const {
return value(QString::fromUtf8("Preferences/Downloads/PreAllocation"), false).toBool();
}
void preAllocateAllFiles(bool enabled) {
return setValue(QString::fromUtf8("Preferences/Downloads/PreAllocation"), enabled);
}
bool useAdditionDialog() const {
return value(QString::fromUtf8("Preferences/Downloads/AdditionDialog"), false).toBool();
}
void useAdditionDialog(bool b) {
setValue("Preferences/Downloads/AdditionDialog", b);
}
bool addTorrentsInPause() const {
return value(QString::fromUtf8("Preferences/Downloads/StartInPause"), false).toBool();
}
void addTorrentsInPause(bool b) {
setValue("Preferences/Downloads/StartInPause", b);
}
QStringList getScanDirs() const {
return value(QString::fromUtf8("Preferences/Downloads/ScanDirs"), QStringList()).toStringList();
}
// This must be called somewhere with data from the model
void setScanDirs(const QStringList &dirs) {
setValue(QString::fromUtf8("Preferences/Downloads/ScanDirs"), dirs);
}
QList<bool> getDownloadInScanDirs() const {
return misc::boolListfromStringList(value(QString::fromUtf8("Preferences/Downloads/DownloadInScanDirs")).toStringList());
}
void setDownloadInScanDirs(const QList<bool> &list) {
setValue(QString::fromUtf8("Preferences/Downloads/DownloadInScanDirs"), misc::toStringList(list));
}
bool isTorrentExportEnabled() const {
return !value(QString::fromUtf8("Preferences/Downloads/TorrentExport"), QString()).toString().isEmpty();
}
QString getExportDir() const {
return value(QString::fromUtf8("Preferences/Downloads/TorrentExport"), QString()).toString();
}
void setExportDir(QString path) {
path = path.trimmed();
if(path.isEmpty())
path = QString();
setValue(QString::fromUtf8("Preferences/Downloads/TorrentExport"), path);
}
bool isMailNotificationEnabled() const {
return value(QString::fromUtf8("Preferences/MailNotification/enabled"), false).toBool();
}
void setMailNotificationEnabled(bool enabled) {
setValue(QString::fromUtf8("Preferences/MailNotification/enabled"), enabled);
}
QString getMailNotificationEmail() const {
return value(QString::fromUtf8("Preferences/MailNotification/email"), "").toString();
}
void setMailNotificationEmail(const QString &mail) {
setValue(QString::fromUtf8("Preferences/MailNotification/email"), mail);
}
QString getMailNotificationSMTP() const {
return value(QString::fromUtf8("Preferences/MailNotification/smtp_server"), "smtp.changeme.com").toString();
}
void setMailNotificationSMTP(const QString &smtp_server) {
setValue(QString::fromUtf8("Preferences/MailNotification/smtp_server"), smtp_server);
}
int getActionOnDblClOnTorrentDl() const {
return value(QString::fromUtf8("Preferences/Downloads/DblClOnTorDl"), 0).toInt();
}
void setActionOnDblClOnTorrentDl(int act) {
setValue("Preferences/Downloads/DblClOnTorDl", act);
}
int getActionOnDblClOnTorrentFn() const {
return value(QString::fromUtf8("Preferences/Downloads/DblClOnTorFn"), 1).toInt();
}
void setActionOnDblClOnTorrentFn(int act) {
setValue("Preferences/Downloads/DblClOnTorFn", act);
}
// Connection options
int getSessionPort() const {
return value(QString::fromUtf8("Preferences/Connection/PortRangeMin"), 6881).toInt();
}
void setSessionPort(int port) {
setValue(QString::fromUtf8("Preferences/Connection/PortRangeMin"), port);
}
bool isUPnPEnabled() const {
return value(QString::fromUtf8("Preferences/Connection/UPnP"), true).toBool();
}
void setUPnPEnabled(bool enabled) {
setValue(QString::fromUtf8("Preferences/Connection/UPnP"), enabled);
}
bool isNATPMPEnabled() const {
return value(QString::fromUtf8("Preferences/Connection/NAT-PMP"), true).toBool();
}
void setNATPMPEnabled(bool enabled) {
setValue(QString::fromUtf8("Preferences/Connection/NAT-PMP"), enabled);
}
int getGlobalDownloadLimit() const {
return value(QString::fromUtf8("Preferences/Connection/GlobalDLLimit"), -1).toInt();
}
void setGlobalDownloadLimit(int limit) {
if(limit <= 0) limit = -1;
setValue("Preferences/Connection/GlobalDLLimit", limit);
}
int getGlobalUploadLimit() const {
return value(QString::fromUtf8("Preferences/Connection/GlobalUPLimit"), 50).toInt();
}
void setGlobalUploadLimit(int limit) {
if(limit <= 0) limit = -1;
setValue("Preferences/Connection/GlobalUPLimit", limit);
}
int getAltGlobalDownloadLimit() const {
int ret = value(QString::fromUtf8("Preferences/Connection/GlobalDLLimitAlt"), 10).toInt();
if(ret <= 0)
ret = 10;
return ret;
}
void setAltGlobalDownloadLimit(int limit) {
if(limit <= 0) limit = -1;
setValue("Preferences/Connection/GlobalDLLimitAlt", limit);
}
int getAltGlobalUploadLimit() const {
int ret = value(QString::fromUtf8("Preferences/Connection/GlobalUPLimitAlt"), 10).toInt();
if(ret <= 0)
ret = 10;
return ret;
}
void setAltGlobalUploadLimit(int limit) {
if(limit <= 0) limit = -1;
setValue("Preferences/Connection/GlobalUPLimitAlt", limit);
}
bool isAltBandwidthEnabled() const {
return value("Preferences/Connection/alt_speeds_on", false).toBool();
}
void setAltBandwidthEnabled(bool enabled) {
setValue("Preferences/Connection/alt_speeds_on", enabled);
}
void setSchedulerEnabled(bool enabled) {
setValue(QString::fromUtf8("Preferences/Scheduler/Enabled"), enabled);
}
bool isSchedulerEnabled() const {
return value(QString::fromUtf8("Preferences/Scheduler/Enabled"), false).toBool();
}
QTime getSchedulerStartTime() const {
return value(QString::fromUtf8("Preferences/Scheduler/start_time"), QTime(8,0)).toTime();
}
void setSchedulerStartTime(const QTime &time) {
setValue(QString::fromUtf8("Preferences/Scheduler/start_time"), time);
}
QTime getSchedulerEndTime() const {
return value(QString::fromUtf8("Preferences/Scheduler/end_time"), QTime(20,0)).toTime();
}
void setSchedulerEndTime(const QTime &time) {
setValue(QString::fromUtf8("Preferences/Scheduler/end_time"), time);
}
scheduler_days getSchedulerDays() const {
return (scheduler_days)value(QString::fromUtf8("Preferences/Scheduler/days"), EVERY_DAY).toInt();
}
void setSchedulerDays(scheduler_days days) {
setValue(QString::fromUtf8("Preferences/Scheduler/days"), (int)days);
}
// Proxy options
bool isHTTPProxyEnabled() const {
return value(QString::fromUtf8("Preferences/Connection/HTTPProxyType"), 0).toInt() > 0;
}
bool isHTTPProxyAuthEnabled() const {
return value(QString::fromUtf8("Preferences/Connection/HTTPProxy/Authentication"), false).toBool();
}
void setHTTPProxyAuthEnabled(bool enabled) {
setValue(QString::fromUtf8("Preferences/Connection/HTTPProxy/Authentication"), enabled);
}
QString getHTTPProxyIp() const {
return value(QString::fromUtf8("Preferences/Connection/HTTPProxy/IP"), "0.0.0.0").toString();
}
void setHTTPProxyIp(const QString &ip) {
setValue(QString::fromUtf8("Preferences/Connection/HTTPProxy/IP"), ip);
}
unsigned short getHTTPProxyPort() const {
return value(QString::fromUtf8("Preferences/Connection/HTTPProxy/Port"), 8080).toInt();
}
void setHTTPProxyPort(unsigned short port) {
setValue(QString::fromUtf8("Preferences/Connection/HTTPProxy/Port"), port);
}
QString getHTTPProxyUsername() const {
return value(QString::fromUtf8("Preferences/Connection/HTTPProxy/Username"), QString()).toString();
}
void setHTTPProxyUsername(const QString &username) {
setValue(QString::fromUtf8("Preferences/Connection/HTTPProxy/Username"), username);
}
QString getHTTPProxyPassword() const {
return value(QString::fromUtf8("Preferences/Connection/HTTPProxy/Password"), QString()).toString();
}
void setHTTPProxyPassword(const QString &password) {
setValue(QString::fromUtf8("Preferences/Connection/HTTPProxy/Password"), password);
}
int getHTTPProxyType() const {
return value(QString::fromUtf8("Preferences/Connection/HTTPProxyType"), 0).toInt();
}
void setHTTPProxyType(int type) {
setValue(QString::fromUtf8("Preferences/Connection/HTTPProxyType"), type);
}
bool isPeerProxyEnabled() const {
return value(QString::fromUtf8("Preferences/Connection/ProxyType"), 0).toInt() > 0;
}
bool isPeerProxyAuthEnabled() const {
return value(QString::fromUtf8("Preferences/Connection/Proxy/Authentication"), false).toBool();
}
void setPeerProxyAuthEnabled(bool enabled) {
setValue(QString::fromUtf8("Preferences/Connection/Proxy/Authentication"), enabled);
}
QString getPeerProxyIp() const {
return value(QString::fromUtf8("Preferences/Connection/Proxy/IP"), "0.0.0.0").toString();
}
void setPeerProxyIp(const QString &ip) {
setValue(QString::fromUtf8("Preferences/Connection/Proxy/IP"), ip);
}
unsigned short getPeerProxyPort() const {
return value(QString::fromUtf8("Preferences/Connection/Proxy/Port"), 8080).toInt();
}
void setPeerProxyPort(unsigned short port) {
setValue(QString::fromUtf8("Preferences/Connection/Proxy/Port"), port);
}
QString getPeerProxyUsername() const {
return value(QString::fromUtf8("Preferences/Connection/Proxy/Username"), QString()).toString();
}
void setPeerProxyUsername(const QString &username) {
setValue(QString::fromUtf8("Preferences/Connection/Proxy/Username"), username);
}
QString getPeerProxyPassword() const {
return value(QString::fromUtf8("Preferences/Connection/Proxy/Password"), QString()).toString();
}
void setPeerProxyPassword(const QString &password) {
setValue(QString::fromUtf8("Preferences/Connection/Proxy/Password"), password);
}
int getPeerProxyType() const {
return value(QString::fromUtf8("Preferences/Connection/ProxyType"), 0).toInt();
}
void setPeerProxyType(int type) {
setValue(QString::fromUtf8("Preferences/Connection/ProxyType"), type);
}
// Bittorrent options
int getMaxConnecs() const {
return value(QString::fromUtf8("Preferences/Bittorrent/MaxConnecs"), 500).toInt();
}
void setMaxConnecs(int val) {
if(val <= 0) val = -1;
setValue(QString::fromUtf8("Preferences/Bittorrent/MaxConnecs"), val);
}
int getMaxConnecsPerTorrent() const {
return value(QString::fromUtf8("Preferences/Bittorrent/MaxConnecsPerTorrent"), 100).toInt();
}
void setMaxConnecsPerTorrent(int val) {
if(val <= 0) val = -1;
setValue(QString::fromUtf8("Preferences/Bittorrent/MaxConnecsPerTorrent"), val);
}
int getMaxUploadsPerTorrent() const {
return value(QString::fromUtf8("Preferences/Bittorrent/MaxUploadsPerTorrent"), 4).toInt();
}
void setMaxUploadsPerTorrent(int val) {
if(val <= 0) val = -1;
setValue(QString::fromUtf8("Preferences/Bittorrent/MaxUploadsPerTorrent"), val);
}
bool isDHTEnabled() const {
return value(QString::fromUtf8("Preferences/Bittorrent/DHT"), true).toBool();
}
void setDHTEnabled(bool enabled) {
setValue(QString::fromUtf8("Preferences/Bittorrent/DHT"), enabled);
}
bool isPeXEnabled() const {
return value(QString::fromUtf8("Preferences/Bittorrent/PeX"), true).toBool();
}
void setPeXEnabled(bool enabled) {
setValue(QString::fromUtf8("Preferences/Bittorrent/PeX"), enabled);
}
bool isDHTPortSameAsBT() const {
return value(QString::fromUtf8("Preferences/Bittorrent/sameDHTPortAsBT"), true).toBool();
}
void setDHTPortSameAsBT(bool same) {
setValue(QString::fromUtf8("Preferences/Bittorrent/sameDHTPortAsBT"), same);
2010-03-22 23:34:12 +03:00
}
int getDHTPort() const {
return value(QString::fromUtf8("Preferences/Bittorrent/DHTPort"), 6881).toInt();
}
void setDHTPort(int port) {
setValue(QString::fromUtf8("Preferences/Bittorrent/DHTPort"), port);
2010-03-22 23:34:12 +03:00
}
bool isLSDEnabled() const {
return value(QString::fromUtf8("Preferences/Bittorrent/LSD"), true).toBool();
}
void setLSDEnabled(bool enabled) {
setValue(QString::fromUtf8("Preferences/Bittorrent/LSD"), enabled);
}
int getEncryptionSetting() const {
return value(QString::fromUtf8("Preferences/Bittorrent/Encryption"), 0).toInt();
}
void setEncryptionSetting(int val) {
setValue(QString::fromUtf8("Preferences/Bittorrent/Encryption"), val);
}
float getMaxRatio() const {
return value(QString::fromUtf8("Preferences/Bittorrent/MaxRatio"), -1).toDouble();
}
void setMaxRatio(float ratio) {
setValue(QString::fromUtf8("Preferences/Bittorrent/MaxRatio"), ratio);
}
void setMaxRatioAction(int act) {
setValue(QString::fromUtf8("Preferences/Bittorrent/MaxRatioAction"), act);
}
int getMaxRatioAction() const {
return value(QString::fromUtf8("Preferences/Bittorrent/MaxRatioAction"), PAUSE_ACTION).toInt();
}
// IP Filter
bool isFilteringEnabled() const {
return value(QString::fromUtf8("Preferences/IPFilter/Enabled"), false).toBool();
}
void setFilteringEnabled(bool enabled) {
setValue(QString::fromUtf8("Preferences/IPFilter/Enabled"), enabled);
}
QString getFilter() const {
return value(QString::fromUtf8("Preferences/IPFilter/File"), QString()).toString();
}
void setFilter(const QString &path) {
setValue(QString::fromUtf8("Preferences/IPFilter/File"), path);
}
void banIP(const QString &ip) {
QStringList banned_ips = value(QString::fromUtf8("Preferences/IPFilter/BannedIPs"), QStringList()).toStringList();
if(!banned_ips.contains(ip)) {
banned_ips << ip;
setValue("Preferences/IPFilter/BannedIPs", banned_ips);
}
}
QStringList bannedIPs() const {
return value(QString::fromUtf8("Preferences/IPFilter/BannedIPs"), QStringList()).toStringList();
}
2010-06-22 17:58:22 +04:00
// Search
bool isSearchEnabled() const {
return value(QString::fromUtf8("Preferences/Search/SearchEnabled"), true).toBool();
2010-06-22 17:58:22 +04:00
}
void setSearchEnabled(bool enabled) {
setValue(QString::fromUtf8("Preferences/Search/SearchEnabled"), enabled);
2010-06-22 17:58:22 +04:00
}
// Queueing system
bool isQueueingSystemEnabled() const {
return value("Preferences/Queueing/QueueingEnabled", false).toBool();
}
void setQueueingSystemEnabled(bool enabled) {
setValue("Preferences/Queueing/QueueingEnabled", enabled);
}
int getMaxActiveDownloads() const {
return value(QString::fromUtf8("Preferences/Queueing/MaxActiveDownloads"), 3).toInt();
}
void setMaxActiveDownloads(int val) {
if(val < 0) val = -1;
setValue(QString::fromUtf8("Preferences/Queueing/MaxActiveDownloads"), val);
}
int getMaxActiveUploads() const {
return value(QString::fromUtf8("Preferences/Queueing/MaxActiveUploads"), 3).toInt();
}
void setMaxActiveUploads(int val) {
if(val < 0) val = -1;
setValue(QString::fromUtf8("Preferences/Queueing/MaxActiveUploads"), val);
}
int getMaxActiveTorrents() const {
return value(QString::fromUtf8("Preferences/Queueing/MaxActiveTorrents"), 5).toInt();
}
void setMaxActiveTorrents(int val) {
if(val < 0) val = -1;
setValue(QString::fromUtf8("Preferences/Queueing/MaxActiveTorrents"), val);
}
bool isWebUiEnabled() const {
return value("Preferences/WebUI/Enabled", false).toBool();
}
void setWebUiEnabled(bool enabled) {
setValue("Preferences/WebUI/Enabled", enabled);
}
quint16 getWebUiPort() const {
return value("Preferences/WebUI/Port", 8080).toInt();
}
void setWebUiPort(quint16 port) {
setValue("Preferences/WebUI/Port", port);
}
QString getWebUiUsername() const {
return value("Preferences/WebUI/Username", "admin").toString();
2009-12-10 22:19:19 +03:00
}
void setWebUiUsername(const QString &username) {
setValue("Preferences/WebUI/Username", username);
}
void setWebUiPassword(const QString &new_password) {
2009-12-10 22:19:19 +03:00
// Get current password md5
QString current_pass_md5 = getWebUiPassword();
// Check if password did not change
if(current_pass_md5 == new_password) return;
// Encode to md5 and save
QCryptographicHash md5(QCryptographicHash::Md5);
md5.addData(getWebUiUsername().toLocal8Bit()+":"+QBT_REALM+":");
2009-12-10 22:19:19 +03:00
md5.addData(new_password.toLocal8Bit());
setValue("Preferences/WebUI/Password_ha1", md5.result().toHex());
}
QString getWebUiPassword() const {
QString pass_ha1 = value("Preferences/WebUI/Password_ha1", "").toString();
if(pass_ha1.isEmpty()) {
2009-12-10 22:19:19 +03:00
QCryptographicHash md5(QCryptographicHash::Md5);
md5.addData(getWebUiUsername().toLocal8Bit()+":"+QBT_REALM+":");
2009-12-10 22:19:19 +03:00
md5.addData("adminadmin");
pass_ha1 = md5.result().toHex();
2009-12-10 22:19:19 +03:00
}
return pass_ha1;
}
// Advanced settings
void setUILockPassword(const QString &clear_password) {
QCryptographicHash md5(QCryptographicHash::Md5);
md5.addData(clear_password.toLocal8Bit());
QString md5_password = md5.result().toHex();
setValue("Locking/password", md5_password);
}
QString getUILockPasswordMD5() const {
return value("Locking/password", QString()).toString();
}
bool isUILocked() const {
return value("Locking/locked", false).toBool();
}
void setUILocked(bool locked) {
return setValue("Locking/locked", locked);
}
bool isAutoRunEnabled() const {
return value("AutoRun/enabled", false).toBool();
}
void setAutoRunEnabled(bool enabled) {
return setValue("AutoRun/enabled", enabled);
}
void setAutoRunProgram(const QString &program) {
setValue("AutoRun/program", program);
}
QString getAutoRunProgram() const {
return value("AutoRun/program", QString()).toString();
}
bool shutdownWhenDownloadsComplete() const {
return value(QString::fromUtf8("Preferences/Downloads/AutoShutDownOnCompletion"), false).toBool();
}
void setShutdownWhenDownloadsComplete(bool shutdown) {
setValue(QString::fromUtf8("Preferences/Downloads/AutoShutDownOnCompletion"), shutdown);
}
bool shutdownqBTWhenDownloadsComplete() const {
return value(QString::fromUtf8("Preferences/Downloads/AutoShutDownqBTOnCompletion"), false).toBool();
}
void setShutdownqBTWhenDownloadsComplete(bool shutdown) {
setValue(QString::fromUtf8("Preferences/Downloads/AutoShutDownqBTOnCompletion"), shutdown);
}
uint diskCacheSize() const {
return value(QString::fromUtf8("Preferences/Downloads/DiskCache"), 16).toUInt();
}
void setDiskCacheSize(uint size) {
setValue(QString::fromUtf8("Preferences/Downloads/DiskCache"), size);
}
uint outgoingPortsMin() const {
return value(QString::fromUtf8("Preferences/Advanced/OutgoingPortsMin"), 0).toUInt();
}
void setOutgoingPortsMin(uint val) {
setValue(QString::fromUtf8("Preferences/Advanced/OutgoingPortsMin"), val);
}
uint outgoingPortsMax() const {
return value(QString::fromUtf8("Preferences/Advanced/OutgoingPortsMax"), 0).toUInt();
}
void setOutgoingPortsMax(uint val) {
setValue(QString::fromUtf8("Preferences/Advanced/OutgoingPortsMax"), val);
}
bool ignoreLimitsOnLAN() const {
return value(QString::fromUtf8("Preferences/Advanced/IgnoreLimitsLAN"), true).toBool();
}
void ignoreLimitsOnLAN(bool ignore) {
setValue(QString::fromUtf8("Preferences/Advanced/IgnoreLimitsLAN"), ignore);
}
bool includeOverheadInLimits() const {
return value(QString::fromUtf8("Preferences/Advanced/IncludeOverhead"), false).toBool();
}
void includeOverheadInLimits(bool include) {
setValue(QString::fromUtf8("Preferences/Advanced/IncludeOverhead"), include);
}
bool recheckTorrentsOnCompletion() const {
return value(QString::fromUtf8("Preferences/Advanced/RecheckOnCompletion"), false).toBool();
}
void recheckTorrentsOnCompletion(bool recheck) {
setValue(QString::fromUtf8("Preferences/Advanced/RecheckOnCompletion"), recheck);
}
unsigned int getRefreshInterval() const {
return value(QString::fromUtf8("Preferences/General/RefreshInterval"), 1500).toUInt();
}
void setRefreshInterval(uint interval) {
setValue(QString::fromUtf8("Preferences/General/RefreshInterval"), interval);
}
bool resolvePeerCountries() const {
return value(QString::fromUtf8("Preferences/Connection/ResolvePeerCountries"), true).toBool();
}
void resolvePeerCountries(bool resolve) {
setValue(QString::fromUtf8("Preferences/Connection/ResolvePeerCountries"), resolve);
}
bool resolvePeerHostNames() const {
return value(QString::fromUtf8("Preferences/Connection/ResolvePeerHostNames"), false).toBool();
}
void resolvePeerHostNames(bool resolve) {
setValue(QString::fromUtf8("Preferences/Connection/ResolvePeerHostNames"), resolve);
}
int getMaxHalfOpenConnections() const {
const int val = value(QString::fromUtf8("Preferences/Connection/MaxHalfOpenConnec"), 50).toInt();
if(val <= 0) return -1;
return val;
}
void setMaxHalfOpenConnections(int value) {
if(value <= 0) value = -1;
setValue(QString::fromUtf8("Preferences/Connection/MaxHalfOpenConnec"), value);
}
void setNetworkInterface(const QString& iface) {
setValue(QString::fromUtf8("Preferences/Connection/Interface"), iface);
}
QString getNetworkInterface() const {
return value(QString::fromUtf8("Preferences/Connection/Interface"), QString()).toString();
}
#if LIBTORRENT_VERSION_MINOR > 14
bool isSuperSeedingEnabled() const {
return value(QString::fromUtf8("Preferences/Advanced/SuperSeeding"), false).toBool();
2010-03-25 22:31:48 +03:00
}
void enableSuperSeeding(bool enabled) {
setValue(QString::fromUtf8("Preferences/Advanced/SuperSeeding"), enabled);
2010-03-25 22:31:48 +03:00
}
#endif
QStringList getTorrentLabels() const {
return value("TransferListFilters/customLabels").toStringList();
}
void addTorrentLabel(const QString& label) {
QStringList labels = value("TransferListFilters/customLabels").toStringList();
if(!labels.contains(label))
labels << label;
setValue("TransferListFilters/customLabels", labels);
}
void removeTorrentLabel(const QString& label) {
QStringList labels = value("TransferListFilters/customLabels").toStringList();
if(labels.contains(label))
labels.removeOne(label);
setValue("TransferListFilters/customLabels", labels);
}
bool recursiveDownloadDisabled() const {
return value(QString::fromUtf8("Preferences/Advanced/DisableRecursiveDownload"), false).toBool();
}
void disableRecursiveDownload(bool disable=true) {
setValue(QString::fromUtf8("Preferences/Advanced/DisableRecursiveDownload"), disable);
}
2010-05-30 21:51:40 +04:00
#ifdef Q_WS_WIN
static QString getPythonPath() {
QSettings reg_python("HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore", QIniSettings::NativeFormat);
QStringList versions = reg_python.childGroups();
qDebug("Python versions nb: %d", versions.size());
versions = versions.filter(QRegExp("2\\..*"));
versions.sort();
while(!versions.empty()) {
const QString version = versions.takeLast();
qDebug("Detected possible Python v%s location", qPrintable(version));
QString path = reg_python.value(version+"/InstallPath/Default", "").toString().replace("/", "\\");
if(!path.isEmpty() && QDir(path).exists("python.exe")) {
qDebug("Found python.exe at %s", qPrintable(path));
return path;
}
}
if(QFile::exists("C:/Python26/python.exe")) {
reg_python.setValue("2.6/InstallPath/Default", "C:\\Python26");
return "C:\\Python26";
}
if(QFile::exists("C:/Python25/python.exe")) {
reg_python.setValue("2.5/InstallPath/Default", "C:\\Python26");
return "C:\\Python25";
}
return QString::null;
2010-05-31 16:48:00 +04:00
}
bool neverCheckFileAssoc() const {
return value(QString::fromUtf8("Preferences/Win32/NeverCheckFileAssocation"), false).toBool();
2010-05-31 16:48:00 +04:00
}
void setNeverCheckFileAssoc(bool check=true) {
setValue(QString::fromUtf8("Preferences/Win32/NeverCheckFileAssocation"), check);
2010-05-30 21:51:40 +04:00
}
2010-05-31 01:45:55 +04:00
static bool isFileAssocOk() {
QSettings settings("HKEY_CLASSES_ROOT", QIniSettings::NativeFormat);
if(value(".torrent/Default").toString() != "qBittorrent") {
2010-05-31 16:48:00 +04:00
qDebug(".torrent != qBittorrent");
return false;
}
qDebug("Checking shell command");
QString shell_command = value("qBittorrent/shell/open/command/Default", "").toString();
2010-05-31 16:48:00 +04:00
qDebug("Shell command is: %s", qPrintable(shell_command));
QRegExp exe_reg("\"([^\"]+)\".*");
if(exe_reg.indexIn(shell_command) < 0)
return false;
QString assoc_exe = exe_reg.cap(1);
qDebug("exe: %s", qPrintable(assoc_exe));
if(assoc_exe.compare(qApp->applicationFilePath().replace("/", "\\"), Qt::CaseInsensitive) != 0)
return false;
// Icon
const QString icon_str = "\""+qApp->applicationFilePath().replace("/", "\\")+"\",1";
if(value("qBittorrent/DefaultIcon/Default", icon_str).toString().compare(icon_str, Qt::CaseInsensitive) != 0)
return false;
2010-05-31 16:48:00 +04:00
// Check magnet link assoc
shell_command = value("Magnet/shell/open/command/Default", "").toString();
2010-05-31 16:48:00 +04:00
if(exe_reg.indexIn(shell_command) < 0)
return false;
assoc_exe = exe_reg.cap(1);
qDebug("exe: %s", qPrintable(assoc_exe));
if(assoc_exe.compare(qApp->applicationFilePath().replace("/", "\\"), Qt::CaseInsensitive) != 0)
return false;
return true;
2010-05-31 01:45:55 +04:00
}
static void setFileAssoc() {
QSettings settings("HKEY_CLASSES_ROOT", QSettings::NativeFormat);
2010-05-31 16:48:00 +04:00
// .Torrent association
setValue(".torrent/Default", "qBittorrent");
setValue(".torrent/Content Type", "application/x-bittorrent");
setValue("qBittorrent/shell/Default", "open");
2010-05-31 01:45:55 +04:00
const QString command_str = "\""+qApp->applicationFilePath().replace("/", "\\")+"\" \"%1\"";
setValue("qBittorrent/shell/open/command/Default", command_str);
setValue("qBittorrent/Content Type/Default", "application/x-bittorrent");
const QString icon_str = "\""+qApp->applicationFilePath().replace("/", "\\")+"\",1";
setValue("qBittorrent/DefaultIcon/Default", icon_str);
2010-05-31 16:48:00 +04:00
// Magnet association
setValue("Magnet/Default", "Magnet URI");
setValue("Magnet/Content Type", "application/x-magnet");
setValue("Magnet/URL Protocol", "");
setValue("Magnet/DefaultIcon\\Default", icon_str);
setValue("Magnet/shell/Default", "open");
setValue("Magnet/shell/open/command/Default", command_str);
2010-05-31 01:45:55 +04:00
}
2010-05-30 21:51:40 +04:00
#endif
bool isTrackerEnabled() const {
return value(QString::fromUtf8("Preferences/Advanced/trackerEnabled"), false).toBool();
}
void setTrackerEnabled(bool enabled) {
setValue(QString::fromUtf8("Preferences/Advanced/trackerEnabled"), enabled);
}
int getTrackerPort() const {
return value(QString::fromUtf8("Preferences/Advanced/trackerPort"), 9000).toInt();
}
void setTrackerPort(int port) {
setValue(QString::fromUtf8("Preferences/Advanced/trackerPort"), port);
}
};
#endif // PREFERENCES_H