mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 13:04:23 +00:00
4ca6de2b54
PR #16703.
81 lines
3.0 KiB
C++
81 lines
3.0 KiB
C++
/*
|
|
* Bittorrent Client using Qt and libtorrent.
|
|
* Copyright (C) 2021 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 "categoryoptions.h"
|
|
|
|
#include <QJsonObject>
|
|
#include <QJsonValue>
|
|
|
|
#include "base/global.h"
|
|
|
|
const QString OPTION_SAVEPATH = u"save_path"_qs;
|
|
const QString OPTION_DOWNLOADPATH = u"download_path"_qs;
|
|
|
|
BitTorrent::CategoryOptions BitTorrent::CategoryOptions::fromJSON(const QJsonObject &jsonObj)
|
|
{
|
|
CategoryOptions options;
|
|
options.savePath = Path(jsonObj.value(OPTION_SAVEPATH).toString());
|
|
|
|
const QJsonValue downloadPathValue = jsonObj.value(OPTION_DOWNLOADPATH);
|
|
if (downloadPathValue.isBool())
|
|
options.downloadPath = {downloadPathValue.toBool(), {}};
|
|
else if (downloadPathValue.isString())
|
|
options.downloadPath = {true, Path(downloadPathValue.toString())};
|
|
|
|
return options;
|
|
}
|
|
|
|
QJsonObject BitTorrent::CategoryOptions::toJSON() const
|
|
{
|
|
QJsonValue downloadPathValue = QJsonValue::Undefined;
|
|
if (downloadPath)
|
|
{
|
|
if (downloadPath->enabled)
|
|
downloadPathValue = downloadPath->path.data();
|
|
else
|
|
downloadPathValue = false;
|
|
}
|
|
|
|
return {
|
|
{OPTION_SAVEPATH, savePath.data()},
|
|
{OPTION_DOWNLOADPATH, downloadPathValue}
|
|
};
|
|
}
|
|
|
|
bool BitTorrent::operator==(const BitTorrent::CategoryOptions::DownloadPathOption &left, const BitTorrent::CategoryOptions::DownloadPathOption &right)
|
|
{
|
|
return ((left.enabled == right.enabled)
|
|
&& (left.path == right.path));
|
|
}
|
|
|
|
bool BitTorrent::operator==(const BitTorrent::CategoryOptions &left, const BitTorrent::CategoryOptions &right)
|
|
{
|
|
return ((left.savePath == right.savePath)
|
|
&& (left.downloadPath == right.downloadPath));
|
|
}
|