/[pub]/test/html-webhacc/cc.cgi
Suika

Diff of /test/html-webhacc/cc.cgi

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.8 by wakaba, Sun Jul 1 10:02:24 2007 UTC revision 1.56 by wakaba, Mon Jul 21 08:39:12 2008 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl  #!/usr/bin/perl
2  use strict;  use strict;
3    use utf8;
4    
5  use lib qw[/home/httpd/html/www/markup/html/whatpm  use lib qw[/home/httpd/html/www/markup/html/whatpm
6             /home/wakaba/work/manakai/lib             /home/wakaba/work/manakai2/lib];
            /home/wakaba/public_html/-temp/wiki/lib];  
7  use CGI::Carp qw[fatalsToBrowser];  use CGI::Carp qw[fatalsToBrowser];
8  use Scalar::Util qw[refaddr];  use Scalar::Util qw[refaddr];
9    
10  use SuikaWiki::Input::HTTP; ## TODO: Use some better CGI module    require WebHACC::Input;
11      require WebHACC::Result;
12      require WebHACC::Output;
13    
14  sub htescape ($) {  my $out;
   my $s = $_[0];  
   $s =~ s/&/&/g;  
   $s =~ s/</&lt;/g;  
   $s =~ s/>/&gt;/g;  
   $s =~ s/"/&quot;/g;  
   $s =~ s!([\x00-\x09\x0B-\x1F\x7F-\x80])!sprintf '<var>U+%04X</var>', ord $1!ge;  
   return $s;  
 } # htescape  
15    
16  my $http = SuikaWiki::Input::HTTP->new;    require Message::DOM::DOMImplementation;
17      my $dom = Message::DOM::DOMImplementation->new;
18  ## TODO: _charset_  {
19      use Message::CGI::HTTP;
20      my $http = Message::CGI::HTTP->new;
21    
22    if ($http->meta_variable ('PATH_INFO') ne '/') {    if ($http->get_meta_variable ('PATH_INFO') ne '/') {
23      print STDOUT "Status: 404 Not Found\nContent-Type: text/plain; charset=us-ascii\n\n400";      print STDOUT "Status: 404 Not Found\nContent-Type: text/plain; charset=us-ascii\n\n400";
24      exit;      exit;
25    }    }
26      
   my $input_format = $http->parameter ('i') || 'text/html';  
   my $inner_html_element = $http->parameter ('e');  
   my $input_uri = 'thismessage:/';  
   
   my $s = $http->parameter ('s');  
   if (length $s > 1000_000) {  
     print STDOUT "Status: 400 Document Too Long\nContent-Type: text/plain; charset=us-ascii\n\nToo long";  
     exit;  
   }  
   
