/* * Strawberry Music Player * Copyright 2018-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 TIDALSERVICE_H #define TIDALSERVICE_H #include "config.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include "core/shared_ptr.h" #include "core/song.h" #include "internet/internetservice.h" #include "internet/internetsearchview.h" #include "settings/tidalsettingspage.h" class QNetworkReply; class QTimer; class Application; class NetworkAccessManager; class TidalUrlHandler; class TidalRequest; class TidalFavoriteRequest; class TidalStreamURLRequest; class CollectionBackend; class CollectionModel; class CollectionFilter; class TidalService : public InternetService { Q_OBJECT public: explicit TidalService(Application *app, QObject *parent = nullptr); ~TidalService() override; static const Song::Source kSource; static const char kApiUrl[]; static const char kResourcesUrl[]; void Exit() override; void ReloadSettings() override; void Logout(); int Search(const QString &text, InternetSearchView::SearchType type) override; void CancelSearch() override; int max_login_attempts() const { return kLoginAttempts; } Application *app() const { return app_; } bool oauth() const override { return oauth_; } QString client_id() const { return client_id_; } QString api_token() const { return api_token_; } quint64 user_id() const { return user_id_; } QString country_code() const { return country_code_; } QString username() const { return username_; } QString password() const { return password_; } QString quality() const { return quality_; } int artistssearchlimit() const { return artistssearchlimit_; } int albumssearchlimit() const { return albumssearchlimit_; } int songssearchlimit() const { return songssearchlimit_; } bool fetchalbums() const { return fetchalbums_; } QString coversize() const { return coversize_; } bool download_album_covers() const { return download_album_covers_; } TidalSettingsPage::StreamUrlMethod stream_url_method() const { return stream_url_method_; } bool album_explicit() const { return album_explicit_; } QString access_token() const { return access_token_; } QString session_id() const { return session_id_; } bool authenticated() const override { return (!access_token_.isEmpty() || !session_id_.isEmpty()); } bool login_sent() const { return login_sent_; } bool login_attempts() const { return login_attempts_; } uint GetStreamURL(const QUrl &url, QString &error); SharedPtr artists_collection_backend() override { return artists_collection_backend_; } SharedPtr albums_collection_backend() override { return albums_collection_backend_; } SharedPtr songs_collection_backend() override { return songs_collection_backend_; } CollectionModel *artists_collection_model() override { return artists_collection_model_; } CollectionModel *albums_collection_model() override { return albums_collection_model_; } CollectionModel *songs_collection_model() override { return songs_collection_model_; } CollectionFilter *artists_collection_filter_model() override { return artists_collection_filter_model_; } CollectionFilter *albums_collection_filter_model() override { return albums_collection_filter_model_; } CollectionFilter *songs_collection_filter_model() override { return songs_collection_filter_model_; } public slots: void ShowConfig() override; void StartAuthorization(const QString &client_id); void TryLogin(); void SendLogin(); void SendLoginWithCredentials(const QString &api_token, const QString &username, const QString &password); void GetArtists() override; void GetAlbums() override; void GetSongs() override; void ResetArtistsRequest() override; void ResetAlbumsRequest() override; void ResetSongsRequest() override; void AuthorizationUrlReceived(const QUrl &url); private slots: void ExitReceived(); void RequestNewAccessToken() { RequestAccessToken(); } void HandleLoginSSLErrors(const QList &ssl_errors); void AccessTokenRequestFinished(QNetworkReply *reply); void HandleAuthReply(QNetworkReply *reply); void ResetLoginAttempts(); void StartSearch(); void ArtistsResultsReceived(const int id, const SongMap &songs, const QString &error); void AlbumsResultsReceived(const int id, const SongMap &songs, const QString &error); void SongsResultsReceived(const int id, const SongMap &songs, const QString &error); void SearchResultsReceived(const int id, const SongMap &songs, const QString &error); void ArtistsUpdateStatusReceived(const int id, const QString &text); void AlbumsUpdateStatusReceived(const int id, const QString &text); void SongsUpdateStatusReceived(const int id, const QString &text); void ArtistsUpdateProgressReceived(const int id, const int progress); void AlbumsUpdateProgressReceived(const int id, const int progress); void SongsUpdateProgressReceived(const int id, const int progress); void HandleStreamURLFailure(const uint id, const QUrl &media_url, const QString &error); void HandleStreamURLSuccess(const uint id, const QUrl &media_url, const QUrl &stream_url, const Song::FileType filetype, const int samplerate, const int bit_depth, const qint64 duration); private: using Param = QPair; using ParamList = QList; void LoadSession(); void RequestAccessToken(const QString &code = QString()); void SendSearch(); void LoginError(const QString &error = QString(), const QVariant &debug = QVariant()); static const char kOAuthUrl[]; static const char kOAuthAccessTokenUrl[]; static const char kOAuthRedirectUrl[]; static const char kAuthUrl[]; static const int kLoginAttempts; static const int kTimeResetLoginAttempts; static const char kArtistsSongsTable[]; static const char kAlbumsSongsTable[]; static const char kSongsTable[]; Application *app_; SharedPtr network_; TidalUrlHandler *url_handler_; SharedPtr artists_collection_backend_; SharedPtr albums_collection_backend_; SharedPtr songs_collection_backend_; CollectionModel *artists_collection_model_; CollectionModel *albums_collection_model_; CollectionModel *songs_collection_model_; CollectionFilter *artists_collection_filter_model_; CollectionFilter *albums_collection_filter_model_; CollectionFilter *songs_collection_filter_model_; QTimer *timer_search_delay_; QTimer *timer_login_attempt_; QTimer *timer_refresh_login_; SharedPtr artists_request_; SharedPtr albums_request_; SharedPtr songs_request_; SharedPtr search_request_; TidalFavoriteRequest *favorite_request_; bool enabled_; bool oauth_; QString client_id_; QString api_token_; quint64 user_id_; QString country_code_; QString username_; QString password_; QString quality_; int artistssearchlimit_; int albumssearchlimit_; int songssearchlimit_; bool fetchalbums_; QString coversize_; bool download_album_covers_; TidalSettingsPage::StreamUrlMethod stream_url_method_; bool album_explicit_; QString access_token_; QString refresh_token_; QString session_id_; quint64 expires_in_; quint64 login_time_; int pending_search_id_; int next_pending_search_id_; QString pending_search_text_; InternetSearchView::SearchType pending_search_type_; int search_id_; QString search_text_; bool login_sent_; int login_attempts_; QString code_verifier_; QString code_challenge_; uint next_stream_url_request_id_; QMap> stream_url_requests_; QStringList login_errors_; QList wait_for_exit_; QList replies_; }; using TidalServicePtr = SharedPtr; #endif // TIDALSERVICE_H