/* This file is part of Clementine. Copyright 2010, David Sansome Clementine 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. Clementine 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 Clementine. If not, see . */ #ifndef LASTFMSERVICE_H #define LASTFMSERVICE_H #include namespace lastfm { class Track; } #include uint qHash(const lastfm::Track& track); #include "lastfmcompat.h" #include "internet/scrobbler.h" class Application; class LastFMUrlHandler; class QAction; class QNetworkAccessManager; class Song; class LastFMService : public Scrobbler { Q_OBJECT public: LastFMService(Application* app, QObject* parent = nullptr); ~LastFMService(); static const char* kServiceName; static const char* kSettingsGroup; static const char* kAudioscrobblerClientId; static const char* kApiKey; static const char* kSecret; void ReloadSettings(); virtual QString Icon() { return ":last.fm/lastfm.png"; } // Last.fm specific stuff bool IsAuthenticated() const; bool IsSubscriber() const; bool IsScrobblingEnabled() const { return scrobbling_enabled_; } bool AreButtonsVisible() const { return buttons_visible_; } bool IsScrobbleButtonVisible() const { return scrobble_button_visible_; } bool PreferAlbumArtist() const { return prefer_albumartist_; } bool HasConnectionProblems() const { return connection_problems_; } void Authenticate(const QString& username, const QString& password); void SignOut(); void UpdateSubscriberStatus(); public slots: void NowPlaying(const Song& song); void Scrobble(); void Love(); void Ban(); void ShowConfig(); void ToggleScrobbling(); signals: void AuthenticationComplete(bool success, const QString& error_message); void ScrobblingEnabledChanged(bool value); void ButtonVisibilityChanged(bool value); void ScrobbleButtonVisibilityChanged(bool value); void PreferAlbumArtistChanged(bool value); void ScrobbleSubmitted(); void ScrobbleError(int value); void UpdatedSubscriberStatus(bool is_subscriber); void ScrobbledRadioStream(); void SavedItemsChanged(); private slots: void AuthenticateReplyFinished(QNetworkReply* reply); void UpdateSubscriberStatusFinished(QNetworkReply* reply); void ScrobblerStatus(int value); private: QString ErrorString(lastfm::ws::Error error) const; bool InitScrobbler(); lastfm::Track TrackFromSong(const Song& song) const; static QUrl FixupUrl(const QUrl& url); private: lastfm::Audioscrobbler* scrobbler_; lastfm::Track last_track_; lastfm::Track next_metadata_; bool already_scrobbled_; QUrl last_url_; bool scrobbling_enabled_; bool buttons_visible_; bool scrobble_button_visible_; bool prefer_albumartist_; QHash art_urls_; // Useful to inform the user that we can't scrobble right now bool connection_problems_; Application* app_; }; #endif // LASTFMSERVICE_H