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
|
package URI::URL::http;
require URI::URL::_generic;
@ISA = qw(URI::URL::_generic);
sub default_port { 80 }
require Carp;
# @ISA = qw(AutoLoader) # This comment is needed by AutoSplit.
sub keywords;
sub query_form;
1;
__END__
# Handle ...?dog+bones type of query
sub keywords {
my $self = shift;
$old = $self->{'query'};
if (@_) {
# Try to set query string
$self->equery(join('+', map { URI::Escape::uri_escape($_, $URI::URL::reserved) } @_));
}
return if !defined($old) || !defined(wantarray);
Carp::croak("Query is not keywords") if $old =~ /=/;
map { URI::Escape::uri_unescape($_) } split(/\+/, $old);
}
# Handle ...?foo=bar&bar=foo type of query
sub query_form {
my $self = shift;
$old = $self->{'query'};
if (@_) {
# Try to set query string
my @query;
my($key,$vals);
my $esc = $URI::URL::reserved . $URI::URL::unsafe;
while (($key,$vals) = splice(@_, 0, 2)) {
$key = '' unless defined $key;
$key = URI::Escape::uri_escape($key, $esc);
$vals = [$vals] unless ref($vals) eq 'ARRAY';
my $val;
for $val (@$vals) {
$val = '' unless defined $val;
$val = URI::Escape::uri_escape($val, $esc);
push(@query, "$key=$val");
}
}
$self->equery(join('&', @query));
}
return if !defined($old) || length($old) == 0 || !defined(wantarray);
Carp::croak("Query is not a form") unless $old =~ /=/;
map { s/\+/ /g; URI::Escape::uri_unescape($_) }
map { /=/ ? split(/=/, $_, 2) : ($_ => '')} split(/&/, $old);
}
1;
|