From 3769ef3208ebb13e6c193702dd1fa7b22c2f7f91 Mon Sep 17 00:00:00 2001 From: Christopher Reichert Date: Sat, 25 Jun 2011 21:03:45 -0500 Subject: [PATCH] Send UnLove track to LastFm. --- src/audiocontrols.cpp | 12 ++++++++---- .../infoplugins/generic/lastfmplugin.cpp | 19 ++++++++++++++----- .../infoplugins/generic/lastfmplugin.h | 2 +- 3 files changed, 23 insertions(+), 10 deletions(-) diff --git a/src/audiocontrols.cpp b/src/audiocontrols.cpp index 42cc30ad7..3ecee5b18 100644 --- a/src/audiocontrols.cpp +++ b/src/audiocontrols.cpp @@ -510,18 +510,22 @@ AudioControls::onLoveButtonClicked( bool checked ) trackInfo["artist"] = m_currentTrack->artist()->name(); trackInfo["album"] = m_currentTrack->album()->name(); - Tomahawk::InfoSystem::InfoSystem::instance()->pushInfo( - s_acInfoIdentifier, Tomahawk::InfoSystem::InfoLove, - QVariant::fromValue< Tomahawk::InfoSystem::InfoCriteriaHash >( trackInfo ) ); - if ( checked ) { + Tomahawk::InfoSystem::InfoSystem::instance()->pushInfo( + s_acInfoIdentifier, Tomahawk::InfoSystem::InfoLove, + QVariant::fromValue< Tomahawk::InfoSystem::InfoCriteriaHash >( trackInfo ) ); + DatabaseCommand_SocialAction* cmd = new DatabaseCommand_SocialAction( m_currentTrack, QString( "Love" ), QString( "true") ); Database::instance()->enqueue( QSharedPointer(cmd) ); ui->loveButton->setPixmap( RESPATH "images/loved.png" ); } else { + Tomahawk::InfoSystem::InfoSystem::instance()->pushInfo( + s_acInfoIdentifier, Tomahawk::InfoSystem::InfoUnLove, + QVariant::fromValue< Tomahawk::InfoSystem::InfoCriteriaHash >( trackInfo ) ); + DatabaseCommand_SocialAction* cmd = new DatabaseCommand_SocialAction( m_currentTrack, QString( "Love" ), QString( "false" ) ); Database::instance()->enqueue( QSharedPointer(cmd) ); ui->loveButton->setPixmap( RESPATH "images/not-loved.png" ); diff --git a/src/libtomahawk/infosystem/infoplugins/generic/lastfmplugin.cpp b/src/libtomahawk/infosystem/infoplugins/generic/lastfmplugin.cpp index f01850b38..ded62fd51 100644 --- a/src/libtomahawk/infosystem/infoplugins/generic/lastfmplugin.cpp +++ b/src/libtomahawk/infosystem/infoplugins/generic/lastfmplugin.cpp @@ -45,8 +45,8 @@ LastFmPlugin::LastFmPlugin() : InfoPlugin() , m_scrobbler( 0 ) { - m_supportedGetTypes << InfoAlbumCoverArt << InfoArtistImages << InfoLove; - m_supportedPushTypes << InfoSubmitScrobble << InfoSubmitNowPlaying << InfoLove; + m_supportedGetTypes << InfoAlbumCoverArt << InfoArtistImages; + m_supportedPushTypes << InfoSubmitScrobble << InfoSubmitNowPlaying << InfoLove << InfoUnLove; /* Your API Key is 7194b85b6d1f424fe1668173a78c0c4a @@ -146,7 +146,8 @@ LastFmPlugin::pushInfo( const QString caller, const Tomahawk::InfoSystem::InfoTy break; case InfoLove: - sendLoveSong( input ); + case InfoUnLove: + sendLoveSong( type, input ); break; default: @@ -201,7 +202,7 @@ LastFmPlugin::scrobble() void -LastFmPlugin::sendLoveSong( QVariant input ) +LastFmPlugin::sendLoveSong( const InfoType type, QVariant input ) { qDebug() << Q_FUNC_INFO; @@ -224,7 +225,15 @@ LastFmPlugin::sendLoveSong( QVariant input ) bool ok; track.setDuration( hash["duration"].toUInt( &ok ) ); track.setSource( lastfm::Track::Player ); - track.love(); + + if ( type == Tomahawk::InfoSystem::InfoLove ) + { + track.love(); + } + else if ( type == Tomahawk::InfoSystem::InfoUnLove ) + { + track.unlove(); + } } diff --git a/src/libtomahawk/infosystem/infoplugins/generic/lastfmplugin.h b/src/libtomahawk/infosystem/infoplugins/generic/lastfmplugin.h index ab194a5b1..597082638 100644 --- a/src/libtomahawk/infosystem/infoplugins/generic/lastfmplugin.h +++ b/src/libtomahawk/infosystem/infoplugins/generic/lastfmplugin.h @@ -67,7 +67,7 @@ private: void scrobble(); void dataError( const QString &caller, const Tomahawk::InfoSystem::InfoType type, const QVariant &input, const Tomahawk::InfoSystem::InfoCustomData &customData ); - void sendLoveSong( QVariant input ); + void sendLoveSong( const InfoType type, QVariant input ); lastfm::MutableTrack m_track; lastfm::Audioscrobbler* m_scrobbler;