/* * Strawberry Music Player * Copyright 2020-2022, 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 MUSIXMATCHLYRICSPROVIDER_H #define MUSIXMATCHLYRICSPROVIDER_H #include "config.h" #include #include #include #include #include #include #include "core/shared_ptr.h" #include "jsonlyricsprovider.h" #include "lyricssearchrequest.h" #include "lyricssearchresult.h" #include "providers/musixmatchprovider.h" class QNetworkReply; class NetworkAccessManager; class MusixmatchLyricsProvider : public JsonLyricsProvider, public MusixmatchProvider { Q_OBJECT public: explicit MusixmatchLyricsProvider(SharedPtr network, QObject *parent = nullptr); ~MusixmatchLyricsProvider() override; bool StartSearch(const int id, const LyricsSearchRequest &request) override; void CancelSearch(const int id) override; private: struct LyricsSearchContext { explicit LyricsSearchContext() : id(-1) {} int id; LyricsSearchRequest request; QList requests_lyrics_; LyricsSearchResults results; }; using LyricsSearchContextPtr = SharedPtr; bool SendSearchRequest(LyricsSearchContextPtr search); bool CreateLyricsRequest(LyricsSearchContextPtr search); void SendLyricsRequest(const LyricsSearchRequest &request, const QString &artist, const QString &title); bool SendLyricsRequest(LyricsSearchContextPtr search, const QUrl &url); void EndSearch(LyricsSearchContextPtr search, const QUrl &url = QUrl()); void Error(const QString &error, const QVariant &debug = QVariant()) override; private slots: void HandleSearchReply(QNetworkReply *reply, LyricsSearchContextPtr search); void HandleLyricsReply(QNetworkReply *reply, LyricsSearchContextPtr search, const QUrl &url); private: QList requests_search_; QList replies_; bool use_api_; }; #endif // MUSIXMATCHLYRICSPROVIDER_H