/* * 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 . * */ #ifndef GENIUSLYRICSPROVIDER_H #define GENIUSLYRICSPROVIDER_H #include "config.h" #include #include #include #include #include #include #include #include #include #include #include "core/shared_ptr.h" #include "jsonlyricsprovider.h" #include "lyricssearchrequest.h" #include "lyricssearchresult.h" class QNetworkReply; class NetworkAccessManager; class LocalRedirectServer; class GeniusLyricsProvider : public JsonLyricsProvider { Q_OBJECT public: explicit GeniusLyricsProvider(SharedPtr network, QObject *parent = nullptr); ~GeniusLyricsProvider() override; bool IsAuthenticated() const override { return !access_token_.isEmpty(); } void Authenticate() override; void Deauthenticate() override { access_token_.clear(); } bool StartSearch(const int id, const LyricsSearchRequest &request) override; void CancelSearch(const int id) override; private: struct GeniusLyricsLyricContext { explicit GeniusLyricsLyricContext() {} QString artist; QString title; QUrl url; }; struct GeniusLyricsSearchContext { explicit GeniusLyricsSearchContext() : id(-1) {} int id; LyricsSearchRequest request; QMap requests_lyric_; LyricsSearchResults results; }; using GeniusLyricsSearchContextPtr = SharedPtr; private: void RequestAccessToken(const QUrl &url, const QUrl &redirect_url); void AuthError(const QString &error = QString(), const QVariant &debug = QVariant()); void Error(const QString &error, const QVariant &debug = QVariant()) override; void EndSearch(GeniusLyricsSearchContextPtr search, const GeniusLyricsLyricContext &lyric = GeniusLyricsLyricContext()); private slots: void HandleLoginSSLErrors(const QList &ssl_errors); void RedirectArrived(); void AccessTokenRequestFinished(QNetworkReply *reply); void HandleSearchReply(QNetworkReply *reply, const int id); void HandleLyricReply(QNetworkReply *reply, const int search_id, const QUrl &url); private: LocalRedirectServer *server_; QString code_verifier_; QString code_challenge_; QString access_token_; QStringList login_errors_; QMap> requests_search_; QList replies_; }; #endif // GENIUSLYRICSPROVIDER_H