/[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.13 by wakaba, Tue Jul 17 13:52:54 2007 UTC revision 1.64 by wakaba, Sun Aug 17 05:06:21 2008 UTC
# Line 2  Line 2 
2  use strict;  use strict;
3    
4  use lib qw[/home/httpd/html/www/markup/html/whatpm  use lib qw[/home/httpd/html/www/markup/html/whatpm
5             /home/wakaba/work/manakai/lib             /home/wakaba/work/manakai2/lib];
            /home/wakaba/public_html/-temp/wiki/lib];  
6  use CGI::Carp qw[fatalsToBrowser];  use CGI::Carp qw[fatalsToBrowser];
 use Scalar::Util qw[refaddr];  
7    
8  use SuikaWiki::Input::HTTP; ## TODO: Use some better CGI module    require WebHACC::Input;
9    
10  sub htescape ($) {  {
11    my $s = $_[0];    require Message::CGI::HTTP;
12    $s =~ s/&/&/g;    my $http = Message::CGI::HTTP->new;
   $s =~ s/</&lt;/g;  
   $s =~ s/>/&gt;/g;  
   $s =~ s/"/&quot;/g;  
   $s =~ s{([\x00-\x09\x0B-\x1F\x7F-\xA0\x{FEFF}\x{FFFC}-\x{FFFF}])}{  
     sprintf '<var>U+%04X</var>', ord $1;  
   }ge;  
   return $s;  
 } # htescape  
   
 my $http = SuikaWiki::Input::HTTP->new;  
13    
14  ## TODO: _charset_    require WebHACC::Output;
15      my $out = WebHACC::Output->new;
16      $out->handle (*STDOUT);
17      $out->set_utf8;
18    
19    if ($http->meta_variable ('PATH_INFO') ne '/') {    if ($http->get_meta_variable ('PATH_INFO') ne '/') {
20      print STDOUT "Status: 404 Not Found\nContent-Type: text/plain; charset=us-ascii\n\n400";      $out->http_error (404);
21      exit;      exit;
22    }    }
23    
24    binmode STDOUT, ':utf8';    ## TODO: We need real conneg support...
25      my $primary_language = 'en';
26    require Message::DOM::DOMImplementation;    if ($ENV{HTTP_ACCEPT_LANGUAGE} =~ /ja/) {
27    my $dom = Message::DOM::DOMImplementation->new;      $primary_language = 'ja';
   
   my $input = get_input_document ($http, $dom);  
   my $inner_html_element = $http->parameter ('e');  
   
   load_text_catalog ('en'); ## TODO: conneg  
   
   my @nav;  
   print STDOUT qq[Content-Type: text/html; charset=utf-8  
   
 <!DOCTYPE html>  
 <html lang="en">  
 <head>  
 <title>Web Document Conformance Checker (BETA)</title>  
 <link rel="stylesheet" href="../cc-style.css" type="text/css">  
 </head>  
 <body>  
 <h1><a href="../cc-interface">Web Document Conformance Checker</a>  
 (<em>beta</em>)</h1>  
   
 <div id="document-info" class="section">  
 <dl>  
 <dt>Request URI</dt>  
     <dd><code class="URI" lang="">&lt;<a href="@{[htescape $input->{request_uri}]}">@{[htescape $input->{request_uri}]}</a>&gt;</code></dd>  
 <dt>Document URI</dt>  
     <dd><code class="URI" lang="">&lt;<a href="@{[htescape $input->{uri}]}">@{[htescape $input->{uri}]}</a>&gt;</code></dd>  
 ]; # no </dl> yet  
   push @nav, ['#document-info' => 'Information'];  
   
 if (defined $input->{s}) {  
   
   print STDOUT qq[  
 <dt>Base URI</dt>  
     <dd><code class="URI" lang="">&lt;<a href="@{[htescape $input->{base_uri}]}">@{[htescape $input->{base_uri}]}</a>&gt;</code></dd>  
 <dt>Internet Media Type</dt>  
     <dd><code class="MIME" lang="en">@{[htescape $input->{media_type}]}</code>  
     @{[$input->{media_type_overridden} ? '<em>(overridden)</em>' : '']}</dd>  
 <dt>Character Encoding</dt>  
     <dd>@{[defined $input->{charset} ? '<code class="charset" lang="en">'.htescape ($input->{charset}).'</code>' : '(none)']}  
     @{[$input->{charset_overridden} ? '<em>(overridden)</em>' : '']}</dd>  
 </dl>  
 </div>  
 ];  
   
   print_http_header_section ($input);  
   
   my $doc;  
   my $el;  
   
   if ($input->{media_type} eq 'text/html') {  
     require Encode;  
     require Whatpm::HTML;  
   
     $input->{charset} ||= 'ISO-8859-1'; ## TODO: for now.  
       
     my $t = Encode::decode ($input->{charset}, $input->{s});  
   
     print STDOUT qq[  
 <div id="parse-errors" class="section">  
 <h2>Parse Errors</h2>  
   
 <dl>];  
   push @nav, ['#parse-errors' => 'Parse Error'];  
   
   my $onerror = sub {  
     my (%opt) = @_;  
     my ($type, $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];  
     }  
     $type =~ tr/ /-/;  
     $type =~ s/\|/%7C/g;  
     $msg .= qq[ [<a href="../error-description#@{[htescape ($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, $t, $onerror);  
   } else {  
     Whatpm::HTML->parse_string ($t => $doc, $onerror);  
   }  
   
   print STDOUT qq[</dl>  
 </div>  
 ];  
   
     print_source_string_section (\($input->{s}), $input->{charset});  
   } elsif ({  
             'text/xml' => 1,  
             'application/xhtml+xml' => 1,  
             'application/xml' => 1,  
            }->{$input->{media_type}}) {  
     require Message::DOM::XMLParserTemp;  
   
     print STDOUT qq[  
 <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, '<', \($input->{s});  
   $doc = Message::DOM::XMLParserTemp->parse_byte_stream  
       ($fh => $dom, $onerror, charset => $input->{charset});  
   
     print STDOUT qq[</dl>  
 </div>  
   
 ];  
     print_source_string_section (\($input->{s}), $doc->input_encoding);  
   } else {  
     ## TODO: Change HTTP status code??  
     print STDOUT qq[  
 <div id="result-summary" class="section">  
 <p><em>Media type <code class="MIME" lang="en">@{[htescape $input->{media_type}]}</code> is not supported!</em></p>  
 </div>  
 ];  
     push @nav, ['#result-summary' => 'Result'];  
   }  
   
   
   if (defined $doc or defined $el) {  
     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 ($type, $cls, $msg) = get_text ($opt{type}, $opt{level});  
       $type =~ tr/ /-/;  
       $type =~ s/\|/%7C/g;  
       $msg .= qq[ [<a href="../error-description#@{[htescape ($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);  
     }  
   
     print STDOUT qq[</dl>  
 </div>  
 ];  
   
     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>];  
   
         ## TODO: Make |ContentChecker| return |form_table| result  
         ## so that this script don't have to run the algorithm twice.  
         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};  
               $_->{is_header} = $_->{is_header} ? 1 : 0;  
             }  
           }  
         }  
           
         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>];  
     }  
   
     if (keys %{$elements->{id}}) {  
       print STDOUT qq[  
 <div id="identifiers" class="section">  
 <h2>Identifiers</h2>  
   
 <dl>  
 ];  
       for my $id (sort {$a cmp $b} keys %{$elements->{id}}) {  
         print STDOUT qq[<dt>@{[htescape $id]}</dt>];  
         for (@{$elements->{id}->{$id}}) {  
           print STDOUT qq[<dd>].get_node_link ($_).qq[</dd>];  
         }  
       }  
       print STDOUT qq[</dl></div>];  
     }  
   
     if (keys %{$elements->{term}}) {  
       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>];  
     }  
   }  
   
   ## TODO: Show result  
 } else {  
   print STDOUT qq[  
 </dl>  
 </div>  
   
 <div class="section" id="result-summary">  
 <p><em><strong>Input Error</strong>: @{[htescape ($input->{error_status_text})]}</em></p>  
 </div>  
 ];  
   push @nav, ['#result-summary' => 'Result'];  
   
 }  
   
   print STDOUT qq[  
 <ul class="navigation" id="nav-items">  
 ];  
   for (@nav) {  
     print STDOUT qq[<li><a href="$_->[0]">$_->[1]</a></li>];  
28    }    }
29    print STDOUT qq[    $out->load_text_catalog ($primary_language);
 </ul>  
 </body>  
 </html>  
 ];  
   
 exit;  
   
 sub print_http_header_section ($) {  
   my $input = shift;  
   return unless defined $input->{header_status_code} or  
       defined $input->{header_status_text} or  
       @{$input->{header_field}};  
30        
31    push @nav, ['#source-header' => 'HTTP Header'];    $out->set_flush;
32    print STDOUT qq[<div id="source-header" class="section">    $out->http_header;
33  <h2>HTTP Header</h2>    $out->html_header;
34      $out->unset_flush;
35  <p><strong>Note</strong>: Due to the limitation of the  
36  network library in use, the content of this section might    $out->generate_input_section ($http);
37  not be the real header.</p>  
38      my $u = $http->get_parameter ('uri');
39  <table><tbody>    my $s = $http->get_parameter ('s');
40  ];    if ((not defined $u or not length $u) and
41          (not defined $s or not length $s)) {
42    if (defined $input->{header_status_code}) {      exit;
     print STDOUT qq[<tr><th scope="row">Status code</th>];  
     print STDOUT qq[<td><code>@{[htescape ($input->{header_status_code})]}</code></td></tr>];  
   }  
   if (defined $input->{header_status_text}) {  
     print STDOUT qq[<tr><th scope="row">Status text</th>];  
     print STDOUT qq[<td><code>@{[htescape ($input->{header_status_text})]}</code></td></tr>];  
   }  
     
   for (@{$input->{header_field}}) {  
     print STDOUT qq[<tr><th scope="row"><code>@{[htescape ($_->[0])]}</code></th>];  
     print STDOUT qq[<td><code>@{[htescape ($_->[1])]}</code></td></tr>];  
   }  
   
   print STDOUT qq[</tbody></table></div>];  
 } # print_http_header_section  
   
 sub print_source_string_section ($$) {  
   require Encode;  
   my $enc = Encode::find_encoding ($_[1]); ## TODO: charset name -> Perl name  
   return unless $enc;  
   
   my $s = \($enc->decode (${$_[0]}));  
   my $i = 1;                              
   push @nav, ['#source-string' => 'Source'];  
   print STDOUT qq[<div id="source-string" class="section">  
 <h2>Document Source</h2>  
 <ol lang="">\n];  
   if (length $$s) {  
     while ($$s =~ /\G([^\x0A]*?)\x0D?\x0A/gc) {  
       print STDOUT qq[<li id="line-$i">], htescape $1, "</li>\n";  
       $i++;  
     }  
     if ($$s =~ /\G([^\x0A]+)/gc) {  
       print STDOUT qq[<li id="line-$i">], htescape $1, "</li>\n";  
     }  
   } else {  
     print STDOUT q[<li id="line-1"></li>];  
   }  
   print STDOUT "</ol></div>";  
 } # print_input_string_section  
   
 sub print_document_tree ($) {  
   my $node = shift;  
   my $r = '<ol class="xoxo">';  
   
   my @node = ($node);  
   while (@node) {  
     my $child = shift @node;  
     unless (ref $child) {  
       $r .= $child;  
       next;  
     }  
   
     my $node_id = 'node-'.refaddr $child;  
     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>';  
       }  
   
       if ($child->has_child_nodes) {  
         $r .= '<ol class="children">';  
         unshift @node, @{$child->child_nodes}, '</ol></li>';  
       } else {  
         $r .= '</li>';  
       }  
     } elsif ($nt == $child->TEXT_NODE) {  
       $r .= qq'<li id="$node_id" class="tree-text"><q lang="">' . htescape ($child->data) . '</q></li>';  
     } elsif ($nt == $child->CDATA_SECTION_NODE) {  
       $r .= qq'<li id="$node_id" class="tree-cdata"><code>&lt;[CDATA[</code><q lang="">' . htescape ($child->data) . '</q><code>]]&gt;</code></li>';  
     } elsif ($nt == $child->COMMENT_NODE) {  
       $r .= qq'<li id="$node_id" class="tree-comment"><code>&lt;!--</code><q lang="">' . htescape ($child->data) . '</q><code>--&gt;</code></li>';  
     } elsif ($nt == $child->DOCUMENT_NODE) {  
       $r .= qq'<li id="$node_id" class="tree-document">Document';  
       $r .= qq[<ul class="attributes">];  
       $r .= qq[<li>@{[scalar get_text ('manakaiIsHTML:'.($child->manakai_is_html?1:0))]}</li>];  
       $r .= qq[<li>@{[scalar get_text ('manakaiCompatMode:'.$child->manakai_compat_mode)]}</li>];  
       unless ($child->manakai_is_html) {  
         $r .= qq[<li>XML version = <code>@{[htescape ($child->xml_version)]}</code></li>];  
         if (defined $child->xml_encoding) {  
           $r .= qq[<li>XML encoding = <code>@{[htescape ($child->xml_encoding)]}</code></li>];  
         } else {  
           $r .= qq[<li>XML encoding = (null)</li>];  
         }  
         $r .= qq[<li>XML standalone = @{[$child->xml_standalone ? 'true' : 'false']}</li>];  
       }  
       $r .= qq[</ul>];  
       if ($child->has_child_nodes) {  
         $r .= '<ol class="children">';  
         unshift @node, @{$child->child_nodes}, '</ol></li>';  
       }  
     } elsif ($nt == $child->DOCUMENT_TYPE_NODE) {  
       $r .= qq'<li id="$node_id" class="tree-doctype"><code>&lt;!DOCTYPE&gt;</code><ul class="attributes">';  
       $r .= qq[<li class="tree-doctype-name">Name = <q>@{[htescape ($child->name)]}</q></li>];  
       $r .= qq[<li class="tree-doctype-publicid">Public identifier = <q>@{[htescape ($child->public_id)]}</q></li>];  
       $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  
     }  
   }  
   
   $r .= '</ol>';  
   print STDOUT $r;  
 } # 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) {  
       @r = ('') unless @r;  
       $rs = '';  
       $node = $node->parent_node;  
     } else {  
       $rs = '#' . $node->node_type;  
       $node = $node->parent_node;  
     }  
     unshift @r, $rs;  