27    load_text_catalog ('en'); ## TODO: conneg    load_text_catalog ('en'); ## TODO: conneg
28    
29    my @nav;    $out = WebHACC::Output->new;
30    print STDOUT qq[Content-Type: text/html; charset=utf-8    $out->handle (*STDOUT);
31      $out->set_utf8;
32      $out->set_flush;
33      $out->html (qq[Content-Type: text/html; charset=utf-8
34    
35  <!DOCTYPE html>  <!DOCTYPE html>
36  <html lang="en">  <html lang="en">
# Line 50  my $http = SuikaWiki::Input::HTTP->new; Line 39  my $http = SuikaWiki::Input::HTTP->new;
39  <link rel="stylesheet" href="../cc-style.css" type="text/css">  <link rel="stylesheet" href="../cc-style.css" type="text/css">
40  </head>  </head>
41  <body>  <body>
42  <h1>Web Document Conformance Checker (<em>beta</em>)</h1>  <h1><a href="../cc-interface">Web Document Conformance Checker</a>
43    (<em>beta</em>)</h1>
44    ]);
45    
46  <div id="document-info" class="section">    my $input = get_input_document ($http, $dom);
 <dl>  
 <dt>Document URI</dt>  
     <dd><code class="URI" lang="">&lt;<a href="@{[htescape $input_uri]}">@{[htescape $input_uri]}</a>&gt;</code></dd>  
 <dt>Internet Media Type</dt>  
     <dd><code class="MIME" lang="en">@{[htescape $input_format]}</code></dd>  
 ]; # no </dl> yet  
   push @nav, ['#document-info' => 'Information'];  
   
   require Message::DOM::DOMImplementation;  
   my $dom = Message::DOM::DOMImplementation->____new;  
   my $doc;  
   my $el;  
   
   if ($input_format eq 'text/html') {  
     require Encode;  
     require Whatpm::HTML;  
       
     $s = Encode::decode ('utf-8', $s);  
   
     print STDOUT qq[  
 <dt>Character Encoding</dt>  
     <dd>(none)</dd>  
 </dl>  
 </div>  
   
 <div id="source-string" class="section">  
 <h2>Document Source</h2>  
 ];  
     push @nav, ['#source-string' => 'Source'];  
     print_source_string (\$s);  
     print STDOUT qq[  
 </div>  
   
 <div id="parse-errors" class="section">  
 <h2>Parse Errors</h2>  
   
 <dl>  
 ];  
   push @nav, ['#parse-errors' => 'Parse Error'];  
   
   my $onerror = sub {  
     my (%opt) = @_;  
     my ($cls, $msg) = get_text ($opt{type}, $opt{level});  
     if ($opt{column} > 0) {  
       print STDOUT qq[<dt class="$cls"><a href="#line-$opt{line}">Line $opt{line}</a> column $opt{column}</dt>\n];  
     } else {  
       $opt{line} = $opt{line} - 1 || 1;  
       print STDOUT qq[<dt class="$cls"><a href="#line-$opt{line}">Line $opt{line}</a></dt>\n];  
     }  
     $opt{type} =~ tr/ /-/;  
     $opt{type} =~ s/\|/%7C/g;  
     $msg .= qq[ [<a href="../error-description#$opt{type}">Description</a>]];  
     print STDOUT qq[<dd class="$cls">$msg</dd>\n];  
   };  
   
   $doc = $dom->create_document;  
   if (defined $inner_html_element and length $inner_html_element) {  
     $el = $doc->create_element_ns  
         ('http://www.w3.org/1999/xhtml', [undef, $inner_html_element]);  
     Whatpm::HTML->set_inner_html ($el, $s, $onerror);  
   } else {  
     Whatpm::HTML->parse_string ($s => $doc, $onerror);  
   }  
47    
48    print STDOUT qq[    $out->input ($input);
49  </dl>    $out->unset_flush;
 </div>  
 ];  
   } elsif ($input_format eq 'application/xhtml+xml') {  
     require Message::DOM::XMLParserTemp;  
     require Encode;  
       
     my $t = Encode::decode ('utf-8', $s);  
   
     print STDOUT qq[  
 <dt>Character Encoding</dt>  
     <dd>(none)</dd>  
 </dl>  
 </div>  
   
 <div id="source-string" class="section">  
 <h2>Document Source</h2>  
 ];  
     push @nav, ['#source-string' => 'Source'];  
     print_source_string (\$t);  
     print STDOUT qq[  
 </div>  
   
 <div id="parse-errors" class="section">  
 <h2>Parse Errors</h2>  
   
 <dl>];  
   push @nav, ['#parse-errors' => 'Parse Error'];  
   
   my $onerror = sub {  
     my $err = shift;  
     my $line = $err->location->line_number;  
     print STDOUT qq[<dt><a href="#line-$line">Line $line</a> column ];  
     print STDOUT $err->location->column_number, "</dt><dd>";  
     print STDOUT htescape $err->text, "</dd>\n";  
     return 1;  
   };  
   
   open my $fh, '<', \$s;  
   $doc = Message::DOM::XMLParserTemp->parse_byte_stream  
       ($fh => $dom, $onerror, charset => 'utf-8');  
   
     print STDOUT qq[</dl>  
 </div>  
 ];  
   } else {  
     print STDOUT qq[  
 </dl>  
 </div>  
   
 <div id="result-summary" class="section">  
 <p><em>Media type <code class="MIME" lang="en">@{[htescape $input_format]}</code> is not supported!</em></p>  
 </div>  
 ];  
     push @nav, ['#result-summary' => 'Result'];  
   }  
