From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

$WWW::FetchStory::Fetcher::Ashwinder::VERSION = '0.25';
use strict;
=head1 NAME
WWW::FetchStory::Fetcher::Ashwinder - fetching module for WWW::FetchStory
=head1 VERSION
version 0.25
=head1 DESCRIPTION
This is the Ashwinder story-fetching plugin for WWW::FetchStory.
=cut
=head2 info
Information about the fetcher.
$info = $self->info();
=cut
sub info {
my $self = shift;
my $info = "(http://ashwinder.sycophanthex.com/) A Severus Snape/Hermione Granger HP fiction archive.";
return $info;
} # info
=head2 priority
The priority of this fetcher. Fetchers with higher priority
get tried first. This is useful where there may be a generic
fetcher for a particular site, and then a more specialized fetcher
for particular sections of a site. For example, there may be a
generic Ashwinder fetcher, and then refinements for particular
Ashwinder community, such as the sshg_exchange community.
This works as either a class function or a method.
This must be overridden by the specific fetcher class.
$priority = $self->priority();
$priority = WWW::FetchStory::Fetcher::priority($class);
=cut
sub priority {
my $class = shift;
return 1;
} # priority
=head2 allow
If this fetcher can be used for the given URL, then this returns
true.
This must be overridden by the specific fetcher class.
if ($obj->allow($url))
{
....
}
=cut
sub allow {
my $self = shift;
my $url = shift;
return ($url =~ /ashwinder\.sycophanthex\.com/);
} # allow
=head1 Private Methods
=head2 parse_toc
Parse the table-of-contents file.
%info = $self->parse_toc(content=>$content,
url=>$url,
urls=>\@urls);
This should return a hash containing:
=over
=item chapters
An array of URLs for the chapters of the story. In the case where the
story only takes one page, that will be the chapter.
In the case where multiple URLs have been passed in, it will be those URLs.
=item title
The title of the story.
=back
It may also return additional information, such as Summary.
=cut
sub parse_toc {
my $self = shift;
my %args = (
url=>'',
content=>'',
@_
);
my %info = ();
my $content = $args{content};
$info{url} = $args{url};
my $sid='';
if ($args{url} =~ m#sid=(\d+)#)
{
$sid = $1;
}
else
{
return $self->SUPER::parse_toc(%args);
}
$info{title} = $self->parse_title(%args);
$info{author} = $self->parse_author(%args);
$info{summary} = $self->parse_summary(%args);
# if this is a single-chapter story, the summary is on the author page
if (!$info{summary} and $content =~ m#<a href="viewuser.php\?uid=(\d+)">#s)
{
my $auth_page = $self->get_page($auth_url);
if ($auth_page =~ m#<a href="viewstory.php\?sid=${sid}">.*?<br>\s*([^<]+)\s*<br>#s)
{
$info{summary} = $1;
}
}
else # not a single-chapter story
{
# remove the wordcount
$info{summary} =~ s/\s*\(\d+ words\)//;
}
$info{characters} = 'Hermione Granger, Severus Snape';
$info{universe} = 'Harry Potter';
$info{chapters} = $self->parse_chapter_urls(%args, sid=>$sid);
return %info;
} # parse_toc
=head2 parse_chapter_urls
Figure out the URLs for the chapters of this story.
=cut
sub parse_chapter_urls {
my $self = shift;
my %args = (
urls=>undef,
content=>'',
@_
);
my $content = $args{content};
my $sid = $args{sid};
my @chapters = ();
if (defined $args{urls})
{
@chapters = @{$args{urls}};
}
if (@chapters == 1)
{
# Ashwinder does not have a sane chapter system
if ($content =~ m#i=1"#s)
{
@chapters = ();
my $count = 1;
while ($content =~ m#viewstory\.php\?sid=(\d+)#sg)
{
my $ch_sid = $1;
my $ch_url = sprintf($fmt, $ch_sid);
warn "chapter[$count]=$ch_url\n" if ($self->{verbose} > 1);
push @chapters, $ch_url;
$count++;
}
}
else
{
@chapters = (sprintf($fmt, $sid));
}
}
return \@chapters;
} # parse_chapter_urls
=head2 parse_title
Get the title from the content
=cut
sub parse_title {
my $self = shift;
my %args = (
url=>'',
content=>'',
@_
);
my $content = $args{content};
my $title = '';
if ($content =~ m#<b><a href="viewstory.php\?sid=\d+">([^<]+)</a></b> by <b><a href="viewuser.php#s)
{
$title = $1;
}
else
{
$title = $self->SUPER::parse_title(%args);
}
return $title;
} # parse_title
=head2 parse_author
Get the author from the content
=cut
sub parse_author {
my $self = shift;
my %args = (
url=>'',
content=>'',
@_
);
my $content = $args{content};
my $author = '';
if ($content =~ m#<a href="viewuser.php\?uid=\d+">([^<]+)</a>#s)
{
$author = $1;
}
else
{
$author = $self->SUPER::parse_author(%args);
}
return $author;
} # parse_author
1; # End of WWW::FetchStory::Fetcher::Ashwinder
__END__