/* * Strawberry Music Player * Copyright 2020-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 . * */ #include "config.h" #include #include #include #include #include #include #include #include #include #include #include #include #include "includes/shared_ptr.h" #include "core/logging.h" #include "core/networkaccessmanager.h" #include "albumcoverfetcher.h" #include "jsoncoverprovider.h" #include "musixmatchcoverprovider.h" using namespace Qt::Literals::StringLiterals; MusixmatchCoverProvider::MusixmatchCoverProvider(const SharedPtr network, QObject *parent) : JsonCoverProvider(u"Musixmatch"_s, true, false, 1.0, true, false, network, parent) {} MusixmatchCoverProvider::~MusixmatchCoverProvider() { while (!replies_.isEmpty()) { QNetworkReply *reply = replies_.takeFirst(); QObject::disconnect(reply, nullptr, this, nullptr); reply->abort(); reply->deleteLater(); } } bool MusixmatchCoverProvider::StartSearch(const QString &artist, const QString &album, const QString &title, const int id) { Q_UNUSED(title); if (artist.isEmpty() || album.isEmpty()) return false; QString artist_stripped = StringFixup(artist); QString album_stripped = StringFixup(album); if (artist_stripped.isEmpty() || album_stripped.isEmpty()) return false; QUrl url(QStringLiteral("https://www.musixmatch.com/album/%1/%2").arg(artist_stripped, album_stripped)); QNetworkRequest req(url); req.setAttribute(QNetworkRequest::RedirectPolicyAttribute, QNetworkRequest::NoLessSafeRedirectPolicy); QNetworkReply *reply = network_->get(req); replies_ << reply; QObject::connect(reply, &QNetworkReply::finished, this, [this, reply, id, artist, album]() { HandleSearchReply(reply, id, artist, album); }); //qLog(Debug) << "Musixmatch: Sending request for" << artist_stripped << album_stripped << url; return true; } void MusixmatchCoverProvider::CancelSearch(const int id) { Q_UNUSED(id); } void MusixmatchCoverProvider::HandleSearchReply(QNetworkReply *reply, const int id, const QString &artist, const QString &album) { if (!replies_.contains(reply)) return; replies_.removeAll(reply); QObject::disconnect(reply, nullptr, this, nullptr); reply->deleteLater(); CoverProviderSearchResults results; if (reply->error() != QNetworkReply::NoError) { Error(QStringLiteral("%1 (%2)").arg(reply->errorString()).arg(reply->error())); Q_EMIT SearchFinished(id, results); return; } if (reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt() != 200) { Error(QStringLiteral("Received HTTP code %1").arg(reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt())); Q_EMIT SearchFinished(id, results); return; } const QByteArray data = reply->readAll(); if (data.isEmpty()) { Error(u"Empty reply received from server."_s); Q_EMIT SearchFinished(id, results); return; } const QString content = QString::fromUtf8(data); const QString data_begin = ""_L1; if (!content.contains(data_begin) || !content.contains(data_end)) { Q_EMIT SearchFinished(id, results); return; } qint64 begin_idx = content.indexOf(data_begin); QString content_json; if (begin_idx > 0) { begin_idx += data_begin.length(); qint64 end_idx = content.indexOf(data_end, begin_idx); if (end_idx > begin_idx) { content_json = content.mid(begin_idx, end_idx - begin_idx); } } if (content_json.isEmpty()) { Q_EMIT SearchFinished(id, results); return; } static const QRegularExpression regex_html_tag(u"<[^>]*>"_s); if (content_json.contains(regex_html_tag)) { // Make sure it's not HTML code. Q_EMIT SearchFinished(id, results); return; } QJsonParseError error; QJsonDocument json_doc = QJsonDocument::fromJson(content_json.toUtf8(), &error); if (error.error != QJsonParseError::NoError) { Error(QStringLiteral("Failed to parse json data: %1").arg(error.errorString())); Q_EMIT SearchFinished(id, results); return; } if (json_doc.isEmpty()) { Error(u"Received empty Json document."_s, data); Q_EMIT SearchFinished(id, results); return; } if (!json_doc.isObject()) { Error(u"Json document is not an object."_s, json_doc); Q_EMIT SearchFinished(id, results); return; } QJsonObject obj_data = json_doc.object(); if (obj_data.isEmpty()) { Error(u"Received empty Json object."_s, json_doc); Q_EMIT SearchFinished(id, results); return; } if (!obj_data.contains("props"_L1) || !obj_data["props"_L1].isObject()) { Error(u"Json reply is missing props."_s, obj_data); Q_EMIT SearchFinished(id, results); return; } obj_data = obj_data["props"_L1].toObject(); if (!obj_data.contains("pageProps"_L1) || !obj_data["pageProps"_L1].isObject()) { Error(u"Json props is missing pageProps."_s, obj_data); Q_EMIT SearchFinished(id, results); return; } obj_data = obj_data["pageProps"_L1].toObject(); if (!obj_data.contains("data"_L1) || !obj_data["data"_L1].isObject()) { Error(u"Json pageProps is missing data."_s, obj_data); Q_EMIT SearchFinished(id, results); return; } obj_data = obj_data["data"_L1].toObject(); if (!obj_data.contains("albumGet"_L1) || !obj_data["albumGet"_L1].isObject()) { Error(u"Json data is missing albumGet."_s, obj_data); Q_EMIT SearchFinished(id, results); return; } obj_data = obj_data["albumGet"_L1].toObject(); if (!obj_data.contains("data"_L1) || !obj_data["data"_L1].isObject()) { Error(u"Json albumGet reply is missing data."_s, obj_data); Q_EMIT SearchFinished(id, results); return; } obj_data = obj_data["data"_L1].toObject(); CoverProviderSearchResult result; if (obj_data.contains("artistName"_L1) && obj_data["artistName"_L1].isString()) { result.artist = obj_data["artistName"_L1].toString(); } if (obj_data.contains("name"_L1) && obj_data["name"_L1].isString()) { result.album = obj_data["name"_L1].toString(); } if (result.artist.compare(artist, Qt::CaseInsensitive) != 0 && result.album.compare(album, Qt::CaseInsensitive) != 0) { Q_EMIT SearchFinished(id, results); return; } const QList> cover_sizes = QList>() << qMakePair(u"coverImage800x800"_s, QSize(800, 800)) << qMakePair(u"coverImage500x500"_s, QSize(500, 500)) << qMakePair(u"coverImage350x350"_s, QSize(350, 350)); for (const QPair &cover_size : cover_sizes) { if (!obj_data.contains(cover_size.first)) continue; QUrl cover_url(obj_data[cover_size.first].toString()); if (cover_url.isValid()) { result.image_url = cover_url; result.image_size = cover_size.second; results << result; } } Q_EMIT SearchFinished(id, results); } void MusixmatchCoverProvider::Error(const QString &error, const QVariant &debug) { qLog(Error) << "Musixmatch:" << error; if (debug.isValid()) qLog(Debug) << debug; }