SILENT KILLERPanel

Current Path: > > usr > share > perl5 > > URI


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //usr/share/perl5//URI

NameTypeSizeLast ModifiedActions
file Directory - -
urn Directory - -
Escape.pm File 7061 bytes January 09 2018 06:42:55.
Heuristic.pm File 6524 bytes January 09 2018 06:42:55.
IRI.pm File 820 bytes January 09 2018 06:42:55.
QueryParam.pm File 4887 bytes January 09 2018 06:42:55.
Split.pm File 2379 bytes January 09 2018 06:42:55.
URL.pm File 5487 bytes January 09 2018 06:42:55.
WithBase.pm File 3857 bytes January 09 2018 06:42:55.
_foreign.pm File 133 bytes January 09 2018 06:42:55.
_generic.pm File 5848 bytes January 09 2018 06:42:55.
_idna.pm File 2105 bytes January 09 2018 06:42:55.
_ldap.pm File 3275 bytes January 09 2018 06:42:55.
_login.pm File 257 bytes January 09 2018 06:42:55.
_punycode.pm File 5648 bytes January 09 2018 06:42:55.
_query.pm File 2557 bytes January 09 2018 06:42:55.
_segment.pm File 442 bytes January 09 2018 06:42:55.
_server.pm File 3750 bytes January 09 2018 06:42:55.
_userpass.pm File 1060 bytes January 09 2018 06:42:55.
data.pm File 3417 bytes January 09 2018 06:42:55.
file.pm File 9761 bytes January 09 2018 06:42:55.
ftp.pm File 1082 bytes January 09 2018 06:42:55.
gopher.pm File 2454 bytes January 09 2018 06:42:55.
http.pm File 451 bytes January 09 2018 06:42:55.
https.pm File 170 bytes January 09 2018 06:42:55.
ldap.pm File 2950 bytes January 09 2018 06:42:55.
ldapi.pm File 467 bytes January 09 2018 06:42:55.
ldaps.pm File 170 bytes January 09 2018 06:42:55.
mailto.pm File 1302 bytes January 09 2018 06:42:55.
mms.pm File 151 bytes January 09 2018 06:42:55.
news.pm File 1480 bytes January 09 2018 06:42:55.
nntp.pm File 153 bytes January 09 2018 06:42:55.
pop.pm File 1233 bytes January 09 2018 06:42:55.
rlogin.pm File 155 bytes January 09 2018 06:42:55.
rsync.pm File 233 bytes January 09 2018 06:42:55.
rtsp.pm File 151 bytes January 09 2018 06:42:55.
rtspu.pm File 152 bytes January 09 2018 06:42:55.
sftp.pm File 124 bytes January 09 2018 06:42:55.
sip.pm File 1735 bytes January 09 2018 06:42:55.
sips.pm File 169 bytes January 09 2018 06:42:55.
snews.pm File 198 bytes January 09 2018 06:42:55.
ssh.pm File 201 bytes January 09 2018 06:42:55.
telnet.pm File 154 bytes January 09 2018 06:42:55.
tn3270.pm File 154 bytes January 09 2018 06:42:55.
urn.pm File 2201 bytes January 09 2018 06:42:55.

Reading File: //usr/share/perl5//URI/QueryParam.pm

package URI::QueryParam;

use strict;
use warnings;

our $VERSION = '1.73';
$VERSION = eval $VERSION;

sub URI::_query::query_param {
    my $self = shift;
    my @old = $self->query_form;

    if (@_ == 0) {
	# get keys
	my (%seen, $i);
	return grep !($i++ % 2 || $seen{$_}++), @old;
    }

    my $key = shift;
    my @i = grep $_ % 2 == 0 && $old[$_] eq $key, 0 .. $#old;

    if (@_) {
	my @new = @old;
	my @new_i = @i;
	my @vals = map { ref($_) eq 'ARRAY' ? @$_ : $_ } @_;

	while (@new_i > @vals) {
	    splice @new, pop @new_i, 2;
	}
	if (@vals > @new_i) {
	    my $i = @new_i ? $new_i[-1] + 2 : @new;
	    my @splice = splice @vals, @new_i, @vals - @new_i;

	    splice @new, $i, 0, map { $key => $_ } @splice;
	}
	if (@vals) {
	    #print "SET $new_i[0]\n";
	    @new[ map $_ + 1, @new_i ] = @vals;
	}

	$self->query_form(\@new);
    }

    return wantarray ? @old[map $_+1, @i] : @i ? $old[$i[0]+1] : undef;
}

