2008-05-17 17:23:37 +04:00
|
|
|
/*
|
2009-04-05 22:48:45 +04:00
|
|
|
* Bittorrent Client using Qt4 and libtorrent.
|
2012-05-26 23:58:53 +04:00
|
|
|
* Copyright (C) 2006-2012 Ishan Arora and Christophe Dumez
|
2008-05-17 17:23:37 +04:00
|
|
|
*
|
2009-04-05 22:48:45 +04:00
|
|
|
* 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.
|
2008-05-17 17:23:37 +04:00
|
|
|
*
|
2009-04-05 22:48:45 +04:00
|
|
|
* 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.
|
2008-05-17 17:23:37 +04:00
|
|
|
*
|
2009-04-05 22:48:45 +04:00
|
|
|
* 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
|
2008-05-17 17:23:37 +04:00
|
|
|
*/
|
|
|
|
|
2012-05-26 23:58:53 +04:00
|
|
|
#include "prefjson.h"
|
|
|
|
#include "jsondict.h"
|
|
|
|
#include "preferences.h"
|
|
|
|
#include "json.h"
|
2010-10-09 18:06:35 +04:00
|
|
|
#include "qbtsession.h"
|
2010-03-18 22:25:16 +03:00
|
|
|
#include "scannedfoldersmodel.h"
|
2012-05-26 23:58:53 +04:00
|
|
|
|
|
|
|
#include <libtorrent/version.hpp>
|
2011-06-05 20:08:30 +04:00
|
|
|
#ifndef QT_NO_OPENSSL
|
|
|
|
#include <QSslCertificate>
|
|
|
|
#include <QSslKey>
|
|
|
|
#endif
|
2012-05-26 23:58:53 +04:00
|
|
|
#include <QTranslator>
|
2008-05-17 17:23:37 +04:00
|
|
|
|
2012-05-26 23:58:53 +04:00
|
|
|
prefjson::prefjson()
|
|
|
|
{
|
|
|
|
}
|
2010-11-23 00:55:32 +03:00
|
|
|
|
2012-05-26 23:58:53 +04:00
|
|
|
QString prefjson::getPreferences()
|
2008-05-17 17:23:37 +04:00
|
|
|
{
|
2012-05-26 23:58:53 +04:00
|
|
|
const Preferences pref;
|
|
|
|
JsonDict data;
|
|
|
|
// UI
|
|
|
|
data.add("locale", pref.getLocale());
|
|
|
|
// Downloads
|
|
|
|
data.add("save_path", pref.getSavePath());
|
|
|
|
data.add("temp_path_enabled", pref.isTempPathEnabled());
|
|
|
|
data.add("temp_path", pref.getTempPath());
|
|
|
|
data.add("scan_dirs", pref.getScanDirs());
|
|
|
|
QVariantList var_list;
|
|
|
|
foreach (bool b, pref.getDownloadInScanDirs()) {
|
|
|
|
var_list << b;
|
|
|
|
}
|
|
|
|
data.add("download_in_scan_dirs", var_list);
|
|
|
|
data.add("export_dir_enabled", pref.isTorrentExportEnabled());
|
2012-08-21 11:16:49 +04:00
|
|
|
data.add("export_dir", pref.getTorrentExportDir());
|
2012-05-26 23:58:53 +04:00
|
|
|
data.add("mail_notification_enabled", pref.isMailNotificationEnabled());
|
|
|
|
data.add("mail_notification_email", pref.getMailNotificationEmail());
|
|
|
|
data.add("mail_notification_smtp", pref.getMailNotificationSMTP());
|
|
|
|
data.add("mail_notification_ssl_enabled", pref.getMailNotificationSMTPSSL());
|
|
|
|
data.add("mail_notification_auth_enabled", pref.getMailNotificationSMTPAuth());
|
|
|
|
data.add("mail_notification_username", pref.getMailNotificationSMTPUsername());
|
|
|
|
data.add("mail_notification_password", pref.getMailNotificationSMTPPassword());
|
|
|
|
data.add("autorun_enabled", pref.isAutoRunEnabled());
|
|
|
|
data.add("autorun_program", pref.getAutoRunProgram());
|
|
|
|
data.add("preallocate_all", pref.preAllocateAllFiles());
|
|
|
|
data.add("queueing_enabled", pref.isQueueingSystemEnabled());
|
|
|
|
data.add("max_active_downloads", pref.getMaxActiveDownloads());
|
|
|
|
data.add("max_active_torrents", pref.getMaxActiveTorrents());
|
|
|
|
data.add("max_active_uploads", pref.getMaxActiveUploads());
|
|
|
|
data.add("dont_count_slow_torrents", pref.ignoreSlowTorrentsForQueueing());
|
|
|
|
data.add("incomplete_files_ext", pref.useIncompleteFilesExtension());
|
|
|
|
// Connection
|
|
|
|
data.add("listen_port", pref.getSessionPort());
|
|
|
|
data.add("upnp", pref.isUPnPEnabled());
|
|
|
|
data.add("dl_limit", pref.getGlobalDownloadLimit());
|
|
|
|
data.add("up_limit", pref.getGlobalUploadLimit());
|
|
|
|
data.add("max_connec", pref.getMaxConnecs());
|
|
|
|
data.add("max_connec_per_torrent", pref.getMaxConnecsPerTorrent());
|
|
|
|
data.add("max_uploads_per_torrent", pref.getMaxUploadsPerTorrent());
|
|
|
|
data.add("enable_utp", pref.isuTPEnabled());
|
|
|
|
data.add("limit_utp_rate", pref.isuTPRateLimited());
|
|
|
|
data.add("limit_tcp_overhead", pref.includeOverheadInLimits());
|
|
|
|
data.add("alt_dl_limit", pref.getAltGlobalDownloadLimit());
|
|
|
|
data.add("alt_up_limit", pref.getAltGlobalUploadLimit());
|
|
|
|
data.add("scheduler_enabled", pref.isSchedulerEnabled());
|
|
|
|
const QTime start_time = pref.getSchedulerStartTime();
|
|
|
|
data.add("schedule_from_hour", start_time.hour());
|
|
|
|
data.add("schedule_from_min", start_time.minute());
|
|
|
|
const QTime end_time = pref.getSchedulerEndTime();
|
|
|
|
data.add("schedule_to_hour", end_time.hour());
|
|
|
|
data.add("schedule_to_min", end_time.minute());
|
|
|
|
data.add("scheduler_days", pref.getSchedulerDays());
|
|
|
|
// Bittorrent
|
|
|
|
data.add("dht", pref.isDHTEnabled());
|
|
|
|
data.add("dhtSameAsBT", pref.isDHTPortSameAsBT());
|
|
|
|
data.add("dht_port", pref.getDHTPort());
|
|
|
|
data.add("pex", pref.isPeXEnabled());
|
|
|
|
data.add("lsd", pref.isLSDEnabled());
|
|
|
|
data.add("encryption", pref.getEncryptionSetting());
|
|
|
|
data.add("anonymous_mode", pref.isAnonymousModeEnabled());
|
|
|
|
// Proxy
|
|
|
|
data.add("proxy_type", pref.getProxyType());
|
|
|
|
data.add("proxy_ip", pref.getProxyIp());
|
|
|
|
data.add("proxy_port", pref.getProxyPort());
|
|
|
|
data.add("proxy_peer_connections", pref.proxyPeerConnections());
|
|
|
|
data.add("proxy_auth_enabled", pref.isProxyAuthEnabled());
|
|
|
|
data.add("proxy_username", pref.getProxyUsername());
|
|
|
|
data.add("proxy_password", pref.getProxyPassword());
|
|
|
|
// IP Filter
|
|
|
|
data.add("ip_filter_enabled", pref.isFilteringEnabled());
|
|
|
|
data.add("ip_filter_path", pref.getFilter());
|
|
|
|
// Web UI
|
|
|
|
data.add("web_ui_port", pref.getWebUiPort());
|
|
|
|
data.add("web_ui_username", pref.getWebUiUsername());
|
|
|
|
data.add("web_ui_password", pref.getWebUiPassword());
|
|
|
|
data.add("bypass_local_auth", !pref.isWebUiLocalAuthEnabled());
|
|
|
|
data.add("use_https", pref.isWebUiHttpsEnabled());
|
|
|
|
data.add("ssl_key", QString::fromAscii(pref.getWebUiHttpsKey()));
|
|
|
|
data.add("ssl_cert", QString::fromAscii(pref.getWebUiHttpsCertificate()));
|
|
|
|
// DynDns
|
|
|
|
data.add("dyndns_enabled", pref.isDynDNSEnabled());
|
|
|
|
data.add("dyndns_service", pref.getDynDNSService());
|
|
|
|
data.add("dyndns_username", pref.getDynDNSUsername());
|
|
|
|
data.add("dyndns_password", pref.getDynDNSPassword());
|
|
|
|
data.add("dyndns_domain", pref.getDynDomainName());
|
|
|
|
|
|
|
|
return data.toString();
|
2008-05-17 17:23:37 +04:00
|
|
|
}
|
|
|
|
|
2012-05-26 23:58:53 +04:00
|
|
|
void prefjson::setPreferences(const QString& json)
|
|
|
|
{
|
|
|
|
const QVariantMap m = json::fromJson(json);
|
|
|
|
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 22:39:47 +03:00
|
|
|
// UI
|
2010-11-16 23:34:31 +03:00
|
|
|
Preferences pref;
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("locale")) {
|
2010-09-25 16:42:19 +04:00
|
|
|
QString locale = m["locale"].toString();
|
2012-02-20 21:30:53 +04:00
|
|
|
if (pref.getLocale() != locale) {
|
2010-09-25 16:42:19 +04:00
|
|
|
QTranslator *translator = new QTranslator;
|
2012-02-20 21:56:07 +04:00
|
|
|
if (translator->load(QString::fromUtf8(":/lang/qbittorrent_") + locale)) {
|
2010-09-25 16:42:19 +04:00
|
|
|
qDebug("%s locale recognized, using translation.", qPrintable(locale));
|
|
|
|
}else{
|
2013-10-20 20:31:01 +04:00
|
|
|
qDebug("%s locale unrecognized, using default (en).", qPrintable(locale));
|
2010-09-25 16:42:19 +04:00
|
|
|
}
|
|
|
|
qApp->installTranslator(translator);
|
|
|
|
|
2011-09-29 21:47:51 +04:00
|
|
|
pref.setLocale(locale);
|
|
|
|
}
|
2010-09-25 16:42:19 +04:00
|
|
|
}
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 22:39:47 +03:00
|
|
|
// Downloads
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("save_path"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setSavePath(m["save_path"].toString());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("temp_path_enabled"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setTempPathEnabled(m["temp_path_enabled"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("temp_path"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setTempPath(m["temp_path"].toString());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("scan_dirs") && m.contains("download_in_scan_dirs")) {
|
2010-06-05 22:59:05 +04:00
|
|
|
QVariantList download_at_path_tmp = m["download_in_scan_dirs"].toList();
|
|
|
|
QList<bool> download_at_path;
|
2012-02-20 21:30:53 +04:00
|
|
|
foreach (QVariant var, download_at_path_tmp) {
|
2010-06-05 22:59:05 +04:00
|
|
|
download_at_path << var.toBool();
|
|
|
|
}
|
2010-11-16 23:34:31 +03:00
|
|
|
QStringList old_folders = pref.getScanDirs();
|
2010-03-18 22:25:16 +03:00
|
|
|
QStringList new_folders = m["scan_dirs"].toStringList();
|
2012-02-20 21:30:53 +04:00
|
|
|
if (download_at_path.size() == new_folders.size()) {
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setScanDirs(new_folders);
|
|
|
|
pref.setDownloadInScanDirs(download_at_path);
|
2012-02-20 21:30:53 +04:00
|
|
|
foreach (const QString &old_folder, old_folders) {
|
2010-03-22 21:50:04 +03:00
|
|
|
// Update deleted folders
|
2012-02-20 21:30:53 +04:00
|
|
|
if (!new_folders.contains(old_folder)) {
|
2010-11-14 00:15:52 +03:00
|
|
|
QBtSession::instance()->getScanFoldersModel()->removePath(old_folder);
|
2010-03-22 21:50:04 +03:00
|
|
|
}
|
2010-03-18 22:25:16 +03:00
|
|
|
}
|
2010-03-22 21:50:04 +03:00
|
|
|
int i = 0;
|
2012-02-20 21:30:53 +04:00
|
|
|
foreach (const QString &new_folder, new_folders) {
|
2010-06-29 12:44:56 +04:00
|
|
|
qDebug("New watched folder: %s", qPrintable(new_folder));
|
2010-03-22 21:50:04 +03:00
|
|
|
// Update new folders
|
2012-02-20 21:30:53 +04:00
|
|
|
if (!old_folders.contains(new_folder)) {
|
2010-11-14 00:15:52 +03:00
|
|
|
QBtSession::instance()->getScanFoldersModel()->addPath(new_folder, download_at_path.at(i));
|
2010-03-22 21:50:04 +03:00
|
|
|
}
|
|
|
|
++i;
|
2010-03-18 22:25:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("export_dir"))
|
2012-08-21 11:16:49 +04:00
|
|
|
pref.setTorrentExportDir(m["export_dir"].toString());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("mail_notification_enabled"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setMailNotificationEnabled(m["mail_notification_enabled"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("mail_notification_email"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setMailNotificationEmail(m["mail_notification_email"].toString());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("mail_notification_smtp"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setMailNotificationSMTP(m["mail_notification_smtp"].toString());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("mail_notification_ssl_enabled"))
|
2011-06-05 20:08:30 +04:00
|
|
|
pref.setMailNotificationSMTPSSL(m["mail_notification_ssl_enabled"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("mail_notification_auth_enabled"))
|
2011-06-05 20:08:30 +04:00
|
|
|
pref.setMailNotificationSMTPAuth(m["mail_notification_auth_enabled"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("mail_notification_username"))
|
2011-06-05 20:08:30 +04:00
|
|
|
pref.setMailNotificationSMTPUsername(m["mail_notification_username"].toString());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("mail_notification_password"))
|
2011-06-05 20:08:30 +04:00
|
|
|
pref.setMailNotificationSMTPPassword(m["mail_notification_password"].toString());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("autorun_enabled"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setAutoRunEnabled(m["autorun_enabled"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("autorun_program"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setAutoRunProgram(m["autorun_program"].toString());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("preallocate_all"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.preAllocateAllFiles(m["preallocate_all"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("queueing_enabled"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setQueueingSystemEnabled(m["queueing_enabled"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("max_active_downloads"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setMaxActiveDownloads(m["max_active_downloads"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("max_active_torrents"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setMaxActiveTorrents(m["max_active_torrents"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("max_active_uploads"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setMaxActiveUploads(m["max_active_uploads"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("dont_count_slow_torrents"))
|
2011-09-18 20:34:29 +04:00
|
|
|
pref.setIgnoreSlowTorrentsForQueueing(m["dont_count_slow_torrents"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("incomplete_files_ext"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.useIncompleteFilesExtension(m["incomplete_files_ext"].toBool());
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 22:39:47 +03:00
|
|
|
// Connection
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("listen_port"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setSessionPort(m["listen_port"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("upnp"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setUPnPEnabled(m["upnp"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("dl_limit"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setGlobalDownloadLimit(m["dl_limit"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("up_limit"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setGlobalUploadLimit(m["up_limit"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("max_connec"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setMaxConnecs(m["max_connec"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("max_connec_per_torrent"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setMaxConnecsPerTorrent(m["max_connec_per_torrent"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("max_uploads_per_torrent"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setMaxUploadsPerTorrent(m["max_uploads_per_torrent"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("enable_utp"))
|
2011-06-05 20:08:30 +04:00
|
|
|
pref.setuTPEnabled(m["enable_utp"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("limit_utp_rate"))
|
2011-06-05 20:08:30 +04:00
|
|
|
pref.setuTPRateLimited(m["limit_utp_rate"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("limit_tcp_overhead"))
|
2011-06-05 20:08:30 +04:00
|
|
|
pref.includeOverheadInLimits(m["limit_tcp_overhead"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("alt_dl_limit"))
|
2011-10-19 20:55:11 +04:00
|
|
|
pref.setAltGlobalDownloadLimit(m["alt_dl_limit"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("alt_up_limit"))
|
2011-10-19 20:55:11 +04:00
|
|
|
pref.setAltGlobalUploadLimit(m["alt_up_limit"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("scheduler_enabled"))
|
2011-10-19 20:55:11 +04:00
|
|
|
pref.setSchedulerEnabled(m["scheduler_enabled"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("schedule_from_hour") && m.contains("schedule_from_min")) {
|
2011-10-19 20:55:11 +04:00
|
|
|
pref.setSchedulerStartTime(QTime(m["schedule_from_hour"].toInt(),
|
|
|
|
m["schedule_from_min"].toInt()));
|
|
|
|
}
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("schedule_to_hour") && m.contains("schedule_to_min")) {
|
2011-10-19 20:55:11 +04:00
|
|
|
pref.setSchedulerEndTime(QTime(m["schedule_to_hour"].toInt(),
|
|
|
|
m["schedule_to_min"].toInt()));
|
|
|
|
}
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("scheduler_days"))
|
2011-10-19 20:55:11 +04:00
|
|
|
pref.setSchedulerDays(scheduler_days(m["scheduler_days"].toInt()));
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 22:39:47 +03:00
|
|
|
// Bittorrent
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("dht"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setDHTEnabled(m["dht"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("dhtSameAsBT"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setDHTPortSameAsBT(m["dhtSameAsBT"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("dht_port"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setDHTPort(m["dht_port"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("pex"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setPeXEnabled(m["pex"].toBool());
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 22:39:47 +03:00
|
|
|
qDebug("Pex support: %d", (int)m["pex"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("lsd"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setLSDEnabled(m["lsd"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("encryption"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setEncryptionSetting(m["encryption"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("anonymous_mode"))
|
2011-09-20 21:15:47 +04:00
|
|
|
pref.enableAnonymousMode(m["anonymous_mode"].toBool());
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 22:39:47 +03:00
|
|
|
// Proxy
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("proxy_type"))
|
2010-11-18 23:05:56 +03:00
|
|
|
pref.setProxyType(m["proxy_type"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("proxy_ip"))
|
2010-11-18 23:05:56 +03:00
|
|
|
pref.setProxyIp(m["proxy_ip"].toString());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("proxy_port"))
|
2010-11-18 23:05:56 +03:00
|
|
|
pref.setProxyPort(m["proxy_port"].toUInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("proxy_peer_connections"))
|
2011-05-01 16:00:23 +04:00
|
|
|
pref.setProxyPeerConnections(m["proxy_peer_connections"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("proxy_auth_enabled"))
|
2010-11-18 23:05:56 +03:00
|
|
|
pref.setProxyAuthEnabled(m["proxy_auth_enabled"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("proxy_username"))
|
2010-11-18 23:05:56 +03:00
|
|
|
pref.setProxyUsername(m["proxy_username"].toString());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("proxy_password"))
|
2010-11-18 23:05:56 +03:00
|
|
|
pref.setProxyPassword(m["proxy_password"].toString());
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 22:39:47 +03:00
|
|
|
// IP Filter
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("ip_filter_enabled"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setFilteringEnabled(m["ip_filter_enabled"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("ip_filter_path"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setFilter(m["ip_filter_path"].toString());
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 22:39:47 +03:00
|
|
|
// Web UI
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("web_ui_port"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setWebUiPort(m["web_ui_port"].toUInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("web_ui_username"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setWebUiUsername(m["web_ui_username"].toString());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("web_ui_password"))
|
2010-11-16 23:34:31 +03:00
|
|
|
pref.setWebUiPassword(m["web_ui_password"].toString());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("bypass_local_auth"))
|
2011-06-05 20:08:30 +04:00
|
|
|
pref.setWebUiLocalAuthEnabled(!m["bypass_local_auth"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("use_https"))
|
2011-06-05 20:08:30 +04:00
|
|
|
pref.setWebUiHttpsEnabled(m["use_https"].toBool());
|
|
|
|
#ifndef QT_NO_OPENSSL
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("ssl_key")) {
|
2011-06-05 20:08:30 +04:00
|
|
|
QByteArray raw_key = m["ssl_key"].toString().toAscii();
|
|
|
|
if (!QSslKey(raw_key, QSsl::Rsa).isNull())
|
|
|
|
pref.setWebUiHttpsKey(raw_key);
|
|
|
|
}
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("ssl_cert")) {
|
2011-06-05 20:08:30 +04:00
|
|
|
QByteArray raw_cert = m["ssl_cert"].toString().toAscii();
|
|
|
|
if (!QSslCertificate(raw_cert).isNull())
|
|
|
|
pref.setWebUiHttpsCertificate(raw_cert);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
// Dyndns
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("dyndns_enabled"))
|
2011-06-05 20:08:30 +04:00
|
|
|
pref.setDynDNSEnabled(m["dyndns_enabled"].toBool());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("dyndns_service"))
|
2011-06-05 20:08:30 +04:00
|
|
|
pref.setDynDNSService(m["dyndns_service"].toInt());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("dyndns_username"))
|
2011-06-05 20:08:30 +04:00
|
|
|
pref.setDynDNSUsername(m["dyndns_username"].toString());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("dyndns_password"))
|
2011-06-05 20:08:30 +04:00
|
|
|
pref.setDynDNSPassword(m["dyndns_password"].toString());
|
2012-02-20 21:30:53 +04:00
|
|
|
if (m.contains("dyndns_domain"))
|
2011-06-05 20:08:30 +04:00
|
|
|
pref.setDynDomainName(m["dyndns_domain"].toString());
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 22:39:47 +03:00
|
|
|
// Reload preferences
|
2010-11-14 00:15:52 +03:00
|
|
|
QBtSession::instance()->configureSession();
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* Prepare http server and preferences classes to add new settings to Web UI
* Tabified Program preferences in Web UI since there will be a lot of settings soon
* Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing
* Added a command line parameter to change the web ui port
* Fix PeerGuardian .p2b binary filter support
2009-12-28 22:39:47 +03:00
|
|
|
}
|