-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add WebAPI for fetching torrent metadata #21015
base: master
Are you sure you want to change the base?
Changes from all commits
285395e
4c901c7
b204a54
e544b32
9fda77c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,7 @@ | |
#include <QVariant> | ||
|
||
#include "base/applicationcomponent.h" | ||
#include "apistatus.h" | ||
|
||
using DataMap = QHash<QString, QByteArray>; | ||
using StringMap = QHash<QString, QString>; | ||
|
@@ -43,6 +44,7 @@ struct APIResult | |
QVariant data; | ||
QString mimeType; | ||
QString filename; | ||
APIStatus status = APIStatus::Ok; | ||
|
||
void clear(); | ||
}; | ||
|
@@ -67,6 +69,8 @@ class APIController : public ApplicationComponent<QObject> | |
void setResult(const QJsonObject &result); | ||
void setResult(const QByteArray &result, const QString &mimeType = {}, const QString &filename = {}); | ||
|
||
void setStatus(APIStatus status); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe just add another parameter to void setResult(const QJsonObject &result, APIStatus status = APIStatus::Ok); There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How would this work for cases where we don't want to send any data? For example, setting an explicit |
||
|
||
private: | ||
StringMap m_params; | ||
DataMap m_data; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* Bittorrent Client using Qt and libtorrent. | ||
* Copyright (C) 2024 Thomas Piccirello <thomas@piccirello.com> | ||
* | ||
* 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. | ||
*/ | ||
|
||
#pragma once | ||
|
||
enum class APIStatus | ||
{ | ||
Ok, | ||
Async | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would move them to "api" subfolder.