43    }    }
   return join '/', @r;  
 } # get_node_path  
44    
45  sub get_node_link ($) {    require WebHACC::Result;
46    return qq[<a href="#node-@{[refaddr $_[0]]}">] .    my $result = WebHACC::Result->new;
47        htescape (get_node_path ($_[0])) . qq[</a>];    $result->output ($out);
 } # get_node_link  
48    
49  {    require WebHACC::Input;
50    my $Msg = {};    my $input = WebHACC::Input->get_document ($http => $result => $out);
51    
52  sub load_text_catalog ($) {    check_and_print ($input => $result => $out);
53    my $lang = shift; # MUST be a canonical lang name    
54    open my $file, '<', "cc-msg.$lang.txt" or die "$0: cc-msg.$lang.txt: $!";    $out->nav_list;
   while (<$file>) {  
     if (s/^([^;]+);([^;]*);//) {  
       my ($type, $cls, $msg) = ($1, $2, $_);  
       $msg =~ tr/\x0D\x0A//d;  
       $Msg->{$type} = [$cls, $msg];  
     }  
   }  
 } # load_text_catalog  
   
 sub get_text ($) {  
   my ($type, $level) = @_;  
   $type = $level . ':' . $type if defined $level;  
   my @arg;  
   {  
     if (defined $Msg->{$type}) {  
       my $msg = $Msg->{$type}->[1];  
       $msg =~ s{<var>\$([0-9]+)</var>}{  
         defined $arg[$1] ? htescape ($arg[$1]) : '(undef)';  
       }ge;  
       return ($type, $Msg->{$type}->[0], $msg);  
     } elsif ($type =~ s/:([^:]*)$//) {  
       unshift @arg, $1;  
       redo;  
     }  
   }  
   return ($type, '', htescape ($_[0]));  
 } # get_text  
55    
56      exit;
57  }  }
58    
59  sub get_input_document ($$) {  sub check_and_print ($$$) {
60    my ($http, $dom) = @_;    my ($input, $result, $out) = @_;
61      my $original_input = $out->input;
62    my $request_uri = $http->parameter ('uri');    $out->input ($input);
63    my $r = {};  
64    if (defined $request_uri and length $request_uri) {    $input->generate_info_section ($result);
65      my $uri = $dom->create_uri_reference ($request_uri);  
66      unless ({    $input->generate_transfer_sections ($result);
67               http => 1,  
68              }->{lc $uri->uri_scheme}) {    unless (defined $input->{s}) {
69        return {uri => $request_uri, request_uri => $request_uri,      ## NOTE: This is an error of the implementation.
70                error_status_text => 'URI scheme not allowed'};      $result->layer_uncertain ('transfer');
71      }      $result->generate_result_section;
72    
73      require Message::Util::HostPermit;      $out->input ($original_input);
74      my $host_permit = new Message::Util::HostPermit;      return;
75      $host_permit->add_rule (<<EOH);    }
76  Allow host=suika port=80  
77  Deny host=suika    my $checker_class = {
78  Allow host=suika.fam.cx port=80      'text/cache-manifest' => 'WebHACC::Language::CacheManifest',
79  Deny host=suika.fam.cx      'text/css' => 'WebHACC::Language::CSS',
80  Deny host=localhost      'text/html' => 'WebHACC::Language::HTML',
81  Deny host=*.localdomain      'text/x-h2h' => 'WebHACC::Language::H2H',
82  Deny ipv4=0.0.0.0/8      'text/x-webidl' => 'WebHACC::Language::WebIDL',
83  Deny ipv4=10.0.0.0/8  
84  Deny ipv4=127.0.0.0/8      'text/xml' => 'WebHACC::Language::XML',
85  Deny ipv4=169.254.0.0/16      'application/atom+xml' => 'WebHACC::Language::XML',
86  Deny ipv4=172.0.0.0/11      'application/rss+xml' => 'WebHACC::Language::XML',
87  Deny ipv4=192.0.2.0/24      'image/svg+xml' => 'WebHACC::Language::XML',
88  Deny ipv4=192.88.99.0/24      'application/xhtml+xml' => 'WebHACC::Language::XML',
89  Deny ipv4=192.168.0.0/16      'application/xml' => 'WebHACC::Language::XML',
90  Deny ipv4=198.18.0.0/15      ## TODO: Should we make all XML MIME Types fall
91  Deny ipv4=224.0.0.0/4      ## into this category?
92  Deny ipv4=255.255.255.255/32  
93  Deny ipv6=0::0/0      ## NOTE: This type has different model from normal XML types.
94  Allow host=*      'application/rdf+xml' => 'WebHACC::Language::XML',
95  EOH    }->{$input->{media_type}} || 'WebHACC::Language::Default';
96      unless ($host_permit->check ($uri->uri_host, $uri->uri_port || 80)) {  
97        return {uri => $request_uri, request_uri => $request_uri,    eval qq{ require $checker_class } or die "$0: Loading $checker_class: $@";
98                error_status_text => 'Connection to the host is forbidden'};    my $checker = $checker_class->new;
99      }    $checker->input ($input);
100      $checker->output ($out);
101      require LWP::UserAgent;    $checker->result ($result);
102      my $ua = WDCC::LWPUA->new;  
103      $ua->{wdcc_dom} = $dom;    ## TODO: A cache manifest MUST be text/cache-manifest
104      $ua->{wdcc_host_permit} = $host_permit;    ## TODO: WebIDL media type "text/x-webidl"
105      $ua->agent ('Mozilla'); ## TODO: for now.  
106      $ua->parse_head (0);    $checker->generate_syntax_error_section;
107      $ua->protocols_allowed ([qw/http/]);    $checker->generate_source_string_section;
108      $ua->max_size (1000_000);  
109      my $req = HTTP::Request->new (GET => $request_uri);    my @subdoc;
110      my $res = $ua->request ($req);    $checker->onsubdoc (sub {
111      if ($res->is_success or $http->parameter ('error-page')) {      push @subdoc, shift;
112        $r->{base_uri} = $res->base; ## NOTE: It does check |Content-Base|, |Content-Location|, and <base>. ## TODO: Use our own code!    });
113        $r->{uri} = $res->request->uri;  
114        $r->{request_uri} = $request_uri;    $checker->generate_structure_dump_section;
115      $checker->generate_structure_error_section;
116        ## TODO: More strict parsing...    $checker->generate_additional_sections;
117        my $ct = $res->header ('Content-Type');  
118        if (defined $ct and $ct =~ m#^([0-9A-Za-z._+-]+/[0-9A-Za-z._+-]+)#) {    my $id_prefix = 0;
119          $r->{media_type} = lc $1;    for my $_subinput (@subdoc) {
120        }      my $subinput = WebHACC::Input::Subdocument->new (++$id_prefix);
121        if (defined $ct and $ct =~ /;\s*charset\s*=\s*"?(\S+)"?/i) {      $subinput->{$_} = $_subinput->{$_} for keys %$_subinput;
122          $r->{charset} = lc $1;      $subinput->{base_uri} = $subinput->{container_node}->base_uri
123          $r->{charset} =~ tr/\\//d;          unless defined $subinput->{base_uri};
124        }      $subinput->{parent_input} = $input;
125    
126        my $input_charset = $http->parameter ('charset');      my $subresult = WebHACC::Result->new;
127        if (defined $input_charset and length $input_charset) {      $subresult->output ($out);
128          $r->{charset_overridden}      $subresult->parent_result ($result);
129              = (not defined $r->{charset} or $r->{charset} ne $input_charset);  
130          $r->{charset} = $input_charset;      $subinput->start_section ($subresult);
131        }      check_and_print ($subinput => $subresult => $out);
132        $subinput->end_section ($subresult);
       $r->{s} = ''.$res->content;  
     } else {  
       $r->{uri} = $res->request->uri;  
       $r->{request_uri} = $request_uri;  
       $r->{error_status_text} = $res->status_line;  
     }  
   
     $r->{header_field} = [];  
     $res->scan (sub {  
       push @{$r->{header_field}}, [$_[0], $_[1]];  
     });  
     $r->{header_status_code} = $res->code;  
     $r->{header_status_text} = $res->message;  
   } else {  
     $r->{s} = ''.$http->parameter ('s');  
     $r->{uri} = q<thismessage:/>;  
     $r->{request_uri} = q<thismessage:/>;  
     $r->{base_uri} = q<thismessage:/>;  
     $r->{charset} = ''.$http->parameter ('_charset_');  
     $r->{charset} =~ s/\s+//g;  
     $r->{charset} = 'utf-8' if $r->{charset} eq '';  
     $r->{header_field} = [];  
   }  
   
   my $input_format = $http->parameter ('i');  
   if (defined $input_format and length $input_format) {  
     $r->{media_type_overridden}  
         = (not defined $r->{media_type} or $input_format ne $r->{media_type});  
     $r->{media_type} = $input_format;  
   }  
   if (defined $r->{s} and not defined $r->{media_type}) {  
     $r->{media_type} = 'text/html';  
     $r->{media_type_overridden} = 1;  
   }  
   
   if ($r->{media_type} eq 'text/xml') {  
     unless (defined $r->{charset}) {  
       $r->{charset} = 'us-ascii';  
     } elsif ($r->{charset_overridden} and $r->{charset} eq 'us-ascii') {  
       $r->{charset_overridden} = 0;  
     }  
   }  
   
   if (length $r->{s} > 1000_000) {  
     $r->{error_status_text} = 'Entity-body too large';  
     delete $r->{s};  
     return $r;  
133    }    }
134    
135    return $r;    $result->generate_result_section;
 } # get_input_document  
136    
137  package WDCC::LWPUA;    $out->input ($original_input);
138  BEGIN { push our @ISA, 'LWP::UserAgent'; }  } # check_and_print
   
 sub redirect_ok {  
   my $ua = shift;  
   unless ($ua->SUPER::redirect_ok (@_)) {  
     return 0;  
   }  
   
   my $uris = $_[1]->header ('Location');  
   return 0 unless $uris;  
   my $uri = $ua->{wdcc_dom}->create_uri_reference ($uris);  
   unless ({  
            http => 1,  
           }->{lc $uri->uri_scheme}) {  
     return 0;  
   }  
   unless ($ua->{wdcc_host_permit}->check ($uri->uri_host, $uri->uri_port || 80)) {  
     return 0;  
   }  
   return 1;  
 } # redirect_ok  
139    
140  =head1 AUTHOR  =head1 AUTHOR
141    
# Line 685  Wakaba <w@suika.fam.cx>. Line 143  Wakaba <w@suika.fam.cx>.
143    
144  =head1 LICENSE  =head1 LICENSE
145    
146  Copyright 2007 Wakaba <w@suika.fam.cx>  Copyright 2007-2008 Wakaba <w@suika.fam.cx>
147    
148  This library is free software; you can redistribute it  This library is free software; you can redistribute it
149  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.13  
changed lines
  Added in v.1.64

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24