127 lines
4.0 KiB
C++
127 lines
4.0 KiB
C++
/*
|
|
* Strawberry Music Player
|
|
* Copyright 2022-2025, Jonas Kvinge <jonas@jkvinge.net>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <QString>
|
|
#include <QNetworkReply>
|
|
|
|
#include "includes/shared_ptr.h"
|
|
#include "core/networkaccessmanager.h"
|
|
#include "spotifyservice.h"
|
|
#include "spotifybaserequest.h"
|
|
|
|
using namespace Qt::Literals::StringLiterals;
|
|
|
|
SpotifyBaseRequest::SpotifyBaseRequest(SpotifyService *service, const SharedPtr<NetworkAccessManager> network, QObject *parent)
|
|
: JsonBaseRequest(network, parent),
|
|
service_(service) {}
|
|
|
|
QString SpotifyBaseRequest::service_name() const {
|
|
|
|
return service_->name();
|
|
|
|
}
|
|
|
|
bool SpotifyBaseRequest::authentication_required() const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
bool SpotifyBaseRequest::authenticated() const {
|
|
|
|
return service_->authenticated();
|
|
|
|
}
|
|
|
|
bool SpotifyBaseRequest::use_authorization_header() const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
QByteArray SpotifyBaseRequest::authorization_header() const {
|
|
|
|
return service_->authorization_header();
|
|
|
|
}
|
|
|
|
QNetworkReply *SpotifyBaseRequest::CreateRequest(const QString &ressource_name, const ParamList ¶ms_provided) {
|
|
|
|
return CreateGetRequest(QUrl(QLatin1String(SpotifyService::kApiUrl) + QLatin1Char('/') + ressource_name), params_provided);
|
|
|
|
}
|
|
|
|
JsonBaseRequest::JsonObjectResult SpotifyBaseRequest::ParseJsonObject(QNetworkReply *reply) {
|
|
|
|
if (reply->error() != QNetworkReply::NoError && reply->error() < 200) {
|
|
return ReplyDataResult(ErrorCode::NetworkError, QStringLiteral("%1 (%2)").arg(reply->errorString()).arg(reply->error()));
|
|
}
|
|
|
|
JsonObjectResult result(ErrorCode::Success);
|
|
result.network_error = reply->error();
|
|
if (reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).isValid()) {
|
|
result.http_status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
|
}
|
|
|
|
const QByteArray data = reply->readAll();
|
|
if (!data.isEmpty()) {
|
|
QJsonParseError json_parse_error;
|
|
const QJsonDocument json_document = QJsonDocument::fromJson(data, &json_parse_error);
|
|
if (json_parse_error.error == QJsonParseError::NoError) {
|
|
const QJsonObject json_object = json_document.object();
|
|
if (json_object.contains("error"_L1) && json_object["error"_L1].isObject()) {
|
|
const QJsonObject object_error = json_object["error"_L1].toObject();
|
|
if (object_error.contains("status"_L1) && object_error.contains("message"_L1)) {
|
|
const int status = object_error["status"_L1].toInt();
|
|
const QString message = object_error["message"_L1].toString();
|
|
result.error_code = ErrorCode::APIError;
|
|
result.error_message = QStringLiteral("%1 (%2)").arg(message).arg(status);
|
|
}
|
|
}
|
|
else {
|
|
result.json_object = json_document.object();
|
|
}
|
|
}
|
|
else {
|
|
result.error_code = ErrorCode::ParseError;
|
|
result.error_message = json_parse_error.errorString();
|
|
}
|
|
}
|
|
|
|
if (result.error_code != ErrorCode::APIError) {
|
|
if (reply->error() != QNetworkReply::NoError) {
|
|
result.error_code = ErrorCode::NetworkError;
|
|
result.error_message = QStringLiteral("%1 (%2)").arg(reply->errorString()).arg(reply->error());
|
|
}
|
|
else if (result.http_status_code < 200 || result.http_status_code > 207) {
|
|
result.error_code = ErrorCode::HttpError;
|
|
result.error_message = QStringLiteral("Received HTTP code %1").arg(result.http_status_code);
|
|
}
|
|
}
|
|
|
|
if (reply->error() == QNetworkReply::AuthenticationRequiredError) {
|
|
service_->ClearSession();
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|