50    
51      my $result = WebHACC::Result->new;
52      $result->output ($out);
53      $result->{conforming_min} = 1;
54      $result->{conforming_max} = 1;
55    
56    if (defined $doc or defined $el) {    $out->html ('<script src="../cc-script.js"></script>');
     print STDOUT qq[  
 <div id="document-tree" class="section">  
 <h2>Document Tree</h2>  
 ];  
     push @nav, ['#document-tree' => 'Tree'];  
   
     print_document_tree ($el || $doc);  
   
     print STDOUT qq[  
 </div>  
   
 <div id="document-errors" class="section">  
 <h2>Document Errors</h2>  
   
 <dl>];  
     push @nav, ['#document-errors' => 'Document Error'];  
   
     require Whatpm::ContentChecker;  
     my $onerror = sub {  
       my %opt = @_;  
       my ($cls, $msg) = get_text ($opt{type}, $opt{level});  
       $opt{type} = $opt{level} . ':' . $opt{type} if defined $opt{level};  
       $opt{type} =~ tr/ /-/;  
       $opt{type} =~ s/\|/%7C/g;  
       $msg .= qq[ [<a href="../error-description#$opt{type}">Description</a>]];  
       print STDOUT qq[<dt class="$cls">] . get_node_link ($opt{node}) .  
           qq[</dt>\n<dd class="$cls">], $msg, "</dd>\n";  
     };  
   
     my $elements;  
     if ($el) {  
       $elements = Whatpm::ContentChecker->check_element ($el, $onerror);  
     } else {  
       $elements = Whatpm::ContentChecker->check_document ($doc, $onerror);  
     }  
57    
58      print STDOUT qq[</dl>    check_and_print ($input => $result => $out);
59  </div>    
60  ];    $result->generate_result_section;
   
     if (@{$elements->{table}}) {  
       require JSON;  
   
       print STDOUT qq[  
 <div id="tables" class="section">  
 <h2>Tables</h2>  
   
 <!--[if IE]><script type="text/javascript" src="../excanvas.js"></script><![endif]-->  
 <script src="../table-script.js" type="text/javascript"></script>  
 <noscript>  
 <p><em>Structure of tables are visualized here if scripting is enabled.</em></p>  
 </noscript>  
 ];  
   
       my $i = 0;  
       for my $table_el (@{$elements->{table}}) {  
         $i++;  
         print STDOUT qq[<div class="section" id="table-$i"><h3>] .  
             get_node_link ($table_el) . q[</h3>];  
           
         my $table = Whatpm::HTMLTable->form_table ($table_el);  
           
         for (@{$table->{column_group}}, @{$table->{column}}, $table->{caption}) {  
           next unless $_;  
           delete $_->{element};  
         }  
           
         for (@{$table->{row_group}}) {  
           next unless $_;  
           next unless $_->{element};  
           $_->{type} = $_->{element}->manakai_local_name;  
           delete $_->{element};  
         }  
           
         for (@{$table->{cell}}) {  
           next unless $_;  
           for (@{$_}) {  
             next unless $_;  
             for (@$_) {  
               $_->{id} = refaddr $_->{element} if defined $_->{element};  
               delete $_->{element};  
             }  
           }  
         }  
           
         print STDOUT '</div><script type="text/javascript">tableToCanvas (';  
         print STDOUT JSON::objToJson ($table);  
         print STDOUT qq[, document.getElementById ('table-$i'));</script>];  
       }  
       
       print STDOUT qq[</div>];  
     }  
61    
62      if (keys %{$elements->{term}}) {    $out->nav_list;
       print STDOUT qq[  
 <div id="terms" class="section">  
 <h2>Terms</h2>  
   
 <dl>  
 ];  
       for my $term (sort {$a cmp $b} keys %{$elements->{term}}) {  
         print STDOUT qq[<dt>@{[htescape $term]}</dt>];  
         for (@{$elements->{term}->{$term}}) {  
           print STDOUT qq[<dd>].get_node_link ($_).qq[</dd>];  
         }  
       }  
       print STDOUT qq[</dl></div>];  
     }  
   }  
