/* * Strawberry Music Player * Copyright 2019-2021, Jonas Kvinge * * Strawberry 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 3 of the License, or * (at your option) any later version. * * Strawberry 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 Strawberry. If not, see . * */ #ifndef SUBSONICBASEREQUEST_H #define SUBSONICBASEREQUEST_H #include "config.h" #include #include #include #include #include #include #include #include #include #include #include #include #include "subsonicservice.h" class QNetworkAccessManager; class QNetworkReply; class SubsonicBaseRequest : public QObject { Q_OBJECT public: explicit SubsonicBaseRequest(SubsonicService *service, QObject *parent = nullptr); protected: typedef QPair Param; typedef QList ParamList; QUrl CreateUrl(const QString &ressource_name, const QList ¶ms_provided) const; QNetworkReply *CreateGetRequest(const QString &ressource_name, const QList ¶ms_provided); QByteArray GetReplyData(QNetworkReply *reply); QJsonObject ExtractJsonObj(QByteArray &data); virtual void Error(const QString &error, const QVariant &debug = QVariant()) = 0; static QString ErrorsToHTML(const QStringList &errors); QString client_name() const { return service_->client_name(); } QString api_version() const { return service_->api_version(); } QUrl server_url() const { return service_->server_url(); } QString username() const { return service_->username(); } QString password() const { return service_->password(); } bool http2() const { return service_->http2(); } bool verify_certificate() const { return service_->verify_certificate(); } bool download_album_covers() const { return service_->download_album_covers(); } private slots: void HandleSSLErrors(const QList &ssl_errors); private: SubsonicService *service_; std::unique_ptr network_; }; #endif // SUBSONICBASEREQUEST_H