package WebService::LastFM; use strict; use warnings; use Carp (); use Digest::MD5 (); use LWP::UserAgent; use HTTP::Request::Common qw(POST GET); use WebService::LastFM::Session; use WebService::LastFM::NowPlaying; our $VERSION = '0.03'; sub new { my ($class, %args) = @_; my $self = bless {}, $class; $self->_die('Username and password are required') unless $args{username} || $args{password}; $self->{username} = $args{username}; $self->{password} = $args{password}; $self->{ua} = LWP::UserAgent->new( agent => "WebService::LastFM/$VERSION", ); return $self; } sub ua { $_[0]->{ua} } sub get_session { my ($self, $mode) = @_; my $url = 'http://wsdev.audioscrobbler.com/radio/getsession.php' .'?username=' .$self->{username} .'&passwordmd5='.Digest::MD5::md5_hex($self->{password}); $url.= '&mode=' .$mode .'&subject=' .$self->{username} if $mode; my $response = $self->_get_response(GET $url); $self->_die('Wrong params passed') if !(keys %$response) || $response->{session} eq 'FAILED'; %$self = (%$self, %$response); return WebService::LastFM::Session->new($response); } sub get_nowplaying { my $self = shift; my $url = 'http://wsdev.audioscrobbler.com/radio/np.php' .'?session='.$self->{session}; my $response = $self->_get_response(GET $url); return WebService::LastFM::NowPlaying->new($response); } sub send_command { my ($self, $command) = @_; $self->_die('Command not passed') unless $command; my $request = POST 'http://wsdev.audioscrobbler.com/radio/control.php', [ session => $self->{session}, command => $command, ]; my $response = $self->_get_response($request); return $response->{response}; } sub change_station { my ($self, $mode) = @_; $self->_die('Mode not passed') unless $mode; my $request = POST 'http://wsdev.audioscrobbler.com/radio/tune.php', [ session => $self->{session}, mode => $mode, subject => $self->{username}, ]; my $response = $self->_get_response($request); return $response->{response}; } sub _get_response { my ($self, $request) = @_; my $content = $self->_do_request($request); my $response = $self->_parse_response($content); return $response; } sub _parse_response { my ($self, $content) = @_; my $response = {}; $response->{$1} = $2 while ($content =~ s/^(.+?)\s*=\s*(.+?)$//m); return $response; } sub _do_request { my ($self, $request) = @_; my $response = $self->ua->simple_request($request); $self->_die('Request failed: '.$response->message) unless $response->is_success; return $response->content; } sub _die { my ($self, $message) = @_; Carp::croak($message); } 1; __END__ =head1 NAME WebService::LastFM - Simple interfece to Last.FM Webservices API =head1 SYNOPSIS use WebService::LastFM; my $lastfm = WebService::LastFM->new( username => $username, password => $password, ); # get a sessoin key and stream URL to identify your stream my $stream_info = $lastfm->get_session($mode); my $session_key = $stream_info->session; my $stream_url = $stream_info->stream_url; # get the song information you are now listening my $nowplaying = $lastfm->get_nowplaying; my $streaming = $nowplaying->streaming; my $station = $nowplaying->station; my $station_url = $nowplaying->station_url; my $stationfeed = $nowplaying->stationfeed; my $stationfeed_url = $nowplaying->stationfeed_url; my $artist = $nowplaying->artist; my $artist_url = $nowplaying->artist_url; my $track = $nowplaying->track; my $track_url = $nowplaying->track_url; my $album = $nowplaying->album; my $album_url = $nowplaying->album_url; my $albumcover_small = $nowplaying->albumcover_small; my $albumcover_medium = $nowplaying->albumcover_medium; my $albumcover_large = $nowplaying->albumcover_large; my $trackduration = $nowplaying->trackduration; my $trackprogress = $nowplaying->trackprogress; my $radiomode = $nowplaying->radiomode; my $recordtoprofile = $nowplaying->recordtoprofile; # send a command $lastfm->send_command($command); # change the station $lastfm->change_station($new_mode); =head1 DESCRIPTION WebService::LastFM provides you a simple interface to Last.FM Webservices API. It currently supports Last.FM Stream API. See L for details. =head1 METHODS =over 4 =item new(I<%args>) $lastfm = WebService::LastFM->new( username => $username, password => $password, ); Creates and returns a new WebService::LastFM object. =item get_session([I<$mode>]) $stream_info = $lastfm->get_session($mode); Retruns a session key and stream URL as a WebService::LastFM::Session object. Setting optional I<$mode> parameter allows you to start the stream on a particular station. (The default is your own profile radio station) =item get_nowplaying $current_song = $lastfm->get_nowplaying; Returns a WebService::LastFM::NowPlaying object to retrieve the currently playing song's information. =item send_command(I<$command>) $response = $lastfm->send_command($command); Sends a command to Last.FM Stream API to control currently playing song. The command can be one of 'I', 'I', 'I', I or I. I<$response> you get after issuing a command will be whether 'OK' or 'FAILED'. =item change_station(I<$new_mode>) $response = $lastfm->change_station($new_mode); Changes the station of your stream. I<$new_mode> can be one of 'I', 'I' or 'I'. Making a donation to Last.FM is required to change the mode to 'personal'. See L for more details. I<$response> you get after changing station will be whether 'OK' or 'FAILED'. =item ua $lastfm->ua->timeout(10); Returns a LWP::UserAgent object. You can set some values to change its propaties. See the documentation of L for more details. =back =head1 CAVEAT WebService::LastFM is in beta version. Besides, Last.FM Webservices API's spec haven't fixed yet (its status is now in B), so the interface it provides may be changed later. Then you must notice that the endpoint's host of LastFM Webservices API will be changed to 'ws.audioscrobbler.com' from 'wsdev.audioscrobbler.com' after its starting officially. See L for the newest information of Last.FM Webservices. =head1 SEE ALSO =over 4 =item * Last.FM L =item * Last.FM Stream API's documentation L =item * L =back =head1 AUTHOR Kentaro Kuribayashi, Ekentarok@gmail.comE =head1 COPYRIGHT AND LICENSE Copyright (C) 2005 by Kentaro Kuribayashi This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut