/* * 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 #include "core/song.h" #include "internet/internetservice.h" #include "internet/internetsearchview.h" #include "settings/tidalsettingspage.h" class QSortFilterProxyModel; class QNetworkReply; class QTimer; class Application; class NetworkAccessManager; class TidalUrlHandler; class TidalRequest; class TidalFavoriteRequest; class TidalStreamURLRequest; class CollectionBackend; class CollectionModel; class TidalService : public InternetService { Q_OBJECT public: explicit TidalService(Application *app, QObject *parent); ~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() { return kLoginAttempts; } Application *app() { return app_; } bool oauth() override { return oauth_; } QString client_id() { return client_id_; } QString api_token() { return api_token_; } quint64 user_id() { return user_id_; } QString country_code() { return country_code_; } QString username() { return username_; } QString password() { return password_; } QString quality() { return quality_; } int artistssearchlimit() { return artistssearchlimit_; } int albumssearchlimit() { return albumssearchlimit_; } int songssearchlimit() { return songssearchlimit_; } bool fetchalbums() { return fetchalbums_; } QString coversize() { return coversize_; } bool download_album_covers() { return download_album_covers_; } TidalSettingsPage::StreamUrlMethod stream_url_method() { return stream_url_method_; } bool album_explicit() { return album_explicit_; } QString access_token() { return access_token_; } QString session_id() { return session_id_; } bool authenticated() override { return (!access_token_.isEmpty() || !session_id_.isEmpty()); } bool login_sent() { return login_sent_; } bool login_attempts() { return login_attempts_; } void GetStreamURL(const QUrl &url); CollectionBackend *artists_collection_backend() override { return artists_collection_backend_; } CollectionBackend *albums_collection_backend() override { return albums_collection_backend_; } CollectionBackend *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_; } QSortFilterProxyModel *artists_collection_sort_model() override { return artists_collection_sort_model_; } QSortFilterProxyModel *albums_collection_sort_model() override { return albums_collection_sort_model_; } QSortFilterProxyModel *songs_collection_sort_model() override { return songs_collection_sort_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 ArtistsProgressSetMaximumReceived(const int id, const int max); void AlbumsProgressSetMaximumReceived(const int id, const int max); void SongsProgressSetMaximumReceived(const int id, const int max); 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 HandleStreamURLFinished(const int id, const QUrl &original_url, const QUrl &stream_url, const Song::FileType filetype, const int samplerate, const int bit_depth, const qint64 duration, const QString &error = QString()); private: typedef QPair Param; typedef QList ParamList; 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; static const char *kArtistsSongsFtsTable; static const char *kAlbumsSongsFtsTable; static const char *kSongsFtsTable; Application *app_; NetworkAccessManager *network_; TidalUrlHandler *url_handler_; CollectionBackend *artists_collection_backend_; CollectionBackend *albums_collection_backend_; CollectionBackend *songs_collection_backend_; CollectionModel *artists_collection_model_; CollectionModel *albums_collection_model_; CollectionModel *songs_collection_model_; QSortFilterProxyModel *artists_collection_sort_model_; QSortFilterProxyModel *albums_collection_sort_model_; QSortFilterProxyModel *songs_collection_sort_model_; QTimer *timer_search_delay_; QTimer *timer_login_attempt_; QTimer *timer_refresh_login_; std::shared_ptr artists_request_; std::shared_ptr albums_request_; std::shared_ptr songs_request_; std::shared_ptr 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_; int next_stream_url_request_id_; QMap> stream_url_requests_; QStringList login_errors_; QList wait_for_exit_; QList replies_; }; #endif // TIDALSERVICE_H