mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-23 12:09:50 +00:00
31 lines
818 B
C++
31 lines
818 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2023 The Monero Project
|
|
|
|
#ifndef FEATHER_NETWORKING_H
|
|
#define FEATHER_NETWORKING_H
|
|
|
|
#include <QRegularExpression>
|
|
#include <QtNetwork>
|
|
#include <QNetworkAccessManager>
|
|
#include <QNetworkReply>
|
|
|
|
#include "utils/Utils.h"
|
|
|
|
class UtilsNetworking : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit UtilsNetworking(QObject *parent = nullptr);
|
|
|
|
QNetworkReply* get(const QString &url);
|
|
QNetworkReply* getJson(const QString &url);
|
|
QNetworkReply* postJson(const QString &url, const QJsonObject &data);
|
|
void setUserAgent(const QString &userAgent);
|
|
|
|
private:
|
|
QString m_userAgent = "Mozilla/5.0 (Windows NT 10.0; rv:102.0) Gecko/20100101 Firefox/102.0";
|
|
QNetworkAccessManager *m_networkAccessManager;
|
|
};
|
|
|
|
#endif //FEATHER_NETWORKING_H
|