/thirdparty/liblastfm2/src/types/Album.cpp
http://github.com/tomahawk-player/tomahawk · C++ · 87 lines · 58 code · 10 blank · 19 comment · 4 complexity · 5fd92f90bf52c506e44e8f504759f698 MD5 · raw file
- /*
- Copyright 2009-2010 Last.fm Ltd.
- - Primarily authored by Max Howell, Jono Cole and Doug Mansell
- This file is part of liblastfm.
- liblastfm 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.
- liblastfm 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 liblastfm. If not, see <http://www.gnu.org/licenses/>.
- */
- #include "Album.h"
- #include "Artist.h"
- #include "User.h"
- #include "../core/UrlBuilder.h"
- #include "../core/XmlQuery.h"
- #include "../ws/ws.h"
- #include <QFile>
- #include <QStringList>
- #include <QTimer>
- QNetworkReply*
- lastfm::Album::getInfo() const
- {
- QMap<QString, QString> map;
- map["method"] = "album.getInfo";
- map["artist"] = m_artist;
- map["album"] = m_title;
- if (!lastfm::ws::Username.isEmpty()) map["username"] = lastfm::ws::Username;
- if (!lastfm::ws::SessionKey.isEmpty()) map["sk"] = lastfm::ws::SessionKey;
- return lastfm::ws::get(map);
- }
- QNetworkReply*
- lastfm::Album::getTags() const
- {
- QMap<QString, QString> map;
- map["method"] = "album.getTags";
- map["artist"] = m_artist;
- map["album"] = m_title;
- return lastfm::ws::get(map);
- }
- QNetworkReply*
- lastfm::Album::share( const QStringList& recipients, const QString& message, bool isPublic ) const
- {
- QMap<QString, QString> map;
- map["method"] = "album.share";
- map["artist"] = m_artist;
- map["album"] = m_title;
- map["recipient"] = recipients.join(",");
- map["public"] = isPublic ? "1" : "0";
- if (message.size()) map["message"] = message;
- return lastfm::ws::post(map);
- }
- QUrl
- lastfm::Album::www() const
- {
- return lastfm::UrlBuilder( "music" ).slash( m_artist ).slash( m_title ).url();
- }
- QNetworkReply*
- lastfm::Album::addTags( const QStringList& tags ) const
- {
- if (tags.isEmpty())
- return 0;
- QMap<QString, QString> map;
- map["method"] = "album.addTags";
- map["artist"] = m_artist;
- map["album"] = m_title;
- map["tags"] = tags.join( QChar(',') );
- return lastfm::ws::post(map);
- }