{-# LANGUAGE DataKinds #-} {-# LANGUAGE OverloadedStrings #-} -- | Lastfm library API -- -- This module is intended to be imported qualified: -- -- @ -- import qualified Network.Lastfm.Library as Library -- @ module Network.Lastfm.Library ( addAlbum, albumItem, addArtist, artistItem, addTrack , getAlbums, getArtists, getTracks , removeAlbum, removeArtist, removeScrobble, removeTrack ) where import Control.Applicative import Data.List.NonEmpty (NonEmpty) import qualified Data.List.NonEmpty as N import Network.Lastfm.Internal (absorbQuery, indexedWith, wrap) import Network.Lastfm.Request -- | Add an album or collection of albums to a user's Last.fm library -- -- addAlbum :: NonEmpty (Request f LibraryAlbum) -> Request f (APIKey -> SessionKey -> Sign) addAlbum batch = api "library.addAlbum" <* items <* post where items = absorbQuery (N.zipWith indexedWith (N.fromList [0..]) batch) {-# INLINE items #-} {-# INLINE addAlbum #-} -- | What artist to add to library? albumItem :: Request f (Artist -> Album -> LibraryAlbum) albumItem = wrap id {-# INLINE albumItem #-} -- | Add an artist to a user's Last.fm library -- -- addArtist :: NonEmpty (Request f LibraryArtist) -> Request f (APIKey -> SessionKey -> Sign) addArtist batch = api "library.addArtist" <* items <* post where items = absorbQuery (N.zipWith indexedWith (N.fromList [0..]) batch) {-# INLINE items #-} {-# INLINE addArtist #-} -- | What album to add to library? artistItem :: Request f (Artist -> LibraryArtist) artistItem = wrap id {-# INLINE artistItem #-} -- | Add a track to a user's Last.fm library -- -- addTrack :: Request f (Artist -> Track -> APIKey -> SessionKey -> Sign) addTrack = api "library.addTrack" <* post {-# INLINE addTrack #-} -- | A paginated list of all the albums in a user's library, with play counts and tag counts. -- -- Optional: 'artist', 'limit', 'page' -- -- getAlbums :: Request f (User -> APIKey -> Ready) getAlbums = api "library.getAlbums" {-# INLINE getAlbums #-} -- | A paginated list of all the artists in a user's library, with play counts and tag counts. -- -- Optional: 'limit', 'page' -- -- getArtists :: Request f (User -> APIKey -> Ready) getArtists = api "library.getArtists" {-# INLINE getArtists #-} -- | A paginated list of all the tracks in a user's library, with play counts and tag counts. -- -- Optional: 'artist', 'album', 'page', 'limit' -- -- getTracks :: Request f (User -> APIKey -> Ready) getTracks = api "library.getTracks" {-# INLINE getTracks #-} -- | Remove an album from a user's Last.fm library -- -- removeAlbum :: Request f (Artist -> Album -> APIKey -> SessionKey -> Sign) removeAlbum = api "library.removeAlbum" <* post {-# INLINE removeAlbum #-} -- | Remove an artist from a user's Last.fm library -- -- removeArtist :: Request f (Artist -> APIKey -> SessionKey -> Sign) removeArtist = api "library.removeArtist" <* post {-# INLINE removeArtist #-} -- | Remove a scrobble from a user's Last.fm library -- -- removeScrobble :: Request f (Artist -> Track -> Timestamp -> APIKey -> SessionKey -> Sign) removeScrobble = api "library.removeScrobble" <* post {-# INLINE removeScrobble #-} -- | Remove a track from a user's Last.fm library -- -- removeTrack :: Request f (Artist -> Track -> APIKey -> SessionKey -> Sign) removeTrack = api "library.removeTrack" <* post {-# INLINE removeTrack #-}