/* * Bittorrent Client using Qt and libtorrent. * Copyright (C) 2015-2024 Vladimir Golovnev * * 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 "addtorrentparams.h" #include #include #include #include "base/utils/sslkey.h" #include "base/utils/string.h" const QString PARAM_CATEGORY = u"category"_s; const QString PARAM_TAGS = u"tags"_s; const QString PARAM_SAVEPATH = u"save_path"_s; const QString PARAM_USEDOWNLOADPATH = u"use_download_path"_s; const QString PARAM_DOWNLOADPATH = u"download_path"_s; const QString PARAM_OPERATINGMODE = u"operating_mode"_s; const QString PARAM_QUEUETOP = u"add_to_top_of_queue"_s; const QString PARAM_STOPPED = u"stopped"_s; const QString PARAM_STOPCONDITION = u"stop_condition"_s; const QString PARAM_SKIPCHECKING = u"skip_checking"_s; const QString PARAM_CONTENTLAYOUT = u"content_layout"_s; const QString PARAM_AUTOTMM = u"use_auto_tmm"_s; const QString PARAM_UPLOADLIMIT = u"upload_limit"_s; const QString PARAM_DOWNLOADLIMIT = u"download_limit"_s; const QString PARAM_SEEDINGTIMELIMIT = u"seeding_time_limit"_s; const QString PARAM_INACTIVESEEDINGTIMELIMIT = u"inactive_seeding_time_limit"_s; const QString PARAM_SHARELIMITACTION = u"share_limit_action"_s; const QString PARAM_RATIOLIMIT = u"ratio_limit"_s; const QString PARAM_SSL_CERTIFICATE = u"ssl_certificate"_s; const QString PARAM_SSL_PRIVATEKEY = u"ssl_private_key"_s; const QString PARAM_SSL_DHPARAMS = u"ssl_dh_params"_s; namespace { TagSet parseTagSet(const QJsonArray &jsonArr) { TagSet tags; for (const QJsonValue &jsonVal : jsonArr) tags.insert(Tag(jsonVal.toString())); return tags; } QJsonArray serializeTagSet(const TagSet &tags) { QJsonArray arr; for (const Tag &tag : tags) arr.append(tag.toString()); return arr; } std::optional getOptionalBool(const QJsonObject &jsonObj, const QString &key) { const QJsonValue jsonVal = jsonObj.value(key); if (jsonVal.isUndefined() || jsonVal.isNull()) return std::nullopt; return jsonVal.toBool(); } template std::optional getOptionalEnum(const QJsonObject &jsonObj, const QString &key) { const QJsonValue jsonVal = jsonObj.value(key); if (jsonVal.isUndefined() || jsonVal.isNull()) return std::nullopt; return Utils::String::toEnum(jsonVal.toString(), {}); } template Enum getEnum(const QJsonObject &jsonObj, const QString &key, const Enum defaultValue = {}) { const QJsonValue jsonVal = jsonObj.value(key); return Utils::String::toEnum(jsonVal.toString(), defaultValue); } } BitTorrent::AddTorrentParams BitTorrent::parseAddTorrentParams(const QJsonObject &jsonObj) { const AddTorrentParams params { .name = {}, .category = jsonObj.value(PARAM_CATEGORY).toString(), .tags = parseTagSet(jsonObj.value(PARAM_TAGS).toArray()), .savePath = Path(jsonObj.value(PARAM_SAVEPATH).toString()), .useDownloadPath = getOptionalBool(jsonObj, PARAM_USEDOWNLOADPATH), .downloadPath = Path(jsonObj.value(PARAM_DOWNLOADPATH).toString()), .addForced = (getEnum(jsonObj, PARAM_OPERATINGMODE) == TorrentOperatingMode::Forced), .addToQueueTop = getOptionalBool(jsonObj, PARAM_QUEUETOP), .addStopped = getOptionalBool(jsonObj, PARAM_STOPPED), .stopCondition = getOptionalEnum(jsonObj, PARAM_STOPCONDITION), .filePaths = {}, .filePriorities = {}, .skipChecking = jsonObj.value(PARAM_SKIPCHECKING).toBool(), .contentLayout = getOptionalEnum(jsonObj, PARAM_CONTENTLAYOUT), .useAutoTMM = getOptionalBool(jsonObj, PARAM_AUTOTMM), .uploadLimit = jsonObj.value(PARAM_UPLOADLIMIT).toInt(-1), .downloadLimit = jsonObj.value(PARAM_DOWNLOADLIMIT).toInt(-1), .seedingTimeLimit = jsonObj.value(PARAM_SEEDINGTIMELIMIT).toInt(DEFAULT_SEEDING_TIME_LIMIT), .inactiveSeedingTimeLimit = jsonObj.value(PARAM_INACTIVESEEDINGTIMELIMIT).toInt(DEFAULT_SEEDING_TIME_LIMIT), .ratioLimit = jsonObj.value(PARAM_RATIOLIMIT).toDouble(DEFAULT_RATIO_LIMIT), .shareLimitAction = getEnum(jsonObj, PARAM_SHARELIMITACTION, ShareLimitAction::Default), .sslParameters = { .certificate = QSslCertificate(jsonObj.value(PARAM_SSL_CERTIFICATE).toString().toLatin1()), .privateKey = Utils::SSLKey::load(jsonObj.value(PARAM_SSL_PRIVATEKEY).toString().toLatin1()), .dhParams = jsonObj.value(PARAM_SSL_DHPARAMS).toString().toLatin1() } }; return params; } QJsonObject BitTorrent::serializeAddTorrentParams(const AddTorrentParams ¶ms) { QJsonObject jsonObj { {PARAM_CATEGORY, params.category}, {PARAM_TAGS, serializeTagSet(params.tags)}, {PARAM_SAVEPATH, params.savePath.data()}, {PARAM_DOWNLOADPATH, params.downloadPath.data()}, {PARAM_OPERATINGMODE, Utils::String::fromEnum(params.addForced ? TorrentOperatingMode::Forced : TorrentOperatingMode::AutoManaged)}, {PARAM_SKIPCHECKING, params.skipChecking}, {PARAM_UPLOADLIMIT, params.uploadLimit}, {PARAM_DOWNLOADLIMIT, params.downloadLimit}, {PARAM_SEEDINGTIMELIMIT, params.seedingTimeLimit}, {PARAM_INACTIVESEEDINGTIMELIMIT, params.inactiveSeedingTimeLimit}, {PARAM_SHARELIMITACTION, Utils::String::fromEnum(params.shareLimitAction)}, {PARAM_RATIOLIMIT, params.ratioLimit}, {PARAM_SSL_CERTIFICATE, QString::fromLatin1(params.sslParameters.certificate.toPem())}, {PARAM_SSL_PRIVATEKEY, QString::fromLatin1(params.sslParameters.privateKey.toPem())}, {PARAM_SSL_DHPARAMS, QString::fromLatin1(params.sslParameters.dhParams)} }; if (params.addToQueueTop) jsonObj[PARAM_QUEUETOP] = *params.addToQueueTop; if (params.addStopped) jsonObj[PARAM_STOPPED] = *params.addStopped; if (params.stopCondition) jsonObj[PARAM_STOPCONDITION] = Utils::String::fromEnum(*params.stopCondition); if (params.contentLayout) jsonObj[PARAM_CONTENTLAYOUT] = Utils::String::fromEnum(*params.contentLayout); if (params.useAutoTMM) jsonObj[PARAM_AUTOTMM] = *params.useAutoTMM; if (params.useDownloadPath) jsonObj[PARAM_USEDOWNLOADPATH] = *params.useDownloadPath; return jsonObj; }