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 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
|
package HTML::HTML5::Parser::UA;
use 5.008001;
use strict;
use warnings;
BEGIN {
$HTML::HTML5::Parser::UA::AUTHORITY = 'cpan:TOBYINK';
$HTML::HTML5::Parser::UA::VERSION = '0.992';
}
use Encode qw(decode);
use HTTP::Tiny;
use URI::file;
our $NO_LWP = '0';
sub get
{
my ($class, $uri, $ua) = @_;
if (ref $ua and $ua->isa('HTTP::Tiny') and $uri =~ /^https?:/i)
{ goto \&_get_tiny }
if (ref $ua and $ua->isa('LWP::UserAgent'))
{ goto \&_get_lwp }
if (UNIVERSAL::can('LWP::UserAgent', 'can') and not $NO_LWP)
{ goto \&_get_lwp }
if ($uri =~ /^file:/i)
{ goto \&_get_fs }
goto \&_get_tiny;
}
sub _get_lwp
{
eval "require LWP::UserAgent; 1"
or do {
require Carp;
Carp::croak("could not load LWP::UserAgent");
};
my ($class, $uri, $ua) = @_;
$ua ||= LWP::UserAgent->new(
agent => sprintf(
"%s/%s ",
'HTML::HTML5::Parser',
HTML::HTML5::Parser->VERSION,
),
default_headers => HTTP::Headers->new(
'Accept' => join q(, ) => qw(
text/html
application/xhtml+xml;q=0.9
application/xml;q=0.1
text/xml;q=0.1
)
),
parse_head => 0,
);
my $response = $ua->get($uri);
my $h = $response->headers;
my %header_hash =
map { lc($_) => $h->header($_); }
$h->header_field_names;
return +{
success => $response->is_success,
status => $response->code,
reason => $response->message,
headers => \%header_hash,
content => $response->content,
decoded_content => $response->decoded_content,
};
}
sub _get_tiny
{
my ($class, $uri, $ua) = @_;
$ua ||= HTTP::Tiny->new(
agent => sprintf("%s/%s", 'HTML::HTML5::Parser', HTML::HTML5::Parser->VERSION),
default_headers => +{
'Accept' => join(q(, ) => qw(
text/html
application/xhtml+xml;q=0.9
application/xml;q=0.1
text/xml;q=0.1
)),
},
);
my $response = $ua->get($uri);
if ($response->{headers}{'content-type'} =~ /charset=(\S+)/)
{
(my $encoding = $1) =~ s/["']//g;
$response->{decoded_content} = eval {
decode($encoding, $response->{content})
};
}
$response->{decoded_content} = $response->{content}
unless defined $response->{decoded_content};
return $response;
}
sub _get_fs
{
my $class = shift;
my ($uri) = map { ref() ? $_ : URI->new($_) } @_;
my $file = $uri->file;
my ($status, $reason, $content, $content_type) = do {
if (not -e $file)
{ (404 => 'Not Found', 'File not found.', 'text/plain') }
elsif (not -r $file)
{ (403 => 'Forbidden', 'File not readable by effective guid.', 'text/plain') }
else
{ (200 => 'OK') }
};
$content ||= do {
if (open my $fh, '<', $file)
{ local $/ = <$fh> }
else
{ $status = 418; $reason = "I'm a teapot"; $content_type = 'text/plain'; $! }
};
$content_type ||= 'text/xml' if $file =~ /\.xml$/i;
$content_type ||= 'application/xhtml+xml' if $file =~ /\.xht(ml)?$/i;
$content_type ||= 'text/html' if $file =~ /\.html?$/i;
$content_type ||= 'application/octet-stream';
return +{
success => ($status == 200),
status => $status,
reason => $reason,
headers => +{
'content-type' => $content_type,
'content-length' => length($content),
},
content => $content,
decoded_content => $content,
};
}
1;
=head1 NAME
HTML::HTML5::Parser::UA - simple web user agent class
=head1 SYNOPSIS
use aliased 'HTML::HTML5::Parser::UA';
my $response = UA->get($url);
die unless $response->{success};
print $response->{decoded_content};
=head1 DESCRIPTION
This is a simple wrapper around HTTP::Tiny and LWP::UserAgent to smooth out
the API differences between them. It only supports bog standard
C<< get($url) >> requests.
If LWP::UserAgent is already in memory, this module will use that.
If LWP::UserAgent is not in memory, then this module will use HTTP::Tiny (or
direct filesystem access for "file://" URLs).
If LWP::UserAgent is not in memory, and you attempt to request a URL that
HTTP::Tiny cannot handle (e.g. an "ftp://" URL), then this module will load
LWP::UserAgent and die if it cannot be loaded (e.g. is not installed).
HTML::HTML5::Parser::UA is used by the C<parse_file> method of
HTML::HTML5::Parser.
=head2 Class Method
=over
=item C<< get($url, $ua) >>
Gets the URL and returns a hashref similar to HTTP::Tiny's hashrefs, but
with an additional C<decoded_content> key, which contains the response
body, decoded into a Perl character string (not a byte string).
If $ua is given (it's optional), then this user agent will be used to
perform the actual request. Must be undef or an LWP::UserAgent object
(or a subclass) or an HTTP::Tiny object (or a subclass).
=back
=head2 Package Variable
=over
=item C<< $HTML::HTML5::Parser::NO_LWP >>
If true, avoids using LWP::UserAgent.
=back
=head1 MOTIVATION
L<LWP::UserAgent> is a good piece of software but it has a dependency on
L<HTML::Parser>. L<HTML::Parser> is only used to provide one fairly
esoteric feature, which this package doesn't make use of. (It's the
C<parse_head> option.)
Because of that, I don't especially want HTML::HTML5::Parser to have a
dependency on LWP::UserAgent. Hence this module.
=head1 SEE ALSO
L<HTML::HTML5::Parser>.
=head1 AUTHOR
Toby Inkster, E<lt>tobyink@cpan.orgE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2012 by Toby Inkster
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=head1 DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|