2018-12-23 18:54:27 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
2023-03-25 14:25:21 +01:00
|
|
|
* Copyright 2018-2023, Jonas Kvinge <jonas@jkvinge.net>
|
2018-12-23 18:54:27 +01: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"
|
|
|
|
|
2020-02-09 02:29:35 +01:00
|
|
|
#include <QtGlobal>
|
2018-12-23 18:54:27 +01:00
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonObject>
|
|
|
|
|
|
|
|
#include "scrobblerservice.h"
|
|
|
|
|
2023-03-25 14:25:21 +01:00
|
|
|
#include "core/song.h"
|
|
|
|
|
2023-04-21 20:20:53 +02:00
|
|
|
ScrobblerService::ScrobblerService(const QString &name, QObject *parent) : QObject(parent), name_(name) {}
|
2018-12-23 18:54:27 +01:00
|
|
|
|
2023-04-21 02:11:23 +02:00
|
|
|
bool ScrobblerService::ExtractJsonObj(const QByteArray &data, QJsonObject &json_obj, QString &error_description) {
|
2018-12-23 18:54:27 +01:00
|
|
|
|
2023-04-21 02:11:23 +02:00
|
|
|
QJsonParseError json_parse_error;
|
|
|
|
const QJsonDocument json_doc = QJsonDocument::fromJson(data, &json_parse_error);
|
2018-12-23 18:54:27 +01:00
|
|
|
|
2023-04-21 02:11:23 +02:00
|
|
|
if (json_parse_error.error != QJsonParseError::NoError) {
|
|
|
|
error_description = json_parse_error.errorString();
|
|
|
|
return false;
|
2018-12-23 18:54:27 +01:00
|
|
|
}
|
2023-04-21 02:11:23 +02:00
|
|
|
|
|
|
|
if (json_doc.isObject()) {
|
|
|
|
json_obj = json_doc.object();
|
2018-12-23 18:54:27 +01:00
|
|
|
}
|
|
|
|
|
2023-04-21 02:11:23 +02:00
|
|
|
return true;
|
2018-12-23 18:54:27 +01:00
|
|
|
|
|
|
|
}
|
2023-03-25 14:25:21 +01:00
|
|
|
|
|
|
|
QString ScrobblerService::StripAlbum(QString album) const {
|
|
|
|
|
|
|
|
return album.remove(Song::kAlbumRemoveDisc).remove(Song::kAlbumRemoveMisc);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
QString ScrobblerService::StripTitle(QString title) const {
|
|
|
|
|
|
|
|
return title.remove(Song::kTitleRemoveMisc);
|
|
|
|
|
|
|
|
}
|