1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
######################################################################
package Net::Amazon::Property::Music;
######################################################################
use warnings;
use strict;
use base qw(Net::Amazon::Property);
__PACKAGE__->make_accessor($_) for qw(album label media nummedia upc
ean studio publisher release_date binding);
__PACKAGE__->make_array_accessor($_) for qw(artists tracks);
##################################################
sub new {
##################################################
my($class, %options) = @_;
my $self = $class->SUPER::new(%options);
bless $self, $class; # Bless into this class
if(exists $options{xmlref}) {
$self->init_via_xmlref($options{xmlref});
}
return $self;
}
##################################################
sub artist {
##################################################
my($self, $nameref) = @_;
# Only return the first artist
return ($self->artists($nameref))[0];
}
##################################################
sub init_via_xmlref {
##################################################
my($self, $xmlref) = @_;
$self->SUPER::init_via_xmlref($xmlref);
my $ref = $xmlref->{ItemAttributes};
# It could either be a Creator (and?)/or an Artist
my @artists;
for my $artist (@{$ref->{Creator}}) {
push @artists, $artist->{content} if $artist->{Role} eq 'Performer';
}
for my $artist (@{$ref->{Artist}}) {
push @artists, $artist;
}
$self->artists(\@artists);
$self->album($ref->{Title});
$self->ean($ref->{EAN});
$self->label($ref->{Label});
$self->media($ref->{Binding});
$self->binding($ref->{Binding});
$self->nummedia($ref->{NumberOfDiscs});
$self->publisher($ref->{Publisher});
$self->release_date($ref->{ReleaseDate});
$self->studio($ref->{Studio});
$self->upc($ref->{UPC});
$self->NumMedia($ref->{NumberOfDiscs});
my @tracks;
for my $disc (@{$xmlref->{Tracks}->{Disc}}) {
for my $track (@{$disc->{Track}}) {
push @tracks, $track->{content};
}
}
$self->tracks(\@tracks);
my $year = 0;
if (defined $ref->{ReleaseDate}) {
$year = (split(/\-/, $ref->{ReleaseDate}))[0];
}
$self->year($year);
}
##################################################
sub as_string {
##################################################
my($self) = @_;
return join('/', $self->artists) . ", " .
'"' . $self->album . '"' . ", " .
$self->year . ", " .
$self->_best_effort_price() . ", " .
$self->Asin;
}
1;
__END__
=head1 NAME
Net::Amazon::Property::Music - Class for pop CDs on amazon.com
=head1 SYNOPSIS
use Net::Amazon;
# ...
if($resp->is_success()) {
for my $prop ($resp->properties) {
print join("/", $_->artists(), " ",
$_->album(), " ",
$_->label(), " ",
$_->year(), " ";
$_->upc(), " ";
$_->media(), " ";
$_->nummedia(), "\n";
}
=head1 DESCRIPTION
C<Net::Amazon::Property::Music> is derived from
C<Net::Amazon::Property> and on top of the all-purpose
methods the base class provides, it offers specialized accessors for
popular music CD parameters.
=head2 METHODS
=over 4
=item artists()
Returns a list of the CD's artists. There's also a C<artist()> method
which just returns the first artist.
=item tracks()
Returns a list of the CD's track titles. Tracks are ordered as they appear on
the media. Track one is at offset zero in the tracks() list. If there are
multiple media then tracks are appended to the same list. There is currently
no way to determine which track belongs to which media. (Amazon returns these
data, but it is not used by Net::Amazon.)
=item label()
Returns the music label as a string.
=item album()
Returns the CD's title as a string.
=item upc()
Returns the CD's UPC as a string.
=item media()
Returns the CD's media type as a string.
=item nummedia()
Returns the CD's number of media (number of discs) as a string.
Amazon doesn't always send this back, so if you get undef assume it
is 1.
=item new(xmlref => $xmlref)
Initializes an object by passing a hash of hashes structure containing
the XML data returned from the service. Usually, this is just used by
C<Net::Amazon> internally to initialize objects for on backcoming
data.
=back
Check out L<Net::Amazon::Property> for all-purpose accessors, like
C<year>, C<OurPrice>, C<ListPrice>, etc.
=head1 AUTHOR
Mike Schilli, E<lt>m@perlmeister.comE<gt>
=head1 THANKS
Thanks to Padraic Renaghan E<lt>padraic@renaghan.com<gt> for adding
the upc/media/nummedia fields.
=head1 COPYRIGHT AND LICENSE
Copyright 2003 by Mike Schilli E<lt>m@perlmeister.comE<gt>
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
|