Clementine-audio-player-Mac.../src/radio/lastfmservice.h

201 lines
5.2 KiB
C++

/* This file is part of Clementine.
Copyright 2010, David Sansome <me@davidsansome.com>
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 <http://www.gnu.org/licenses/>.
*/
#ifndef LASTFMSERVICE_H
#define LASTFMSERVICE_H
namespace lastfm {
class RadioStation;
class Track;
}
#include <QtGlobal>
uint qHash(const lastfm::Track& track);
#include "fixlastfm.h"
#include <lastfm/Track>
#include <lastfm/ws.h>
#include "radiomodel.h"
#include "radioservice.h"
#include "lastfmstationdialog.h"
#include "core/song.h"
#include "playlist/playlistitem.h"
#include <QMap>
#include <QMenu>
#include <QQueue>
#include <boost/scoped_ptr.hpp>
class QAction;
class QNetworkAccessManager;
class LastFMService : public RadioService {
Q_OBJECT
public:
LastFMService(RadioModel* parent);
~LastFMService();
static const char* kServiceName;
static const char* kSettingsGroup;
static const char* kAudioscrobblerClientId;
static const char* kApiKey;
static const char* kSecret;
static const char* kUrlArtist;
static const char* kUrlTag;
static const char* kUrlCustom;
static const char* kTitleArtist;
static const char* kTitleTag;
static const char* kTitleCustom;
enum ItemType {
Type_Root = RadioModel::TypeCount,
Type_Artists,
Type_Tags,
Type_Custom,
Type_Friends,
Type_Neighbours,
Type_OtherUser,
};
// RadioService
QStandardItem* CreateRootItem();
void LazyPopulate(QStandardItem* parent);
void ShowContextMenu(const QModelIndex& index, const QPoint &global_pos);
PlaylistItem::SpecialLoadResult StartLoading(const QUrl& url);
PlaylistItem::SpecialLoadResult LoadNext(const QUrl& url);
PlaylistItem::Options playlistitem_options() const;
void ReloadSettings();
virtual QString Icon() { return ":last.fm/lastfm.png"; }
// Last.fm specific stuff
bool IsAuthenticated() const;
bool IsScrobblingEnabled() const { return scrobbling_enabled_; }
bool AreButtonsVisible() const { return buttons_visible_; }
void Authenticate(const QString& username, const QString& password);
void SignOut();
void FetchMoreTracks();
PlaylistItemPtr PlaylistItemForUrl(const QUrl& url);
public slots:
void NowPlaying(const Song& song);
void Scrobble();
void Love();
void Ban();
void ShowConfig();
signals:
void AuthenticationComplete(bool success);
void ScrobblingEnabledChanged(bool value);
void ButtonVisibilityChanged(bool value);
private slots:
void AuthenticateReplyFinished();
void RefreshFriendsFinished();
void RefreshNeighboursFinished();
void TunerTrackAvailable();
void TunerError(lastfm::ws::Error error);
void AddToPlaylist();
void LoadToPlaylist();
void OpenInNewPlaylist();
void AddArtistRadio();
void AddTagRadio();
void AddCustomRadio();
void Remove();
// Radio tuner.
void FetchMoreTracksFinished();
void TuneFinished();
void StreamMetadataReady();
private:
QStandardItem* CreateStationItem(QStandardItem* parent,
const QString& name, const QString& icon, const QString& url,
const QString& title);
QString ErrorString(lastfm::ws::Error error) const;
bool InitScrobbler();
lastfm::Track TrackFromSong(const Song& song) const;
void RefreshFriends();
void RefreshNeighbours();
void AddArtistOrTag(const QString& name,
LastFMStationDialog::Type dialog_type,
const QString& url_pattern,
const QString& title_pattern,
const QString& icon, QStandardItem* list);
void SaveList(const QString& name, QStandardItem* list) const;
void RestoreList(const QString& name,
const QString& url_pattern,
const QString& title_pattern,
const QIcon& icon, QStandardItem* parent);
static QUrl FixupUrl(const QUrl& url);
void Tune(const lastfm::RadioStation& station);
void AddSelectedToPlaylist(bool clear_first);
private:
lastfm::Audioscrobbler* scrobbler_;
lastfm::Track last_track_;
lastfm::Track next_metadata_;
QQueue<lastfm::Track> playlist_;
boost::scoped_ptr<LastFMStationDialog> station_dialog_;
boost::scoped_ptr<QMenu> context_menu_;
QAction* play_action_;
QAction* load_action_;
QAction* open_in_new_playlist_;
QAction* remove_action_;
QAction* add_artist_action_;
QAction* add_tag_action_;
QAction* add_custom_action_;
QStandardItem* context_item_;
QUrl last_url_;
bool initial_tune_;
int tune_task_id_;
bool scrobbling_enabled_;
bool buttons_visible_;
QStandardItem* artist_list_;
QStandardItem* tag_list_;
QStandardItem* custom_list_;
QStandardItem* friends_list_;
QStandardItem* neighbours_list_;
QHash<lastfm::Track, QString> art_urls_;
};
#endif // LASTFMSERVICE_H