package Acme::MorningMusume::Base; use strict; use warnings; use Date::Simple (); use base qw(Class::Accessor); our $VERSION = '0.07'; __PACKAGE__->mk_accessors(qw( name_ja first_name_ja family_name_ja name_en first_name_en family_name_en nick birthday age blood_type hometown emoticon class graduate_date )); sub new { my $class = shift; my $self = bless {}, $class; $self->_initialize; return $self; } sub images { my ($self, %arg) = @_; return $self->{_ua}->search($self->name_ja, %arg); } sub _initialize { my $self = shift; my %info = $self->info; $self->{$_} = $info{$_} for keys %info; $self->{name_ja} = $self->family_name_ja.$self->first_name_ja; $self->{name_en} = $self->first_name_en.' '.$self->family_name_en; $self->{age} = $self->_calculate_age; $self->{_ua} = WWW::Google::Images::Ja->new( server => 'images.google.co.jp' ); return 1; } sub _calculate_age { my $self = shift; my $today = Date::Simple::today; if (($today->month - $self->birthday->month) >= 0) { if (($today->day - $self->birthday->day ) >= 0) { return $today->year - $self->birthday->year; } else { return ($today->year - $self->birthday->year) - 1; } } else { return ($today->year - $self->birthday->year) - 1; } } # wrapper for WWW::Google::Images to support a utf-8 encoded query package WWW::Google::Images::Ja; use base qw(WWW::Google::Images); sub search { my ($self, $query, %arg) = @_; $arg{limit} = 10 unless defined $arg{limit}; $self->{_agent}->get($self->{_server}); $self->{_agent}->submit_form( form_number => 1, fields => { ie => 'UTF-8', hl => 'ja', q => $query, } ); my @images; my $page = 1; LOOP: { do { push(@images, $self->_extract_images(($arg{limit} ? $arg{limit} - @images : 0), %arg)); last if $arg{limit} && @images == $arg{limit}; } while ($self->_next_page(++$page)); } return WWW::Google::Images::SearchResult->new($self->{_agent}, @images); } 1; __END__ =head1 NAME Acme::MorningMusume::Base - A baseclass of the class represents each member of Morning Musume =head1 SYNOPSIS use Acme::MorningMusume; my $musume = Acme::MorningMusume->new; # retrieve the members as a list of # Acme::MorningMusume::Base based objects my @members = $musume->members; for my $member (@members) { my $name_ja = $member->name_ja; my $first_name_ja = $member->first_name_ja; my $family_name_ja = $member->family_name_ja; my $name_en = $member->name_en; my $first_name_en = $member->first_name_en; my $family_name_en = $member->family_name_en; my $nick = $member->nick; # arrayref my $birthday = $member->birthday; # Date::Simple object my $age = $member->age; my $blood_type = $member->blood_type; my $hometown = $member->hometown; my $emoticon = $member->emoticon; # arrayref my $class = $member->class; my $graduate_date = $member->graduate_date; # Date::Simple object my $count; my $images = $member->images(limit => 5); while (my $image = $images->next) { $count++; my $content_url = $image->content_url; my $context_url = $image->context_url; $image->save_content(base => 'image' . $count); $image->save_context(base => 'page' . $count); } } =head1 DESCRIPTION Acme::MorningMusume::Base is a baseclass of the class represents each member of Morning Musume. =head1 METHODS =head2 images ( [ %arg ] ) =over 4 # %arg can be passed in the same as the WWW::Google::Image::search method my $images = $member->images(limit => 5); Performs a search for I<$member>'s name using Google, and returns a L object. See the documentation of L for details. =back =head1 ACCESSORS =head2 name_ja =head2 first_name_ja =head2 family_name_ja =head2 name_en =head2 first_name_en =head2 family_name_en =head2 nick =head2 birthday =head2 age =head2 blood_type =head2 hometown =head2 emoticon =head2 class =head2 graduate_date =head1 SEE ALSO =over 4 =item * L =item * L =back =head1 AUTHOR Kentaro Kuribayashi Ekentaro@cpan.orgE =head1 COPYRIGHT AND LICENSE (The MIT License) Copyright (c) 2005 - 2007, Kentaro Kuribayashi Ekentaro@cpan.orgE Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =cut