63    
64    ## TODO: Show result    exit;
65    }
66    
67    print STDOUT qq[  sub check_and_print ($$$) {
68  <ul class="navigation" id="nav-items">    my ($input, $result, $out) = @_;
69  ];    my $original_input = $out->input;
70    for (@nav) {    $out->input ($input);
71      print STDOUT qq[<li><a href="$_->[0]">$_->[1]</a></li>];  
72    }    $input->generate_info_section ($result);
73    print STDOUT qq[  
74  </ul>    $input->generate_transfer_sections ($result);
75  </body>  
76  </html>    unless (defined $input->{s}) {
77  ];      $result->{conforming_min} = 0;
78        return;
79  exit;    }
80    
81  sub print_source_string ($) {    my $checker_class = {
82    my $s = $_[0];      'text/cache-manifest' => 'WebHACC::Language::CacheManifest',
83    my $i = 1;      'text/css' => 'WebHACC::Language::CSS',
84    print STDOUT qq[<ol lang="">\n];      'text/html' => 'WebHACC::Language::HTML',
85    if (length $$s) {      'text/x-webidl' => 'WebHACC::Language::WebIDL',
86      while ($$s =~ /\G([^\x0A]*?)\x0D?\x0A/gc) {  
87        print STDOUT qq[<li id="line-$i">], htescape $1, "</li>\n";      'text/xml' => 'WebHACC::Language::XML',
88        $i++;      'application/atom+xml' => 'WebHACC::Language::XML',
89      }      'application/rss+xml' => 'WebHACC::Language::XML',
90      if ($$s =~ /\G([^\x0A]+)/gc) {      'image/svg+xml' => 'WebHACC::Language::XML',
91        print STDOUT qq[<li id="line-$i">], htescape $1, "</li>\n";      'application/xhtml+xml' => 'WebHACC::Language::XML',
92      }      'application/xml' => 'WebHACC::Language::XML',
93    } else {      ## TODO: Should we make all XML MIME Types fall
94      print STDOUT q[<li id="line-1"></li>];      ## into this category?
95    }  
96    print STDOUT "</ol>";      ## NOTE: This type has different model from normal XML types.
97  } # print_input_string      'application/rdf+xml' => 'WebHACC::Language::XML',
98      }->{$input->{media_type}} || 'WebHACC::Language::Default';
99    
100      eval qq{ require $checker_class } or die "$0: Loading $checker_class: $@";
101      my $checker = $checker_class->new;
102      $checker->input ($input);
103      $checker->output ($out);
104      $checker->result ($result);
105    
106      ## TODO: A cache manifest MUST be text/cache-manifest
107      ## TODO: WebIDL media type "text/x-webidl"
108    
109      $checker->generate_syntax_error_section;
110      $checker->generate_source_string_section;
111    
112      my @subdoc;
113      $checker->onsubdoc (sub {
114        push @subdoc, shift;
115      });
116    
117      $checker->generate_structure_dump_section;
118      $checker->generate_structure_error_section;
119      $checker->generate_additional_sections;
120    
121  sub print_document_tree ($) {  =pod
   my $node = shift;  
   my $r = '<ol class="xoxo">';  
   
   my @node = ($node);  
   while (@node) {  
     my $child = shift @node;  
     unless (ref $child) {  
       $r .= $child;  
       next;  
     }  
122    
123      my $node_id = 'node-'.refaddr $child;    if (defined $doc or defined $el) {
     my $nt = $child->node_type;  
     if ($nt == $child->ELEMENT_NODE) {  
       my $child_nsuri = $child->namespace_uri;  
       $r .= qq[<li id="$node_id" class="tree-element"><code title="@{[defined $child_nsuri ? $child_nsuri : '']}">] . htescape ($child->tag_name) .  
           '</code>'; ## ISSUE: case  
   
       if ($child->has_attributes) {  
         $r .= '<ul class="attributes">';  
         for my $attr (sort {$a->[0] cmp $b->[0]} map { [$_->name, $_->value, $_->namespace_uri, 'node-'.refaddr $_] }  
                       @{$child->attributes}) {  
           $r .= qq[<li id="$attr->[3]" class="tree-attribute"><code title="@{[defined $_->[2] ? $_->[2] : '']}">] . htescape ($attr->[0]) . '</code> = '; ## ISSUE: case?  
           $r .= '<q>' . htescape ($attr->[1]) . '</q></li>'; ## TODO: children  
         }  
         $r .= '</ul>';  
       }  
124    
125        if ($child->has_child_nodes) {      print_listing_section ({
126          $r .= '<ol class="children">';        id => 'identifiers', label => 'IDs', heading => 'Identifiers',
127          unshift @node, @{$child->child_nodes}, '</ol></li>';      }, $input, $elements->{id}) if keys %{$elements->{id}};
128        } else {      print_listing_section ({
129          $r .= '</li>';        id => 'terms', label => 'Terms', heading => 'Terms',
130        }      }, $input, $elements->{term}) if keys %{$elements->{term}};
131      } elsif ($nt == $child->TEXT_NODE) {      print_listing_section ({
132        $r .= qq'<li id="$node_id" class="tree-text"><q lang="">' . htescape ($child->data) . '</q></li>';        id => 'classes', label => 'Classes', heading => 'Classes',
133      } elsif ($nt == $child->CDATA_SECTION_NODE) {      }, $input, $elements->{class}) if keys %{$elements->{class}};
134        $r .= qq'<li id="$node_id" class="tree-cdata"><code>&lt;[CDATA[</code><q lang="">' . htescape ($child->data) . '</q><code>]]&gt;</code></li>';    
135      } elsif ($nt == $child->COMMENT_NODE) {      print_rdf_section ($input, $elements->{rdf}) if @{$elements->{rdf}};
136        $r .= qq'<li id="$node_id" class="tree-comment"><code>&lt;!--</code><q lang="">' . htescape ($child->data) . '</q><code>--&gt;</code></li>';    }
137      } elsif ($nt == $child->DOCUMENT_NODE) {  
138        $r .= qq'<li id="$node_id" class="tree-document">Document';  =cut
139        $r .= qq[<ul class="attributes">];  
140        $r .= qq[<li>@{[scalar get_text ('manakaiIsHTML:'.($child->manakai_is_html?1:0))]}</li>];    my $id_prefix = 0;
141        $r .= qq[<li>@{[scalar get_text ('manakaiCompatMode:'.$child->manakai_compat_mode)]}</li>];    for my $_subinput (@subdoc) {
142        $r .= qq[</ul>];      my $subinput = WebHACC::Input::Subdocument->new (++$id_prefix);
143        if ($child->has_child_nodes) {      $subinput->{$_} = $_subinput->{$_} for keys %$_subinput;
144          $r .= '<ol class="children">';      $subinput->{base_uri} = $subinput->{container_node}->base_uri
145          unshift @node, @{$child->child_nodes}, '</ol></li>';          unless defined $subinput->{base_uri};
146        }      $subinput->{parent_input} = $input;
147      } elsif ($nt == $child->DOCUMENT_TYPE_NODE) {  
148        $r .= qq'<li id="$node_id" class="tree-doctype"><code>&lt;!DOCTYPE&gt;</code><ul class="attributes">';      $subinput->start_section ($result);
149        $r .= qq[<li class="tree-doctype-name">Name = <q>@{[htescape ($child->name)]}</q></li>];      check_and_print ($subinput => $result => $out);
150        $r .= qq[<li class="tree-doctype-publicid">Public identifier = <q>@{[htescape ($child->public_id)]}</q></li>];      $subinput->end_section ($result);
       $r .= qq[<li class="tree-doctype-systemid">System identifier = <q>@{[htescape ($child->system_id)]}</q></li>];  
       $r .= '</ul></li>';  
     } elsif ($nt == $child->PROCESSING_INSTRUCTION_NODE) {  
       $r .= qq'<li id="$node_id" class="tree-id"><code>&lt;?@{[htescape ($child->target)]}</code> <q>@{[htescape ($child->data)]}</q><code>?&gt;</code></li>';  
     } else {  
       $r .= qq'<li id="$node_id" class="tree-unknown">@{[$child->node_type]} @{[htescape ($child->node_name)]}</li>'; # error  
     }  
151    }    }
152    
153    $r .= '</ol>';    $out->input ($original_input);
154    print STDOUT $r;  } # check_and_print
 } # print_document_tree  
   
 sub get_node_path ($) {  
   my $node = shift;  
   my @r;  
   while (defined $node) {  
     my $rs;  
     if ($node->node_type == 1) {  
       $rs = $node->manakai_local_name;  
       $node = $node->parent_node;  
     } elsif ($node->node_type == 2) {  
       $rs = '@' . $node->manakai_local_name;  
       $node = $node->owner_element;  
     } elsif ($node->node_type == 3) {  
       $rs = '"' . $node->data . '"';  
       $node = $node->parent_node;  
     } elsif ($node->node_type == 9) {  
       $rs = '';  
       $node = $node->parent_node;  
     } else {  
       $rs = '#' . $node->node_type;  
       $node = $node->parent_node;  
     }  
     unshift @r, $rs;  
   }  
   return join '/', @r;  
 } # get_node_path  
