/* * Strawberry Music Player * Copyright 2018, 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 LISTENBRAINZSCROBBLER_H #define LISTENBRAINZSCROBBLER_H #include "config.h" #include #include #include #include #include #include #include #include #include #include "core/song.h" #include "scrobblerservice.h" #include "scrobblercache.h" class QNetworkReply; class Application; class NetworkAccessManager; class LocalRedirectServer; class ListenBrainzScrobbler : public ScrobblerService { Q_OBJECT public: explicit ListenBrainzScrobbler(Application *app, QObject *parent = nullptr); ~ListenBrainzScrobbler() override; static const char *kName; static const char *kSettingsGroup; void ReloadSettings() override; void LoadSession(); bool IsEnabled() const override { return enabled_; } bool IsAuthenticated() const override { return !access_token_.isEmpty() && !user_token_.isEmpty(); } bool IsSubmitted() const override { return submitted_; } void Submitted() override { submitted_ = true; } QString user_token() const { return user_token_; } void Authenticate(const bool https = false); void Logout(); void ShowConfig(); void Submit() override; void UpdateNowPlaying(const Song &song) override; void ClearPlaying() override; void Scrobble(const Song &song) override; signals: void AuthenticationComplete(bool success, QString error = QString()); public slots: void WriteCache() override { cache_->WriteCache(); } private slots: void RedirectArrived(); void AuthenticateReplyFinished(QNetworkReply *reply); void RequestNewAccessToken() { RequestAccessToken(); } void UpdateNowPlayingRequestFinished(QNetworkReply *reply); void ScrobbleRequestFinished(QNetworkReply *reply, QList); private: QNetworkReply *CreateRequest(const QUrl &url, const QJsonDocument &json_doc); QByteArray GetReplyData(QNetworkReply *reply); void AuthError(const QString &error); void Error(const QString &error, const QVariant &debug = QVariant()) override; void RequestAccessToken(const QUrl &redirect_url = QUrl(), const QString &code = QString()); void DoSubmit() override; void CheckScrobblePrevSong(); static const char *kOAuthAuthorizeUrl; static const char *kOAuthAccessTokenUrl; static const char *kOAuthRedirectUrl; static const char *kApiUrl; static const char *kClientIDB64; static const char *kClientSecretB64; static const char *kCacheFile; static const int kScrobblesPerRequest; Application *app_; NetworkAccessManager *network_; ScrobblerCache *cache_; LocalRedirectServer *server_; bool enabled_; QString user_token_; QString access_token_; qint64 expires_in_; QString token_type_; QString refresh_token_; quint64 login_time_; bool submitted_; Song song_playing_; bool scrobbled_; quint64 timestamp_; QTimer refresh_login_timer_; QList replies_; }; #endif // LISTENBRAINZSCROBBLER_H