Provide CSS inheritance hack.
[MyWeb.git] / Web.pm
1 # $Id$
2 # Common functions for HTML/XHTML output generation
3 # Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 package My::Web;
20 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
21 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
22 our $CVS_ID=q$Id$;
23 use strict;
24 use warnings;
25
26 use Exporter;
27 sub Wrequire($);
28 sub Wuse($@);
29 our $W;
30 our @EXPORT=qw(
31                 &Wrequire &Wuse
32                 &path_web &path_abs_disk
33                 &uri_escaped
34                 &a_href &a_href_cz
35                 &vskip
36                 &img &centerimg &rightimg
37                 $W
38                 &input_hidden_persistents
39                 &escapeHTML
40                 );
41 our @ISA=qw(Tie::Handle Exporter);
42
43 my %packages_used_hash;
44 my %packages_used_array;
45
46 BEGIN
47 {
48         use Carp qw(cluck confess);
49         $W->{"__My::Web_init"}=1;
50
51         sub Wrequire ($)
52         {
53         my($file)=@_;
54
55 #               print STDERR "Wrequire $file\n";
56                 $file=~s#/#::#g;
57                 $file=~s/[.]pm$//;
58                 my $class=$file;
59                 $file=~s#::#/#g;
60                 $file.=".pm";
61                 my %callers;
62                 for (my $depth=0;defined caller($depth);$depth++) {
63                         $callers{caller($depth)}=1;
64                         }
65                 my $selfpkg=__PACKAGE__;
66                 $callers{$selfpkg}=1;
67                 for my $target ($class,__PACKAGE__) {
68                         for my $caller (keys(%callers)) {
69                                 next if $caller eq $target;
70                                 next if $packages_used_hash{$caller}{$target}++;
71                                 push @{$packages_used_array{$caller}},$target;
72                                 }
73                         }
74                 eval { CORE::require "$file"; } or confess $@;
75                 1;      # Otherwise 'require' would already file above.
76         }
77
78         sub Wuse ($@)
79         {
80         my($file,@list)=@_;
81
82 #               print STDERR "Wuse $file\n";
83                 Wrequire $file;
84                 local $Exporter::ExportLevel=$Exporter::ExportLevel+1;
85                 $file->import(@list);
86                 1;
87         }
88
89         sub import
90         {
91         my($class,@rest)=@_;
92
93                 local $Exporter::ExportLevel=$Exporter::ExportLevel+1;
94                 Wrequire("$class");
95                 return $class->SUPER::import(@rest);
96         }
97 }
98
99 use WebConfig;  # see also below: Wuse 'WebConfig';
100 require CGI;
101 require Image::Size;    # for &imgsize
102 use File::Basename;     # &basename
103 use Carp qw(cluck confess);
104 use URI::Escape;
105 require HTTP::BrowserDetect;
106 require HTTP::Negotiate;
107 my $have_Geo_IP; BEGIN { $have_Geo_IP=eval { require Geo::IP; 1; }; }
108 # Do not: use ModPerl::Util qw(exit);
109 # to prevent in mod_perl2: "exit" is not exported by the ModPerl::Util module
110 # I do not know why.
111 use POSIX qw(strftime);
112 use Tie::Handle;
113 use Apache2::Const qw(HTTP_MOVED_TEMPORARILY OK);
114 use URI;
115 use URI::QueryParam;
116 use Cwd;
117
118
119 #our $W;
120                 # $W->{"title"}
121                 # $W->{"head"}
122                 # $W->{"force_charset"}
123                 # $W->{"heading_done"}
124                 # $W->{"footer_passed"}
125                 # %{$W->{"headers"}}
126                 # %{$W->{"headers_lc"}} # maps lc($headers_key)=>$headers_key
127                 # %{$W->{"args"}}
128
129 sub cleanup($)
130 {
131 my($apache_request)=@_;
132
133         # Sanity protection.
134         $W=undef();
135         return OK;
136 }
137
138 sub request_check(;$)
139 {
140 my($self)=@_;
141
142         # Use &eval to prevent: Global $r object is not available. Set:\n\tPerlOptions +GlobalRequest\nin ...
143         # CGI requires valid "r": check it beforehand here.
144         confess "Calling sensitive dynamic code from a static code" if !eval { Apache2::RequestUtil->request(); };
145         # Do not: confess "Calling sensitive dynamic code without My::Web::init" if !$W->{"__PACKAGE__"};
146         # as it is valid at least while preparing arguments to call: &project::Lib::init
147 }
148
149 sub init ($%)
150 {
151 my($class,%args)=@_;
152
153         print STDERR "$class->init ".Apache2::RequestUtil->request()->unparsed_uri()."\n";
154
155         # We need to track package dependencies, so we need to call it from &init.
156         # We cannot do it in BEGIN { } block
157         # as it would not be tracked for each of the toplevel users later.
158         Wuse 'WebConfig';
159         Wrequire 'My::Hash::Sub';
160
161         $W={};
162         tie %$W,"My::Hash::Sub";
163         %$W=(%WebConfig,%args); # override %WebConfig settings
164         $W->{"__PACKAGE__"}||=caller();
165
166         # {"__PACKAGE__"} is mandatory for mod_perl-2.0;
167         # $Apache2::Registry::curstash is no longer supported.
168         do { cluck "No $_" if !$W->{$_}; } for "__PACKAGE__";
169
170         # See: &escapeHTML
171         do { cluck "charset==$_, expecting ISO-8859-1" if $_ ne "ISO-8859-1"; } for CGI::charset();
172         CGI::charset("utf-8");
173
174         do { $W->{$_}=0  if !defined $W->{$_}; } for "detect_ent";
175         do { $W->{$_}=0  if !defined $W->{$_}; } for "detect_js";
176         do { $W->{$_}=1  if !defined $W->{$_}; } for "have_css";        # AFAIK it does not hurt anyone.
177         do { $W->{$_}=0  if !defined $W->{$_}; } for "css_inherit";
178         do { $W->{$_}=1  if !defined $W->{$_}; } for "footer";
179         do { $W->{$_}=1  if !defined $W->{$_}; } for "footer_delimit";
180         do { $W->{$_}=1  if !defined $W->{$_}; } for "footer_ids";
181         do { $W->{$_}=1  if !defined $W->{$_}; } for "indexme";
182         do { $W->{$_}="" if !defined $W->{$_}; } for "head";
183         do { $W->{$_}="" if !defined $W->{$_}; } for "body_attr";
184         do { $W->{$_}="en-US" if !defined $W->{$_}; } for "language";
185
186         my $footer_any=0;
187         for (qw(footer_ids)) {
188                 $W->{$_}=0 if !$W->{"footer"};
189                 $footer_any=1 if $W->{$_};
190                 }
191         $W->{"footer"}=0 if !$footer_any;
192         $W->{"footer_delimit"}=0 if !$W->{"footer"};
193
194         $W->{"r"}=Apache2::RequestUtil->request();
195
196         $W->{"r"}->push_handlers("PerlCleanupHandler"=>\&cleanup);
197
198         $W->{"web_hostname"}||=$W->{"r"}->hostname();
199
200         tie *STDOUT,$W->{"r"};
201         select *STDOUT;
202         $|=1;
203
204         $W->{"QUERY_STRING"}=$W->{"r"}->args() || "";
205         if ($W->{"detect_ent"}) {
206                          if ($W->{"QUERY_STRING"}=~/[&]amp;have_ent/)
207                         { $W->{"have_ent"}=0; }
208                 elsif ($W->{"QUERY_STRING"}=~    /[&]have_ent/)
209                         { $W->{"have_ent"}=1; }
210                 else
211                         { delete $W->{"have_ent"}; }
212                 if (!defined $W->{"have_ent"} && $W->{"r"}->method() eq "GET") {
213                         $W->{"head"}.='<meta http-equiv="Refresh" content="0; URL='
214                                         .escapeHTML("http://".$W->{"web_hostname"}."/".($W->{"r"}->uri()=~m#^/*(.*)$#)[0]
215                                                         ."?".($W->{"QUERY_STRING"} || "detect_ent_glue=1").'&have_ent=detect')
216                                         .'" />'."\n";
217                         }
218                 }
219         $W->{"QUERY_STRING"}=~s/([&])amp;/$1/g;
220         $W->{"r"}->args($W->{"QUERY_STRING"});
221         # Workaround: &CGI::Vars behaves weird if strings passed both as POST data and in: $QUERY_STRING
222         do { $W->{"r"}->args(""); delete $ENV{"QUERY_STRING"}; } if $W->{"r"}->method() eq "POST";
223         # Do not: $W->{"r"}->args()
224         # as it parses only QUERY_STRING (not POST data).
225         $W->{"args"}={ CGI->new($W->{"r"})->Vars() };
226         for my $name (keys(%{$W->{"args"}})) {
227                 my @vals=split /\x00/,$W->{"args"}{$name};
228                 next if @vals<=1;
229                 $W->{"args"}{$name}=[@vals];
230                 }
231
232         do { $W->{$_}=$W->{"r"}->headers_in()->{"Accept"}         if !defined $W->{$_}; } for ("accept");
233         do { $W->{$_}=$W->{"r"}->headers_in()->{"User-Agent"}||"" if !defined $W->{$_}; } for ("user_agent");
234
235         $W->{"browser"}=HTTP::BrowserDetect->new($W->{"user_agent"});
236
237         if (!defined $W->{"have_style"}) {
238                 $W->{"have_style"}=(!$W->{"browser"}->netscape() || ($W->{"browser"}->major() && $W->{"browser"}->major()>4) ? 1 : 0);
239                 }
240
241         $W->{"have_js"}=($W->{"args"}{"have_js"} ? 1 : 0);
242         if ($W->{"detect_js"} && !$W->{"have_js"}) {
243                 $W->{"head"}.='<script type="text/javascript" src="'.uri_escaped(path_web('/have_js.pm')).'"></script>'."\n";
244                 }
245
246         do { _args_check(%$_) if $_; } for ($W->{"args_check"});
247
248         return bless $W,$class;
249 }
250
251 # Although we have &tie-d *STDOUT we try to not to be dependent on it in My::Web itself.
252 # Do not: Wprint $W->{"heading"},"undef"=>1;
253 # as we would need to undef() it to turn it off and it would get defaulted in such case.
254 # Do not: exists $W->{"heading"}
255 # as we use a lot of 'for $W->{"heading"}' which instantiates it with the value: undef()
256 sub Wprint($%)
257 {
258 my($text,%args)=@_;
259
260         cluck "undef Wprint" if !defined $text && !$args{"undef"};
261         delete $args{"undef"};
262         cluck join(" ","Invalid arguments:",keys(%args)) if keys(%args);
263         $W->{"r"}->puts($text) if defined $text;
264 }
265
266 sub escapeHTML($)
267 {
268 my($text)=@_;
269
270         # Prevent &CGI::escapeHTML breaking utf-8 strings like: \xC4\x9B eq \x{11B}
271         # Prevent case if we run under mod_perl but still just initializing:
272         request_check() if $ENV{"MOD_PERL"};
273         # Generally we are initialized from &init but we may be used without it without mod_perl
274         # and in such case check the change on all non-first invocations.
275         our $init;
276         if (!$ENV{"MOD_PERL"} && $init++) {
277                 do { cluck "charset==$_" if $_ ne "utf-8"; } for CGI::charset();
278                 }
279         CGI::charset("utf-8");
280
281         return CGI::escapeHTML($text);
282 }
283
284 # local *FH;
285 # tie *FH,ref($W),$W;
286 sub TIEHANDLE($)
287 {
288 my($class,$W)=@_;
289
290         my $self={};
291         $self->{"W"}=$W or confess "Missing W";
292         return bless $self,$class;
293 }
294
295 sub WRITE
296 {
297 my($self,$scalar,$length,$offset)=@_;
298
299         Wprint substr($scalar,0,$length);
300 }
301
302 # /home/user/www/webdir
303 sub dir_top_abs_disk()
304 {
305         our $dir_top_abs_disk;
306         if (!$dir_top_abs_disk) {
307                 my $selfpkg_relpath=__PACKAGE__;
308                 $selfpkg_relpath=~s{::}{/}g;
309                 $selfpkg_relpath.=".pm";
310                 my $selfpkg_abspath=$INC{$selfpkg_relpath} or do {
311                         cluck "Unable to find self package $selfpkg_relpath";
312                         return;
313                         };
314                 $selfpkg_abspath=~s{/*\Q$selfpkg_relpath\E$}{} or do {
315                         cluck "Unable to strip myself \"$selfpkg_relpath\" from the abspath: $selfpkg_abspath";
316                         return;
317                         };
318                 cluck "INC{myself} is relative?: $selfpkg_abspath" if $selfpkg_abspath!~m{^/};
319                 $dir_top_abs_disk=$selfpkg_abspath;
320                 }
321         return $dir_top_abs_disk;
322 }
323
324 sub unparsed_uri()
325 {
326         request_check();
327         if (!$W->{"unparsed_uri"}) {
328                 # Do not: $W->{"r"}
329                 # as we may be called before &init from: &My::Project::init
330                 my $r=Apache2::RequestUtil->request();
331                 cluck "Calling ".'&unparsed_uri'." from a static code, going to fail" if !$r;
332                 my $uri_string=$r->unparsed_uri() or cluck "Valid 'r' missing unparsed_uri()?";
333                 my $uri=URI->new_abs($uri_string,"http://".$W->{"web_hostname"}."/");
334                 $W->{"unparsed_uri"}=$uri;
335                 }
336         return $W->{"unparsed_uri"};
337 }
338
339 sub in_to_uri_abs($)
340 {
341 my($in)=@_;
342
343         # Otherwise we may have been already processed and thus legally relativized.
344         # FIXME data: Currently disabled, all the data are too violating such rule.
345         if (0 && !ref $in) {
346                 my $uri_check=URI->new($in);
347                 $uri_check->scheme() || $in=~m{^\Q./\E} || $in=~m{^/}
348                                 or cluck "Use './' or '/' prefix for all the local references: $in";
349                 }
350         my $uri=URI->new_abs($in,unparsed_uri());
351         $uri=$uri->canonical();
352         return $uri;
353 }
354
355 # $args{"uri_as_in"}=1 to permit passing URI objects as: $in
356 # $args{"abs"}=1;
357 sub path_web($%)
358 {
359 my($in,%args)=@_;
360
361         cluck if !$args{"uri_as_in"} && ref $in;
362         my $uri=in_to_uri_abs($in);
363         if (uri_is_local($uri)) {
364                 # Prefer the $uri values over "args_persistent" values.
365                 $uri->query_form_hash({
366                                 map({
367                                         my $key=$_;
368                                         my $val=$W->{"args"}{$key};
369                                         (!defined $val ? () : ($key=>$val));
370                                         } keys(%{$W->{"args_persistent"}})),
371                                 %{$uri->query_form_hash()},
372                                 });
373                 }
374         return $uri->abs(unparsed_uri()) if $W->{"args"}{"Wabs"} || $args{"abs"};
375         return $uri->rel(unparsed_uri());
376 }
377
378 # $args{"uri_as_in"}=1 to permit passing URI objects as: $in
379 sub path_abs_disk($%)
380 {
381 my($in,%args)=@_;
382
383         cluck if !$args{"uri_as_in"} && ref $in;
384         my $uri=in_to_uri_abs($in);
385         cluck if !uri_is_local($uri);
386         my $path=$uri->path();
387         cluck "URI compatibility: ->path() not w/leading slash of URI \"$uri\"; path: $path" if $path!~m{^/};
388         return dir_top_abs_disk().$path;
389 }
390
391 sub fatal (;$);
392
393 sub _args_check (%)
394 {
395 my(%tmpl)=@_;
396
397         while (my($name,$regex)=each(%tmpl)) {
398                 my $name_html="Parameter <span class=\"quote\">".escapeHTML($name)."</span>";
399                 $W->{"args"}{$name}="" if !defined $W->{"args"}{$name};
400                 $W->{"args"}{$name}=[ $W->{"args"}{$name} ] if !ref $W->{"args"}{$name} && ref $regex;
401                 fatal "$name_html passed as multivar although singlevar expected"
402                                 if ref $W->{"args"}{$name} && !ref $regex;
403                 $regex=$regex->[0] if ref $regex;
404                 for my $val (!ref $W->{"args"}{$name} ? $W->{"args"}{$name} : @{$W->{"args"}{$name}}) {
405                         $val="" if !defined $val;
406                         fatal "$name_html <span class=\"quote\">".escapeHTML($val)."</span>"
407                                                         ." does not match the required regex <span class=\"quote\">".escapeHTML($regex)."</span> "
408                                         if $regex ne "" && $val!~/$regex/;
409                         }
410                 }
411 }
412
413 sub vskip (;$)
414 {
415 my($height)=@_;
416
417         return '<p'.(!defined $height ? "" : ' style="height: '.$height.';"').'>&nbsp;</p>'."\n";
418 }
419
420 sub fatal (;$)
421 {
422 my($msg)=@_;
423
424         $msg="UNKNOWN" if !$msg;
425         cluck "FATAL: $msg";
426
427         # Do not send it unconditionally.
428         # The intial duplicated '<?xml...' crashes Gecko parser.
429         $W->{"heading_done"}=0 if $W->{"header_only"};
430         # Do not send it unconditionally.
431         # Prevents warn: Headers already sent
432         if (!$W->{"heading_done"}) {
433                 $W->{"indexme"}=0;      # For the case no heading was sent yet.
434                 $W->{"header_only"}=0;  # assurance for &heading
435                 My::Web->heading();
436                 }
437         Wprint "\n".vskip("3ex")."<hr /><h1 class=\"error\">FATAL ERROR: $msg!</h1>\n"
438                         ."<p>You can report this problem's details to"
439                         ." ".a_href("mailto:".$W->{"admin_mail"},"admin of this website").".</p>\n";
440         footer();
441 }
442
443 sub footer (;$)
444 {
445         exit 1 if $W->{"footer_passed"}++;      # deadlock prevention:
446
447         Wprint vskip if $W->{"footer_delimit"};
448
449         do { Wprint $_ if $_; } for $W->{"footing_delimit"};
450
451         Wprint "<hr />\n" if $W->{"footer"};
452
453         my $packages_used=$packages_used_array{$W->{"__PACKAGE__"}};
454
455         if ($W->{"footer_ids"}) {
456                 Wprint '<p class="cvs-id">';
457                 Wprint join("<br />\n",map({ my $package=$_;
458                         my $cvs_id=(eval('$'.$package."::CVS_ID")
459 #                                       || $package     # debug
460                                         );
461                         if (!$cvs_id) {
462                                 ();
463                                 }
464                         else {
465                                 $cvs_id='$'.$cvs_id.'$';        # Eaten by 'q' operator.
466                                 my @cvs_id_split=split / +/,$cvs_id;
467                                 if (@cvs_id_split==8) {
468                                         my $file=$package;
469                                         $file=~s#::#/#g;
470                                         my $ext;
471                                         my @tried;
472                                         for (qw(.pm)) {
473                                                 $ext=$_;
474                                                 my $path_abs_disk=path_abs_disk("/$file$ext");
475                                                 push @tried,$path_abs_disk;
476                                                 last if -r $path_abs_disk;
477                                                 cluck "Class file $file not found; tried: ".join(" ",@tried) if !$ext;
478                                                 }
479                                         $file.=$ext;
480                                         $cvs_id_split[2]=""
481                                                         .a_href((map({ my $s=$_; $s=~s#/viewcvs/#$&~checkout~/#; $s; } $W->{"viewcvs"}))[0]."$file?rev=".$cvs_id_split[2],
482                                                                         $cvs_id_split[2]);
483                                         $cvs_id_split[1]=a_href($W->{"viewcvs"}.$file,
484                                                         ($package!~/^Apache2::/ ? $package : $cvs_id_split[1]));
485                                         $cvs_id_split[5]=&{$W->{"cvs_id_author_sub"}}($cvs_id_split[5]);
486                                         }
487                                 join " ",@cvs_id_split;
488                                 }
489                         } @$packages_used));
490                 Wprint "</p>\n";
491                 }
492
493         for my $package (@$packages_used) {
494                 my $cvs_id=(eval('$'.$package."::CVS_ID")
495 #                               || $package     # debug
496                                 );
497                 Wprint '<!-- '.$package.' - $'.$cvs_id.'$ -->'."\n" if $cvs_id;
498                 }
499
500         do { Wprint $_ if $_; } for $W->{"footing"};
501
502         Wprint "</body></html>\n";
503         exit 0;
504 }
505
506 sub header (%)
507 {
508 my(%pairs)=@_;
509
510         while (my($key,$val)=each(%pairs)) {
511                 do { cluck "Headers already sent"; next; } if $W->{"heading_done"};
512                 for ($W->{"headers_lc"}{lc $key} || ()) {
513                         delete $W->{"headers"}{$_};
514                         }
515                 $W->{"headers_lc"}{lc $key}=$key;
516                 $W->{"headers"}{$key}=$val;
517                 }
518 }
519
520 sub size_display ($)
521 {
522 my($size)=@_;
523
524            if ($size<4096)
525                 {}
526         elsif ($size<1024*1024)
527                 { $size=sprintf "%.1fK",$size/1024; }
528         else
529                 { $size=sprintf "%.1fM",$size/1024/1024; }
530         $size.="B";
531         return $size;
532 }
533
534 sub uri_is_local($)
535 {
536 my($in)=@_;
537
538         my $uri_rel=in_to_uri_abs($in)->rel(unparsed_uri());
539         # Do not: defined $uri_rel->("userinfo"|"host"|"port")();
540         # as they fail to be called for schemes not supporting them.
541         return 0 if $uri_rel->scheme();
542         return 0 if $uri_rel->authority();
543         return 1;
544 }
545
546 # &path_web still may be required for &uri_escaped !
547 sub uri_escaped($)
548 {
549 my($uri)=@_;
550
551         cluck if !ref $uri;
552         my $urient=escapeHTML($uri);
553         return $uri    if $uri eq $urient;
554         request_check();
555         return $urient if uri_is_local $uri;
556         return $uri    if defined $W->{"have_ent"} && !$W->{"have_ent"};        # non-ent client
557         return $urient if $W->{"have_ent"};     # ent client
558         # Unknown client, &escapeHTML should not be needed here:
559         return escapeHTML(path_web('/Redirect.pm?location='.uri_escape($uri->abs(unparsed_uri()))));
560 }
561
562 our $a_href_inhibited;
563 sub a_href($;$%)
564 {
565 my($in,$contents,%args)=@_;
566
567         request_check();
568         do { $$_=1 if !defined $$_; } for (\$args{"size"});
569         if (!defined $contents) {
570                 $contents=$in;
571                 $contents=File::Basename::basename($contents) if $args{"basename"};
572                 $contents=escapeHTML($contents);
573                 }
574         $contents=~s#<a\b[^>]*>##gi;
575         $contents=~s#</a>##gi;
576         return $contents if $a_href_inhibited;
577
578         my $path_web=path_web $in,%args;
579         my $r="";
580         $r.='<a href="';
581         $r.=uri_escaped $path_web;
582         $r.='"';
583         do { $r.=" $_" if $_; } for ($args{"attr"});
584         $r.='>'.$contents.'</a>';
585         if ($args{"size"} && uri_is_local($in) && ($args{"size"}>=2 || $in=~/[.](?:gz|Z|rpm|zip|deb|lha)/)) {   # Downloadable?
586                 my $path_abs_disk=path_abs_disk $in,%args;
587                 cluck "File not readable: $path_abs_disk" if !-r $path_abs_disk;
588                 $r.='&nbsp;('.size_display((stat($path_abs_disk))[7]).')';
589                 }
590         return $r;
591 }
592
593 sub a_href_inhibit($$;@)
594 {
595 my($self,$sub,@sub_args)=@_;
596
597         local $a_href_inhibited=1;
598         return &{$sub}(@sub_args);
599 }
600
601 sub input_hidden_persistents()
602 {
603         request_check();
604         return join("",map({
605                 my $key=$_;
606                 my $val=$W->{"args"}{$key};
607                 (!defined $val ? () : '<input type="hidden"'
608                                 .' name="'.escapeHTML($key).'"'
609                                 .' value="'.escapeHTML($val).'"'
610                                 .' />'."\n");
611                 } (keys(%{$W->{"args_persistent"}}))));
612 }
613
614 sub http_moved($$;$)
615 {
616 my($self,$url,$status)=@_;
617
618         $url=path_web($url,"abs"=>1);
619         $status||=HTTP_MOVED_TEMPORARILY;
620         $W->{"r"}->status($status);
621         $W->{"r"}->headers_out()->{"Location"}=$url;
622         $W->{"header_only"}=1;
623         My::Web->heading();
624         exit;
625         die "NOTREACHED";
626 }
627
628 sub remote_ip ()
629 {
630         # Do not: PerlModule                 Apache2::ForwardedFor
631         #         PerlPostReadRequestHandler Apache2::ForwardedFor
632         # As 'Apache2::ForwardedFor' takes the first of $ENV{"HTTP_X_FORWARDED_FOR"}
633         # while the contents is '127.0.0.1, 213.220.195.171' if client has its own proxy.
634         # We must take the last item ourselves.
635         my $r=$W->{"r"}->headers_in()->{"X-Forwarded-For"} || $W->{"r"}->get_remote_host();
636         $r=~s/^.*,\s*//;
637         return $r;
638 }
639
640 sub is_cz ()
641 {
642         return 0 if !$have_Geo_IP;
643         return "CZ" eq Geo::IP->new()->country_code_by_addr(remote_ip());
644 }
645
646 sub a_href_cz ($$;%)
647 {
648 my($url,$contents,%args)=@_;
649
650         return a_href $url,$contents,%args if is_cz();
651         return $contents;
652 }
653
654 sub make ($)
655 {
656 my($cmd)=@_;
657
658         # FIXME: &alarm, --timeout is now infinite.
659         # FIXME: Try to remove bash(1).
660         # FIXME: Use: @PATH_FLOCK@
661         my @argv=('flock',dir_top_abs_disk(),'bash','-c',$cmd.' >&2');
662         print STDERR join(" ","SPAWN:",@argv)."\n";
663         system @argv;
664 }
665
666 sub make_file($$)
667 {
668 my($self,$file)=@_;
669
670         cluck "Pathname not absolute: $file" if $file!~m{^/};
671         return if -f $file;
672         # TODO: Somehow quickly check dependencies?
673         return make('make -s --no-print-directory'
674                                         .' -C '."'".File::Basename::dirname($file)."' '".File::Basename::basename($file)."'");
675 }
676
677 sub img_size ($$)
678 {
679 my($width,$height)=@_;
680
681         cluck if !defined $width || !defined $height;
682         return ($W->{"have_style"} ? "style=\"border:0;width:${width}px;height:${height}px\"" : "border=\"0\"")
683                         ." width=\"$width\" height=\"$height\"";
684 }
685
686 sub negotiate_variant (%)
687 {
688 my(%args)=@_;
689
690         my @fields=("id","qs","content-type","encoding","charset","lang","size");
691         return [ map(($args{$_}),@fields) ];
692 }
693
694 # Input: $self is required!
695 # Input: Put the fallback variant as the first one.
696 # Returns: always only scalar!
697 sub Negotiate_choose($$)
698 {
699 my($self,$variants)=@_;
700
701         my $best=HTTP::Negotiate::choose($variants,
702                         # Do not: $W->{"r"}
703                         # to prevent: Can't locate object method "scan" via package "Apache2::RequestRec" at HTTP/Negotiate.pm line 84.
704                         # Do not: $W->{"r"}->headers_in()
705                         # to prevent: Can't locate object method "scan" via package "APR::Table" at HTTP/Negotiate.pm line 84.
706                         # Do not: HTTP::Headers->new($W->{"r"}->headers_in());
707                         # to prevent empty result or even: Odd number of elements in anonymous hash
708                         HTTP::Headers->new(%{$W->{"r"}->headers_in()}));
709         $best||=$variants->[0][0];      # $variants->[0]{"id"}; &HTTP::Negotiate::choose failed?
710         return $best;
711 }
712
713 my @img_variants=(
714                 { "id"=>"png","qs"=>0.9,"content-type"=>"image/png" },
715                 { "id"=>"gif","qs"=>0.7,"content-type"=>"image/gif" },
716                 );
717 my $img_variants_re='[.](?:'.join('|',"jpeg",map(($_->{"id"}),@img_variants)).')$';
718
719 # Returns: ($path_web,$path_abs_disk)
720 # URI path segments support ignored here. Where it is used? (';' path segment options)
721 sub _img_src($%)
722 {
723 my($in,%args)=@_;
724
725         cluck if !uri_is_local $in;
726         my $uri=in_to_uri_abs $in;
727         my $path_abs_disk=path_abs_disk $uri,%args,"uri_as_in"=>1;
728
729         # Known image extension?
730         return path_web($uri,%args,"uri_as_in"=>1),$path_abs_disk if $uri->path()=~m#$img_variants_re#o;
731
732         my @nego_variants;
733         for my $var (@img_variants) {
734                 my $path_abs_disk_variant=$path_abs_disk.".".$var->{"id"};
735                 __PACKAGE__->make_file($path_abs_disk_variant);
736                 push @nego_variants,negotiate_variant(
737                                 %$var,
738                                 "size"=>(stat $path_abs_disk_variant)[7],
739                                 );
740                 }
741         my $ext=__PACKAGE__->Negotiate_choose(\@nego_variants);
742
743         $uri->path($uri->path().".$ext");
744         return path_web($uri,%args,"uri_as_in"=>1),path_abs_disk($uri,%args,"uri_as_in"=>1);
745 }
746
747 # $args{"attr"}
748 sub img ($$%)
749 {
750 my($in,$alt,%args)=@_;
751
752         request_check();
753         my($path_web,$path_abs_disk)=_img_src($in,%args);
754         my($width,$height)=Image::Size::imgsize($path_abs_disk);
755         $alt=~s/<[^>]*>//g;
756         $alt=escapeHTML($alt);
757         my $content="<img src=\"".uri_escaped($path_web)."\" alt=\"$alt\" title=\"$alt\" ".img_size($width,$height)
758                         .(!$args{"attr"} ? "" : " ".$args{"attr"})." />";
759         do { return a_href((_img_src($_))[0],$content,"uri_as_in"=>1) if $_; } for $args{"a_href_img"};
760         do { return a_href $_,$content if $_; } for $args{"a_href"};
761         return $content;
762 }
763
764 sub centerimg
765 {
766         my $r="";
767         $r.='<table border="0" width="100%"><tr>'."\n";
768         @_=( [@_] ) if !ref $_[0];
769         for (@_) {
770                 $r.="\t".'<td align="center">'.&{\&img}(@$_).'</td>'."\n";
771                 }
772         $r.='</tr></table>'."\n";
773         return $r;
774 }
775
776 sub rightimg
777 {
778 my($text,@args_img)=@_;
779
780         # FIXME: Workaround bug of 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)':
781         #        <col width="@{[ (!$W->{"browser"}->ie() ? "1*" : "90%" ) ]}" />
782         #        <col width="@{[ (!$W->{"browser"}->ie() ? "0*" : "10%" ) ]}" />
783         # causes whole invisible projects in: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.10) Gecko/20050719 Galeon/1.3.21
784         return <<"HERE";
785 <table border="0" width="100%">
786         <tr>
787                 <td align="left">
788                         @{[ $text ]}
789                 </td>
790                 <td align="right">
791                         @{[ &{\&img}(@args_img) ]}
792                 </td>
793         </tr>
794 </table>
795 HERE
796 }
797
798 sub readfile($$)
799 {
800 my($class,$filename)=@_;
801
802         local *F;
803         open F,$filename or cluck "Cannot open \"$filename\": $!";
804         my $F=do { local $/=undef(); <F>; };
805         close F or cluck "Cannot close \"$filename\": $!";
806         return $F;
807 }
808
809 sub no_cache($)
810 {
811 my($self)=@_;
812
813         header("Expires"=>"Mon, 26 Jul 1997 05:00:00 GMT");     # date in the past
814         header("Last-Modified"=>strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime()));        # always modified
815         header("Cache-Control"=>"no-cache, must-revalidate");   # HTTP/1.1
816         header("Pragma"=>"no-cache");   # HTTP/1.0
817 }
818
819 sub heading()
820 {
821 my($class)=@_;
822
823         # $ENV{"CLIENT_CHARSET"} ignored (mod_czech support dropped!)
824         my $client_charset=$W->{"force_charset"} || "us-ascii";
825         header("Content-Style-Type"=>"text/css");
826         header("Content-Script-Type"=>"text/javascript");
827         do { header("Content-Language"=>$_) if $_; } for $W->{"language"};
828         $class->no_cache() if $W->{"no_cache"};
829
830         while (my($key,$val)=each(%{$W->{"headers"}})) {
831                 $W->{"r"}->headers_out()->{$key}=$val;
832                 }
833         exit if $W->{"r"}->header_only();
834         return if $W->{"header_only"};
835         # We still can append headers before we put out some text.
836         # FIXME: It is not clean to still append them without overwriting.
837         return if $W->{"heading_done"}++;
838
839         # Workaround bug
840         #   https://bugzilla.mozilla.org/show_bug.cgi?id=120556
841         # of at least
842         #   Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8b) Gecko/20050217
843         my $mime;
844         # http://validator.w3.org/ does not send ANY "Accept" headers!
845         $mime||="application/xhtml+xml" if !$W->{"accept"} && $W->{"user_agent"}=~m{^W3C_Validator/}i;
846         $mime||=$class->Negotiate_choose([
847                         # Put the fallback variant as the first one.
848                         # Rate both variants the same to prefer "text/html" for undecided clients.
849                         # At least
850                         #   Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8b) Gecko/20050217
851                         # prefers "application/xhtml+xml" over "text/html" itself:
852                         #   text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
853                         negotiate_variant(
854                                         "id"=>"text/html",
855                                         "content-type"=>"text/html",
856                                         "qs"=>0.6,
857                                         "charset"=>$client_charset,
858                                         "lang"=>$W->{"language"},
859                                         ),
860                         negotiate_variant(
861                                         "id"=>"application/xhtml+xml",
862                                         "content-type"=>"application/xhtml+xml",
863                                         "qs"=>0.6,
864                                         "charset"=>$client_charset,
865                                         "lang"=>$W->{"language"},
866                                         ),
867                         # application/xml ?
868                         # text/xml ?
869                         ]);
870         $W->{"r"}->content_type("$mime; charset=$client_charset");
871         Wprint '<?xml version="1.0" encoding="'.$client_charset.'"?>'."\n" if $mime=~m{^application/\w+[+]xml$};
872         return if $W->{"xml_header_only"};
873         Wprint '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'."\n";
874         Wprint '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="'.$W->{"language"}.'">'."\n";
875         my $title=$W->{"title_prefix"}.join("",map({ ': '.$_; } ($W->{"title"} || ())));
876         # Do not: cluck if $title=~/[<>]/;
877         # as it is not solved just by: &a_href_inhibit
878         # as sometimes titles use also: <i>...</i>
879         $title=~s#<[^>]*>##g;
880         Wprint "<head>";
881         Wprint "<title>$title</title>\n";
882         if ($W->{"have_css"}) {
883                 # Everything can get overriden later.
884                 for my $css ("/My/Web.css",map((!$_ ? () : ("ARRAY" ne ref($_) ? $_ : @$_)),$W->{"css_push"})) {
885                         Wprint <<"HERE";
886 <link rel="stylesheet" type="text/css" href="@{[ uri_escaped(path_web $css) ]}" />
887 HERE
888                         }
889                 if ($W->{"css_inherit"}) {
890                         Wprint <<"HERE";
891 <script type="text/javascript" src="@{[ uri_escaped(path_web('/My/css_inherit.js')) ]}" />
892 HERE
893                         }
894                 }
895         Wprint '<meta name="robots" content="'.($W->{"indexme"} ? "" : "no" ).'index,follow" />'."\n";
896         Wprint $W->{"head"};
897         for my $type (qw(prev next index contents start up)) {
898                 do { Wprint '<link rel="'.$type.'" href="'.uri_escaped(path_web $_).'" />'."\n" if $_; }
899                                 for ($W->{"rel_$type"});
900                 }
901         Wprint "</head><body";
902 #       Wprint ' bgcolor="black" text="white" link="aqua" vlink="teal"'
903 #                       if $W->{"browser"}->netscape() && (!$W->{"browser"}->major() || $W->{"browser"}->major()<=4);
904         Wprint $W->{"body_attr"};
905         Wprint ">\n";
906
907         do { Wprint $_ if $_; } for $W->{"heading"};
908 }
909
910 BEGIN {
911         delete $W->{"__My::Web_init"};
912         }
913
914 1;