{-# LANGUAGE CPP #-} {-# LANGUAGE DataKinds #-} {-# LANGUAGE OverloadedStrings #-} -- | Lastfm event API -- -- This module is intended to be imported qualified: -- -- @ -- import qualified Lastfm.Event as Event -- @ module Lastfm.Event ( attend, getAttendees, getInfo, getShouts, share, shout ) where #if __GLASGOW_HASKELL__ < 710 import Control.Applicative #endif import Lastfm.Request -- | Set a user's attendance status for an event. -- -- attend :: Request f (Event -> Status -> APIKey -> SessionKey -> Sign) attend = api "event.attend" <* post -- | Get a list of attendees for an event. -- -- Optional: 'page', 'limit' -- -- getAttendees :: Request f (Event -> APIKey -> Ready) getAttendees = api "event.getAttendees" -- | Get the metadata for an event on Last.fm. Includes attendance and lineup information. -- -- getInfo :: Request f (Event -> APIKey -> Ready) getInfo = api "event.getInfo" -- | Get shouts for this event. Also available as an rss feed. -- -- Optional: 'page', 'limit' -- -- getShouts :: Request f (Event -> APIKey -> Ready) getShouts = api "event.getShouts" -- | Share an event with one or more Last.fm users or other friends. -- -- Optional: 'public', 'message' -- -- share :: Request f (Event -> Recipient -> APIKey -> SessionKey -> Sign) share = api "event.share" <* post -- | Shout in this event's shoutbox -- -- shout :: Request f (Event -> Message -> APIKey -> SessionKey -> Sign) shout = api "event.shout" <* post