2020-05-10 12:49:11 +02:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
2021-03-20 21:14:47 +01:00
|
|
|
* Copyright 2018-2021, Jonas Kvinge <jonas@jkvinge.net>
|
2020-05-10 12:49:11 +02:00
|
|
|
*
|
|
|
|
* 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 <QObject>
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <QString>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonObject>
|
|
|
|
|
2023-07-21 05:55:24 +02:00
|
|
|
#include "core/shared_ptr.h"
|
2020-05-10 12:49:11 +02:00
|
|
|
#include "core/application.h"
|
2021-08-12 23:00:10 +02:00
|
|
|
#include "core/networkaccessmanager.h"
|
2020-05-10 12:49:11 +02:00
|
|
|
#include "coverprovider.h"
|
|
|
|
#include "jsoncoverprovider.h"
|
|
|
|
|
2023-07-21 05:55:24 +02:00
|
|
|
JsonCoverProvider::JsonCoverProvider(const QString &name, const bool enabled, const bool authentication_required, const float quality, const bool batch, const bool allow_missing_album, Application *app, SharedPtr<NetworkAccessManager> network, QObject *parent)
|
2021-08-12 23:00:10 +02:00
|
|
|
: CoverProvider(name, enabled, authentication_required, quality, batch, allow_missing_album, app, network, parent) {}
|
2020-05-10 12:49:11 +02:00
|
|
|
|
|
|
|
QJsonObject JsonCoverProvider::ExtractJsonObj(const QByteArray &data) {
|
|
|
|
|
|
|
|
QJsonParseError json_error;
|
|
|
|
QJsonDocument json_doc = QJsonDocument::fromJson(data, &json_error);
|
|
|
|
|
|
|
|
if (json_error.error != QJsonParseError::NoError) {
|
2024-04-09 23:20:26 +02:00
|
|
|
Error(QStringLiteral("Failed to parse json data: %1").arg(json_error.errorString()));
|
2020-05-10 12:49:11 +02:00
|
|
|
return QJsonObject();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (json_doc.isEmpty()) {
|
2024-04-09 23:20:26 +02:00
|
|
|
Error(QStringLiteral("Received empty Json document."), data);
|
2020-05-10 12:49:11 +02:00
|
|
|
return QJsonObject();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!json_doc.isObject()) {
|
2024-04-09 23:20:26 +02:00
|
|
|
Error(QStringLiteral("Json document is not an object."), json_doc);
|
2020-05-10 12:49:11 +02:00
|
|
|
return QJsonObject();
|
|
|
|
}
|
|
|
|
|
|
|
|
QJsonObject json_obj = json_doc.object();
|
|
|
|
if (json_obj.isEmpty()) {
|
2024-04-09 23:20:26 +02:00
|
|
|
Error(QStringLiteral("Received empty Json object."), json_doc);
|
2020-05-10 12:49:11 +02:00
|
|
|
return QJsonObject();
|
|
|
|
}
|
|
|
|
|
|
|
|
return json_obj;
|
|
|
|
|
|
|
|
}
|