155    
 sub get_node_link ($) {  
   return qq[<a href="#node-@{[refaddr $_[0]]}">] .  
       htescape (get_node_path ($_[0])) . qq[</a>];  
 } # get_node_link  
156    
157  {  {
158    my $Msg = {};    my $Msg = {};
159    
160  sub load_text_catalog ($) {  sub load_text_catalog ($) {
161    #  my $self = shift;
162    my $lang = shift; # MUST be a canonical lang name    my $lang = shift; # MUST be a canonical lang name
163    open my $file, '<', "cc-msg.$lang.txt" or die "$0: cc-msg.$lang.txt: $!";    open my $file, '<:utf8', "cc-msg.$lang.txt"
164          or die "$0: cc-msg.$lang.txt: $!";
165    while (<$file>) {    while (<$file>) {
166      if (s/^([^;]+);([^;]*);//) {      if (s/^([^;]+);([^;]*);//) {
167        my ($type, $cls, $msg) = ($1, $2, $_);        my ($type, $cls, $msg) = ($1, $2, $_);
# Line 435  sub load_text_catalog ($) { Line 171  sub load_text_catalog ($) {
171    }    }
172  } # load_text_catalog  } # load_text_catalog
173    
174  sub get_text ($) {  sub get_text ($;$$) {
175    my ($type, $level) = @_;  #  my $self = shift;
176      my ($type, $level, $node) = @_;
177    $type = $level . ':' . $type if defined $level;    $type = $level . ':' . $type if defined $level;
178      $level = 'm' unless defined $level;
179    my @arg;    my @arg;
180    {    {
181      if (defined $Msg->{$type}) {      if (defined $Msg->{$type}) {
182        my $msg = $Msg->{$type}->[1];        my $msg = $Msg->{$type}->[1];
183        $msg =~ s/\$([0-9]+)/defined $arg[$1] ? htescape ($arg[$1]) : '(undef)'/ge;        $msg =~ s{<var>\$([0-9]+)</var>}{
184        return ($Msg->{$type}->[0], $msg);          defined $arg[$1] ? ($arg[$1]) : '(undef)';
185          }ge;                 ##BUG: ^ must be escaped
186          $msg =~ s{<var>{\@([A-Za-z0-9:_.-]+)}</var>}{
187            UNIVERSAL::can ($node, 'get_attribute_ns')
188                ?  ($node->get_attribute_ns (undef, $1)) : ''
189          }ge; ## BUG: ^ must be escaped
190          $msg =~ s{<var>{\@}</var>}{        ## BUG: v must be escaped
191            UNIVERSAL::can ($node, 'value') ? ($node->value) : ''
192          }ge;
193          $msg =~ s{<var>{local-name}</var>}{
194            UNIVERSAL::can ($node, 'manakai_local_name')
195              ? ($node->manakai_local_name) : ''
196          }ge;  ## BUG: ^ must be escaped
197          $msg =~ s{<var>{element-local-name}</var>}{
198            (UNIVERSAL::can ($node, 'owner_element') and
199             $node->owner_element)
200              ?  ($node->owner_element->manakai_local_name)
201              : '' ## BUG: ^ must be escaped
202          }ge;
203          return ($type, 'level-' . $level . ' ' . $Msg->{$type}->[0], $msg);
204      } elsif ($type =~ s/:([^:]*)$//) {      } elsif ($type =~ s/:([^:]*)$//) {
205        unshift @arg, $1;        unshift @arg, $1;
206        redo;        redo;
207      }      }
208    }    }
209    return ('', htescape ($_[0]));    return ($type, 'level-'.$level, ($_[0]));
210                                     ## BUG: ^ must be escaped
211  } # get_text  } # get_text
212    
213  }  }
214    
215    sub get_input_document ($$) {
216      my ($http, $dom) = @_;
217    
218      require Encode;
219      my $request_uri = Encode::decode ('utf-8', $http->get_parameter ('uri'));
220      my $r = WebHACC::Input->new;
221      if (defined $request_uri and length $request_uri) {
222        my $uri = $dom->create_uri_reference ($request_uri);
223        unless ({
224                 http => 1,
225                }->{lc $uri->uri_scheme}) {
226          $r = WebHACC::Input::Error->new;
227          $r->{uri} = $request_uri;
228          $r->{request_uri} = $request_uri;
229          $r->{error_status_text} = 'URL scheme not allowed';
230        }
231    
232        require Message::Util::HostPermit;
233        my $host_permit = new Message::Util::HostPermit;
234        $host_permit->add_rule (<<EOH);
235    Allow host=suika port=80
236    Deny host=suika
237    Allow host=suika.fam.cx port=80
238    Deny host=suika.fam.cx
239    Deny host=localhost
240    Deny host=*.localdomain
241    Deny ipv4=0.0.0.0/8
242    Deny ipv4=10.0.0.0/8
243    Deny ipv4=127.0.0.0/8
244    Deny ipv4=169.254.0.0/16
245    Deny ipv4=172.0.0.0/11
246    Deny ipv4=192.0.2.0/24
247    Deny ipv4=192.88.99.0/24
248    Deny ipv4=192.168.0.0/16
249    Deny ipv4=198.18.0.0/15
250    Deny ipv4=224.0.0.0/4
251    Deny ipv4=255.255.255.255/32
252    Deny ipv6=0::0/0
253    Allow host=*
254    EOH
255        unless ($host_permit->check ($uri->uri_host, $uri->uri_port || 80)) {
256          my $r = WebHACC::Input::Error->new;
257          $r->{uri} = $request_uri;
258          $r->{request_uri} = $request_uri;
259          $r->{error_status_text} = 'Connection to the host is forbidden';
260          return $r;
261        }
262    
263        require LWP::UserAgent;
264        my $ua = WDCC::LWPUA->new;
265        $ua->{wdcc_dom} = $dom;
266        $ua->{wdcc_host_permit} = $host_permit;
267        $ua->agent ('Mozilla'); ## TODO: for now.
268        $ua->parse_head (0);
269        $ua->protocols_allowed ([qw/http/]);
270        $ua->max_size (1000_000);
271        my $req = HTTP::Request->new (GET => $request_uri);
272        $req->header ('Accept-Encoding' => 'identity, *; q=0');
273        my $res = $ua->request ($req);
274        ## TODO: 401 sets |is_success| true.
275        if ($res->is_success or $http->get_parameter ('error-page')) {
276          $r->{base_uri} = $res->base; ## NOTE: It does check |Content-Base|, |Content-Location|, and <base>. ## TODO: Use our own code!
277          $r->{uri} = $res->request->uri;
278          $r->{request_uri} = $request_uri;
279    
280          ## TODO: More strict parsing...
281          my $ct = $res->header ('Content-Type');
282          if (defined $ct and $ct =~ /;\s*charset\s*=\s*"?([^\s;"]+)"?/i) {
283            $r->{charset} = lc $1;
284            $r->{charset} =~ tr/\\//d;
285            $r->{official_charset} = $r->{charset};
286          }
287    
288          my $input_charset = $http->get_parameter ('charset');
289          if (defined $input_charset and length $input_charset) {
290            $r->{charset_overridden}
291                = (not defined $r->{charset} or $r->{charset} ne $input_charset);
292            $r->{charset} = $input_charset;
293          }
294    
295          ## TODO: Support for HTTP Content-Encoding
296    
297          $r->{s} = ''.$res->content;
298    
299          require Whatpm::ContentType;
300          ($r->{official_type}, $r->{media_type})
301              = Whatpm::ContentType->get_sniffed_type
302                  (get_file_head => sub {
303                     return substr $r->{s}, 0, shift;
304                   },
305                   http_content_type_byte => $ct,
306                   has_http_content_encoding =>
307                       defined $res->header ('Content-Encoding'),
308                   supported_image_types => {});
309        } else {
310          $r->{uri} = $res->request->uri;
311          $r->{request_uri} = $request_uri;
312          $r->{error_status_text} = $res->status_line;
313        }
314    
315        $r->{header_field} = [];
316        $res->scan (sub {
317          push @{$r->{header_field}}, [$_[0], $_[1]];
318        });
319        $r->{header_status_code} = $res->code;
320        $r->{header_status_text} = $res->message;
321      } else {
322        $r->{s} = ''.$http->get_parameter ('s');
323        $r->{uri} = q<thismessage:/>;
324        $r->{request_uri} = q<thismessage:/>;
325        $r->{base_uri} = q<thismessage:/>;
326        $r->{charset} = ''.$http->get_parameter ('_charset_');
327        $r->{charset} =~ s/\s+//g;
328        $r->{charset} = 'utf-8' if $r->{charset} eq '';
329        $r->{official_charset} = $r->{charset};
330        $r->{header_field} = [];
331    
332        require Whatpm::ContentType;
333        ($r->{official_type}, $r->{media_type})
334            = Whatpm::ContentType->get_sniffed_type
335                (get_file_head => sub {
336                   return substr $r->{s}, 0, shift;
337                 },
338                 http_content_type_byte => undef,
339                 has_http_content_encoding => 0,
340                 supported_image_types => {});
341      }
342    
343      my $input_format = $http->get_parameter ('i');
344      if (defined $input_format and length $input_format) {
345        $r->{media_type_overridden}
346            = (not defined $r->{media_type} or $input_format ne $r->{media_type});
347        $r->{media_type} = $input_format;
348      }
349      if (defined $r->{s} and not defined $r->{media_type}) {
350        $r->{media_type} = 'text/html';
351        $r->{media_type_overridden} = 1;
352      }
353    
354      if ($r->{media_type} eq 'text/xml') {
355        unless (defined $r->{charset}) {
356          $r->{charset} = 'us-ascii';
357          $r->{official_charset} = $r->{charset};
358        } elsif ($r->{charset_overridden} and $r->{charset} eq 'us-ascii') {
359          $r->{charset_overridden} = 0;
360        }
361      }
362    
363      if (length $r->{s} > 1000_000) {
364        $r->{error_status_text} = 'Entity-body too large';
365        delete $r->{s};
366        return $r;
367      }
368    
369      $r->{inner_html_element} = $http->get_parameter ('e');
370    
371      return $r;
372    } # get_input_document
373    
374    package WDCC::LWPUA;
375    BEGIN { push our @ISA, 'LWP::UserAgent'; }
376    
377    sub redirect_ok {
378      my $ua = shift;
379      unless ($ua->SUPER::redirect_ok (@_)) {
380        return 0;
381      }
382    
383      my $uris = $_[1]->header ('Location');
384      return 0 unless $uris;
385      my $uri = $ua->{wdcc_dom}->create_uri_reference ($uris);
386      unless ({
387               http => 1,
388              }->{lc $uri->uri_scheme}) {
389        return 0;
390      }
391      unless ($ua->{wdcc_host_permit}->check ($uri->uri_host, $uri->uri_port || 80)) {
392        return 0;
393      }
394      return 1;
395    } # redirect_ok
396    
397  =head1 AUTHOR  =head1 AUTHOR
398    
399  Wakaba <w@suika.fam.cx>.  Wakaba <w@suika.fam.cx>.
400    
401  =head1 LICENSE  =head1 LICENSE
402    
403  Copyright 2007 Wakaba <w@suika.fam.cx>  Copyright 2007-2008 Wakaba <w@suika.fam.cx>
404    
405  This library is free software; you can redistribute it  This library is free software; you can redistribute it
406  and/or modify it under the same terms as Perl itself.  and/or modify it under the same terms as Perl itself.

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.56

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24