sub URI::_query::query_param_append {
    my $self = shift;
    my $key = shift;
    my @vals = map { ref $_ eq 'ARRAY' ? @$_ : $_ } @_;
    $self->query_form($self->query_form, $key => \@vals);  # XXX
    return;
}

sub URI::_query::query_param_delete {
    my $self = shift;
    my $key = shift;
    my @old = $self->query_form;
    my @vals;

    for (my $i = @old - 2; $i >= 0; $i -= 2) {
	next if $old[$i] ne $key;
	push(@vals, (splice(@old, $i, 2))[1]);
    }
    $self->query_form(\@old) if @vals;
    return wantarray ? reverse @vals : $vals[-1];
}

sub URI::_query::query_form_hash {
    my $self = shift;
    my @old = $self->query_form;
    if (@_) {
	$self->query_form(@_ == 1 ? %{shift(@_)} : @_);
    }
    my %hash;
    while (my($k, $v) = splice(@old, 0, 2)) {
	if (exists $hash{$k}) {
	    for ($hash{$k}) {
		$_ = [$_] unless ref($_) eq "ARRAY";
		push(@$_, $v);
	    }
	}
	else {
	    $hash{$k} = $v;
	}
    }
    return \%hash;
}

1;

__END__

=head1 NAME

URI::QueryParam - Additional query methods for URIs

=head1 SYNOPSIS

  use URI;
  use URI::QueryParam;

  $u = URI->new("", "http");
  $u->query_param(foo => 1, 2, 3);
  print $u->query;    # prints foo=1&foo=2&foo=3

  for my $key ($u->query_param) {
      print "$key: ", join(", ", $u->query_param($key)), "\n";
  }

=head1 DESCRIPTION

Loading the C<URI::QueryParam> module adds some extra methods to
URIs that support query methods.  These methods provide an alternative
interface to the $u->query_form data.

The query_param_* methods have deliberately been made identical to the
interface of the corresponding C<CGI.pm> methods.

The following additional methods are made available:

=over

=item @keys = $u->query_param

=item @values = $u->query_param( $key )

=item $first_value = $u->query_param( $key )

=item $u->query_param( $key, $value,... )

If $u->query_param is called with no arguments, it returns all the
distinct parameter keys of the URI.  In a scalar context it returns the
number of distinct keys.

When a $key argument is given, the method returns the parameter values with the
given key.  In a scalar context, only the first parameter value is
returned.

If additional arguments are given, they are used to update successive
parameters with the given key.  If any of the values provided are
array references, then the array is dereferenced to get the actual
values.

Please note that you can supply multiple values to this method, but you cannot
supply multiple keys.

Do this:

    $uri->query_param( widget_id => 1, 5, 9 );

Do NOT do this:

    $uri->query_param( widget_id => 1, frobnicator_id => 99 );

=item $u->query_param_append($key, $value,...)

Adds new parameters with the given
key without touching any old parameters with the same key.  It
can be explained as a more efficient version of:

   $u->query_param($key,
                   $u->query_param($key),
                   $value,...);

One difference is that this expression would return the old values
of $key, whereas the query_param_append() method does not.

=item @values = $u->query_param_delete($key)

=item $first_value = $u->query_param_delete($key)

Deletes all key/value pairs with the given key.
The old values are returned.  In a scalar context, only the first value
is returned.

Using the query_param_delete() method is slightly more efficient than
the equivalent:

   $u->query_param($key, []);

=item $hashref = $u->query_form_hash

=item $u->query_form_hash( \%new_form )

Returns a reference to a hash that represents the
query form's key/value pairs.  If a key occurs multiple times, then the hash
value becomes an array reference.

Note that sequence information is lost.  This means that:

   $u->query_form_hash($u->query_form_hash);

is not necessarily a no-op, as it may reorder the key/value pairs.
The values returned by the query_param() method should stay the same
though.

=back

=head1 SEE ALSO

L<URI>, L<CGI>

=head1 COPYRIGHT

Copyright 2002 Gisle Aas.

=cut

SILENT KILLER Tool