| 1 |
|
| 2 |
=head1 NAME |
| 3 |
|
| 4 |
SuikaWiki::Input::HTTP --- SuikaWiki: HTTP or HTTP CGI input support |
| 5 |
|
| 6 |
=head1 DESCRIPTION |
| 7 |
|
| 8 |
This module provides HTTP or HTTP CGI input support, |
| 9 |
although current version of this module supports HTTP CGI only. |
| 10 |
|
| 11 |
This module is part of SuikaWiki. |
| 12 |
|
| 13 |
=cut |
| 14 |
|
| 15 |
package SuikaWiki::Input::HTTP; |
| 16 |
use strict; |
| 17 |
our $VERSION = do{my @r=(q$Revision: 1.2 $=~/\d+/g);sprintf "%d."."%02d" x $#r,@r}; |
| 18 |
|
| 19 |
=head1 METHODS |
| 20 |
|
| 21 |
=over 4 |
| 22 |
|
| 23 |
=item $http = SuikaWiki::Input::HTTP->new |
| 24 |
|
| 25 |
Constructs new instance of HTTP input implementation |
| 26 |
|
| 27 |
=cut |
| 28 |
|
| 29 |
sub new ($;%) { |
| 30 |
my $self = bless { |
| 31 |
decoder => { |
| 32 |
'#default' => sub {$_[1]}, |
| 33 |
}, |
| 34 |
}, shift; |
| 35 |
my %opt = @_; |
| 36 |
$self->{wiki} = $opt{wiki}; |
| 37 |
$self; |
| 38 |
} |
| 39 |
|
| 40 |
=item $value = $http->meta_variable ($name) |
| 41 |
|
| 42 |
Returns variable value. $name should be a meta-variable name |
| 43 |
defined by CGI specification, eg. CONTENT_TYPE, HTTP_USER_AGENT and so on. |
| 44 |
|
| 45 |
=cut |
| 46 |
|
| 47 |
sub meta_variable ($$) { |
| 48 |
$main::ENV{ $_[1] }; |
| 49 |
} |
| 50 |
|
| 51 |
=item $value = $http->parameter ($name) |
| 52 |
|
| 53 |
Returns parameter value if any. |
| 54 |
Parameter value is set by query-string of Request-URI |
| 55 |
and/or entity-body value. |
| 56 |
|
| 57 |
When multiple values with same parameter name is specified, |
| 58 |
the first one is returned in scalar context or |
| 59 |
an array reference of all values is returned in array context. |
| 60 |
(Note that query-string is "earlier" than entity-body.) |
| 61 |
|
| 62 |
=item @keys = $http->parameter_names |
| 63 |
|
| 64 |
Returnes a list of parameter names provided. |
| 65 |
|
| 66 |
=cut |
| 67 |
|
| 68 |
sub parameter ($$) { |
| 69 |
my ($self, $name) = @_; |
| 70 |
$self->__get_parameter unless $self->{param}; |
| 71 |
wantarray ? ( $self->{param}->{$name}||[] ) : |
| 72 |
${$self->{param}->{$name}||[]}[0]; |
| 73 |
} |
| 74 |
|
| 75 |
sub parameter_names ($) { |
| 76 |
my $self = shift; |
| 77 |
$self->__get_parameter unless $self->{param}; |
| 78 |
return keys %{$self->{param}}; |
| 79 |
} |
| 80 |
|
| 81 |
sub __get_parameter ($) { |
| 82 |
my $self = shift; |
| 83 |
my @src; |
| 84 |
|
| 85 |
## Query-string of Request-URI |
| 86 |
my $qs = $self->meta_variable ('QUERY_STRING'); |
| 87 |
push @src, $qs if (index ($qs, '=') > -1); |
| 88 |
|
| 89 |
## Entity-body |
| 90 |
if ($self->meta_variable ('REQUEST_METHOD') eq 'POST') { |
| 91 |
my $mt = $self->meta_variable ('CONTENT_TYPE'); |
| 92 |
if ($mt =~ m<^application/(?:x-www|sgml)-form-urlencoded\b>) { |
| 93 |
push @src, $self->body_text; |
| 94 |
} |
| 95 |
} |
| 96 |
|
| 97 |
my %temp_params; |
| 98 |
for my $src (@src) { |
| 99 |
for (split /[;&]/, $src) { |
| 100 |
my ($name, $val) = split '=', $_, 2; |
| 101 |
for ($name, $val) { |
| 102 |
tr/+/ /; |
| 103 |
s/%([0-9A-Fa-f][0-9A-Fa-f])/pack 'C', hex $1/ge; |
| 104 |
} |
| 105 |
$temp_params{$name} ||= []; |
| 106 |
push @{$temp_params{$name}}, $val; |
| 107 |
} |
| 108 |
} |
| 109 |
for (keys %temp_params) { |
| 110 |
my $name = &{$self->{decoder}->{'#name'} |
| 111 |
||$self->{decoder}->{'#default'}} ($self, $_, \%temp_params); |
| 112 |
for (@{$temp_params{$name}}) { |
| 113 |
push @{$self->{param}->{$name}}, |
| 114 |
&{$self->{decoder}->{$name} |
| 115 |
||$self->{decoder}->{'#default'}} ($self, $_, \%temp_params); |
| 116 |
} |
| 117 |
} |
| 118 |
} |
| 119 |
|
| 120 |
=item $body = $http->body |
| 121 |
|
| 122 |
Returns entity-body content if any. |
| 123 |
|
| 124 |
It is expected that in future version of this module, |
| 125 |
this method returns an object instantiated with body content |
| 126 |
rather than body text itself. |
| 127 |
|
| 128 |
=item $body = $http->body_text |
| 129 |
|
| 130 |
Returnes entity-body context as a string. |
| 131 |
|
| 132 |
=cut |
| 133 |
|
| 134 |
sub body ($) { |
| 135 |
my $self = shift; |
| 136 |
$self->__get_entity_body unless defined $self->{body}; |
| 137 |
$self->{body}; |
| 138 |
} |
| 139 |
|
| 140 |
sub body_text ($) { |
| 141 |
$_[0]->body; |
| 142 |
} |
| 143 |
|
| 144 |
sub __get_entity_body ($) { |
| 145 |
my $self = shift; |
| 146 |
binmode STDIN; |
| 147 |
read STDIN, $self->{body}, $main::ENV{CONTENT_LENGTH}; |
| 148 |
} |
| 149 |
|
| 150 |
=item $uri = $http->request_uri |
| 151 |
|
| 152 |
Returns Request-URI as a URI object. |
| 153 |
|
| 154 |
Note that stringified value of returned value might not be same as the |
| 155 |
URI specified as the Request-URI of HTTP request or (possibly pseudo-) |
| 156 |
URI entered by the user, since no standarized way to get it is |
| 157 |
defined by HTTP and CGI/1.1 specifications. |
| 158 |
|
| 159 |
=cut |
| 160 |
|
| 161 |
sub request_uri ($) { |
| 162 |
my $self = shift; |
| 163 |
require URI; |
| 164 |
my $uri = $self->meta_variable ('REQUEST_URI'); # non-standard |
| 165 |
if ($uri) { |
| 166 |
## REQUEST_URI is an absolute URI |
| 167 |
if ($uri =~ /^[0-9A-Za-z.%+-]+:/) { |
| 168 |
return URI->new ($uri); |
| 169 |
} |
| 170 |
} else { ## REQUEST_URI is not provided |
| 171 |
$uri = $self->__uri_encode ($self->meta_variable ('SCRIPT_NAME') |
| 172 |
.$self->meta_variable ('PATH_INFO'), |
| 173 |
qr([^0-9A-Za-z_.!~*'();/:\@&=\$,-])) |
| 174 |
. '?' . $self->meta_variable ('QUERY_STRING'); |
| 175 |
substr ($uri, -1) = '' if substr ($uri, -1) eq '?'; |
| 176 |
} |
| 177 |
|
| 178 |
## REQUEST_URI is a relative URI or |
| 179 |
## REQUEST_URI is not provided |
| 180 |
my $scheme = 'http'; |
| 181 |
my $port = ':' . $self->meta_variable ('SERVER_PORT'); |
| 182 |
if ( $self->meta_variable ('HTTPS') |
| 183 |
|| $self->meta_variable ('CERT_SUBJECT') |
| 184 |
|| $self->meta_variable ('SSL_VERSION')) { |
| 185 |
$scheme = 'https'; |
| 186 |
$port = '' if $port eq ':443'; |
| 187 |
} else { |
| 188 |
$port = '' if $port eq ':80'; |
| 189 |
} |
| 190 |
$uri = $scheme . '://' |
| 191 |
. $self->__uri_encode ($self->meta_variable ('SERVER_NAME'), |
| 192 |
qr/[^0-9A-Za-z.-]/) |
| 193 |
. $port . $uri; |
| 194 |
return URI->new ($uri); |
| 195 |
} |
| 196 |
|
| 197 |
|
| 198 |
sub __uri_encode ($$;$) { |
| 199 |
my ($self, $s, $char) = @_; |
| 200 |
$char ||= qr([^0-9A-Za-z_.!~*'();/?:\@&=+\$,%\[\]-]); |
| 201 |
require Encode; |
| 202 |
$s = Encode::decode ('utf8', $s); |
| 203 |
$s =~ s/($char)/sprintf '%%%02X', ord $1/ge; |
| 204 |
$s; |
| 205 |
} |
| 206 |
|
| 207 |
=item $http->exit |
| 208 |
|
| 209 |
Declares that user no longer thinks the instance ($http) is interesting. |
| 210 |
Usually, this method is automatically called. |
| 211 |
|
| 212 |
=cut |
| 213 |
|
| 214 |
sub exit ($) { |
| 215 |
my $self = shift; |
| 216 |
delete $self->{wiki}; |
| 217 |
$self->{exited} = 1; |
| 218 |
1; |
| 219 |
} |
| 220 |
|
| 221 |
sub DESTORY ($) { |
| 222 |
my $self = shift; |
| 223 |
$self->exit unless $self->{exited}; |
| 224 |
} |
| 225 |
|
| 226 |
=head1 TODO |
| 227 |
|
| 228 |
=over 4 |
| 229 |
|
| 230 |
=item Use manakai |
| 231 |
|
| 232 |
=item multipart/form-data support |
| 233 |
|
| 234 |
=item HTTP (non-CGI) support |
| 235 |
|
| 236 |
=cut |
| 237 |
|
| 238 |
=head1 LICENSE |
| 239 |
|
| 240 |
Copyright 2003 Wakaba <w@suika.fam.cx> |
| 241 |
|
| 242 |
This program is free software; you can redistribute it and/or |
| 243 |
modify it under the same terms as Perl itself. |
| 244 |
|
| 245 |
=cut |
| 246 |
|
| 247 |
1; # $Date: 2003/10/18 07:08:34 $ |