Cosmetic: Prevent warn: Headers already sent
[MyWeb.git] / Web.pm
1 # $Id$
2 # Common functions for HTML/XHTML output generation
3 # Copyright (C) 2003 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(&Wrequire &Wuse &a_href &a_href_cz &vskip &img &centerimg &rightimg $W &top_dir &top_dir_disk &Wprint &input_hidden_persistents);
31 our @ISA=qw(Exporter Tie::Handle);
32
33 BEGIN
34 {
35         $W->{"__My::Web_init"}=1;
36
37         sub Wrequire ($)
38         {
39         my($file)=@_;
40
41 #               print STDERR "Wrequire $file\n";
42                 $file=~s#/#::#g;
43                 $file=~s/[.]pm$//;
44                 my $class=$file;
45                 $file=~s#::#/#g;
46                 $file.=".pm";
47                 my $who=$W->{"__PACKAGE__"};
48                 $who||="__My::Web" if $W->{"__My::Web_init"};
49                 if ($who) {
50                         my $aref=($W->{"packages_used"}{$who}||=[]);
51                         push @$aref,$class
52                                         if !{ map(($_=>1),@$aref) }->{$class};  # Prevent duplicated entries.
53                         }
54                 CORE::require $file;
55                 1;      # Otherwise 'require' would already file above.
56         }
57
58         sub Wuse ($@)
59         {
60         my($file,@list)=@_;
61
62 #               print STDERR "Wuse $file\n";
63                 Wrequire $file;
64                 local $Exporter::ExportLevel=$Exporter::ExportLevel+1;
65                 $file->import(@list);
66                 1;
67         }
68 }
69
70 BEGIN { Wuse 'WebConfig'; }     # for %WebConfig
71 require CGI;    # for &escapeHTML
72 require Image::Size;    # for &imgsize
73 use File::Basename;     # &basename
74 use Carp qw(cluck confess);
75 use URI::Escape;
76 require HTTP::BrowserDetect;
77 require HTTP::Negotiate;
78 my $have_Geo_IP; BEGIN { $have_Geo_IP=eval { require Geo::IP; 1; }; }
79 # Do not: use ModPerl::Util qw(exit);
80 # to prevent in mod_perl2: "exit" is not exported by the ModPerl::Util module
81 # I do not know why.
82 use POSIX qw(strftime);
83 use Tie::Handle;
84 use Apache2::Const qw(HTTP_MOVED_TEMPORARILY);
85 use URI;
86 use URI::QueryParam;
87
88
89 #our $W;
90                 # $W->{"title"}
91                 # $W->{"head"}
92                 # $W->{"force_charset"}
93                 # $W->{"heading_done"}
94                 # $W->{"footer_passed"}
95                 # %{$W->{"headers"}}
96                 # %{$W->{"headers_lc"}} # maps lc($headers_key)=>$headers_key
97                 # @{$W->{"packages_used"}{$W->{"__PACKAGE__"}}}
98                 # @{$W->{"packages_used"}{"__My::Web"}}
99                 # %{$W->{"args"}}
100
101 sub init ($%)
102 {
103 my($class,%args)=@_;
104
105         print STDERR "$class->init ".Apache2::RequestUtil->request()->unparsed_uri()."\n";
106
107         my $packages_used_save=$W->{"packages_used"};
108         $W={ %WebConfig,%args };        # override %WebConfig settings
109         $W->{"packages_used"}=$packages_used_save;
110
111         # {"__PACKAGE__"} is mandatory for mod_perl-2.0;
112         # $Apache2::Registry::curstash is no longer supported.
113         do { cluck "No $_" if !$W->{$_}; } for "__PACKAGE__";
114
115         $W->{"top_dir"}||=eval '$'.$W->{"__PACKAGE__"}.'::top_dir';
116
117         do { $W->{$_}=0  if !defined $W->{$_}; } for ("detect_ent");
118         do { $W->{$_}=0  if !defined $W->{$_}; } for ("detect_js");
119         do { $W->{$_}=1  if !defined $W->{$_}; } for ("have_css");      # AFAIK it does not hurt anyone.
120         do { $W->{$_}=1  if !defined $W->{$_}; } for ("footer");
121         do { $W->{$_}=1  if !defined $W->{$_}; } for ("footer_delimit");
122         do { $W->{$_}=1  if !defined $W->{$_}; } for ("footer_mailme");
123         do { $W->{$_}=1  if !defined $W->{$_}; } for ("footer_ids");
124         do { $W->{$_}=1  if !defined $W->{$_}; } for ("indexme");
125         do { $W->{$_}="" if !defined $W->{$_}; } for ("head");
126         do { $W->{$_}="" if !defined $W->{$_}; } for ("body_attr");
127         do { $W->{$_}="en-US" if !defined $W->{$_}; } for ("language");
128
129         my $footer_any=0;
130         for (qw(footer_mailme footer_ids)) {
131                 $W->{$_}=0 if !$W->{"footer"};
132                 $footer_any=1 if $W->{$_};
133                 }
134         $W->{"footer"}=0 if !$footer_any;
135         $W->{"footer_delimit"}=0 if !$W->{"footer"};
136
137         $W->{"r"}=Apache2::RequestUtil->request();
138
139         $W->{"QUERY_STRING"}=$W->{"r"}->args() || "";
140         if ($W->{"detect_ent"}) {
141                          if ($W->{"QUERY_STRING"}=~/[&]amp;have_ent/)
142                         { $W->{"have_ent"}=0; }
143                 elsif ($W->{"QUERY_STRING"}=~    /[&]have_ent/)
144                         { $W->{"have_ent"}=1; }
145                 else
146                         { delete $W->{"have_ent"}; }
147                 if (!defined $W->{"have_ent"} && $W->{"r"}->method() eq "GET") {
148                         $W->{"head"}.='<meta http-equiv="Refresh" content="0; URL='
149                                         .CGI::escapeHTML("http://".&{$W->{"web_hostname_sub"}}()."/".($W->{"r"}->uri()=~m#^/*(.*)$#)[0]
150                                                         ."?".($W->{"QUERY_STRING"} || "detect_ent_glue=1").'&have_ent=detect')
151                                         .'" />'."\n";
152                         }
153                 }
154         $W->{"QUERY_STRING"}=~s/([&])amp;/$1/g;
155         $W->{"r"}->args($W->{"QUERY_STRING"});
156         # Workaround: &CGI::Vars behaves weird if strings passed both as POST data and in: $QUERY_STRING
157         do { $W->{"r"}->args(""); delete $ENV{"QUERY_STRING"}; } if $W->{"r"}->method() eq "POST";
158         # Do not: $W->{"r"}->args()
159         # as it parses only QUERY_STRING (not POST data).
160         $W->{"args"}={ CGI->new($W->{"r"})->Vars() };
161         for my $name (keys(%{$W->{"args"}})) {
162                 my @vals=split /\x00/,$W->{"args"}{$name};
163                 next if @vals<=1;
164                 $W->{"args"}{$name}=[@vals];
165                 }
166
167         do { $W->{$_}=$W->{"r"}->headers_in()->{"Accept"}     if !defined $W->{$_}; } for ("accept");
168         do { $W->{$_}=$W->{"r"}->headers_in()->{"User-Agent"} if !defined $W->{$_}; } for ("user_agent");
169
170         $W->{"browser"}=HTTP::BrowserDetect->new($W->{"user_agent"});
171
172         if (!defined $W->{"have_style"}) {
173                 $W->{"have_style"}=(!$W->{"browser"}->netscape() || ($W->{"browser"}->major() && $W->{"browser"}->major()>4) ? 1 : 0);
174                 }
175
176         $W->{"have_js"}=($W->{"args"}{"have_js"} ? 1 : 0);
177         if ($W->{"detect_js"} && !$W->{"have_js"}) {
178                 $W->{"head"}.='<script type="text/javascript" src="'.top_dir('/have_js.js.pl').'"></script>'."\n";
179                 }
180
181         do { args_check(%$_) if $_; } for ($W->{"args_check"});
182
183         $ENV{"HOSTNAME"}||=&{$W->{"web_hostname_sub"}}();
184
185         return bless $W,$class;
186 }
187
188 sub Wprint($)
189 {
190 my($text)=@_;
191
192         $W->{"r"}->puts($text);
193 }
194
195 # local *FH;
196 # tie *FH,ref($W),$W;
197 sub TIEHANDLE($)
198 {
199 my($class,$W)=@_;
200
201         my $self={};
202         $self->{"W"}=$W or confess "Missing W";
203         return bless $self,$class;
204 }
205
206 sub WRITE
207 {
208 my($self,$scalar,$length,$offset)=@_;
209
210         Wprint substr($scalar,0,$length);
211 }
212
213 sub top_dir_disk ()
214 {
215         do { return $_ if $_; } for ($W->{"top_dir"});
216         return $INC[0]; # fallback
217 }
218
219 # $args{"abs"}
220 sub top_dir (;$%)
221 {
222 my($in,%args)=@_;
223
224         if (my $uri=$W->{"r"}->unparsed_uri()) {
225                 if ($W->{"args"}{"Wabs"} || $args{"abs"}) {
226                         # FIXME: $in may not be defined here!
227                         # to prevent: Use of uninitialized value in ...
228                         if ($in=~m#^/#) {
229                                 $in=~s#^/*##;
230                                 }
231                         else {
232                                 $in=$uri."/".$in;
233                                 $in=~tr#/#/#s;
234                                 1 while $in=~s#/(?:[^/]+)/\Q..\E/#/#g
235                                 }
236                         return "http://".&{$W->{"web_hostname_sub"}}()."/".(defined $in ? $in : "");
237                         }
238                 $uri.="Index" if $uri=~m#/$#;
239                 if (defined $in) {
240                         my($inpath,$inquery)=split /[?]/,$in,2;
241                         $inpath=~tr///cs;
242                         $uri=~tr///cs;
243                         for (;;) {
244                                 my($in1 ,$in2 )=($in =~m#^(/[^/]+)(/.*)$#);
245                                 my($uri1,$uri2)=($uri=~m#^(/[^/]+)(/.*)$#);
246                                 last if !defined $in1 || !defined $uri1 || $in1 ne $uri1;
247                                 $in=$in2;
248                                 $uri=$uri2;
249                                 }
250                         }
251                 $uri=~s#^/*##;
252                 $uri=~s#[^/]+#..#g;
253                 $uri=File::Basename::dirname($uri);
254                 my $r=$uri.(defined $in ? $in : "");
255 #               1 while $r=~s#^[.]/##;
256 #               $r="./$r" if $r=~m#^(?:?.*)$#;  # empty pathname?
257                 return $r;
258                 }
259         return top_dir_disk().$in;
260 }
261
262 sub fatal (;$);
263
264 sub args_check (%)
265 {
266 my(%tmpl)=@_;
267
268         while (my($name,$regex)=each(%tmpl)) {
269                 my $name_html="Parameter <span class=\"quote\">".CGI::escapeHTML($name)."</span>";
270                 $W->{"args"}{$name}="" if !defined $W->{"args"}{$name};
271                 $W->{"args"}{$name}=[ $W->{"args"}{$name} ] if !ref $W->{"args"}{$name} && ref $regex;
272                 fatal "$name_html passed as multivar although singlevar expected"
273                                 if ref $W->{"args"}{$name} && !ref $regex;
274                 $regex=$regex->[0] if ref $regex;
275                 for my $val (!ref $W->{"args"}{$name} ? $W->{"args"}{$name} : @{$W->{"args"}{$name}}) {
276                         $val="" if !defined $val;
277                         fatal "$name_html <span class=\"quote\">".CGI::escapeHTML($val)."</span>"
278                                                         ." does not match the required regex <span class=\"quote\">".CGI::escapeHTML($regex)."</span> "
279                                         if $regex ne "" && $val!~/$regex/;
280                         }
281                 }
282 }
283
284 sub vskip (;$)
285 {
286 my($height)=@_;
287
288         return '<p'.(!defined $height ? "" : ' style="height: '.$height.';"').'>&nbsp;</p>'."\n";
289 }
290
291 sub fatal (;$)
292 {
293 my($msg)=@_;
294
295         $msg="UNKNOWN" if !$msg;
296         cluck "FATAL: $msg";
297
298         # Do not send it unconditionally.
299         # The intial duplicated '<?xml...' crashes Gecko parser.
300         $W->{"heading_done"}=0 if $W->{"header_only"};
301         # Do not send it unconditionally.
302         # Prevents warn: Headers already sent
303         if (!$W->{"heading_done"}) {
304                 $W->{"indexme"}=0;      # For the case no heading was sent yet.
305                 $W->{"header_only"}=0;  # assurance for &heading
306                 My::Web->heading();
307                 }
308         Wprint "\n".vskip("3ex")."<hr /><h1 class=\"error\">FATAL ERROR: $msg!</h1>\n"
309                         ."<p>You can report this problem's details to"
310                         ." ".a_href("mailto:".$W->{"admin_mail"},"admin of this website").".</p>\n";
311         footer();
312 }
313
314 sub footer (;$)
315 {
316         exit 1 if $W->{"footer_passed"}++;      # deadlock prevention:
317
318         Wprint vskip if $W->{"footer_delimit"};
319
320         do { &{$_}() if $_; } for ($W->{"footing_delimit"});
321
322         Wprint "<hr />\n" if $W->{"footer"};
323
324         if ($W->{"footer_mailme"}) {
325                 Wprint '<form action="'.top_dir('/SendMsg.pl').'" method="post" onsubmit="'
326                                 ."this.elements['msgscript'].value=this.elements['msghtml'].value;"
327                                 ."this.elements['msghtml'].value='';"
328                                 ."this.submit();"
329                                 .'">'."\n";
330                         Wprint input_hidden_persistents()."\n";
331                         Wprint '<p align="right">'."\n";
332                                 Wprint '<input name="msgscript" type="hidden" />'."\n";
333                                 Wprint '<input name="msghtml" type="text" size="32" alt="Message" />'."\n";
334                                 Wprint '<input name="submit" type="submit" value="Quick Note" />'."\n";
335                         Wprint '</p>'."\n";
336                 Wprint '</form>'."\n";
337                 }
338
339         my @packages_used=(
340                         $W->{"__PACKAGE__"},
341                         __PACKAGE__,
342                         @{$W->{"packages_used"}{"__My::Web"}},
343                         map((!$_ ? () : @$_),$W->{"packages_used"}{$W->{"__PACKAGE__"}}),
344                         );
345         my %packages_used;
346         @packages_used=grep((!$packages_used{$_}++),@packages_used);
347         if ($W->{"footer_ids"}) {
348                 Wprint '<p class="cvs-id">';
349                 Wprint join("<br />\n",map({ my $package=$_;
350                         my $cvs_id=(eval('$'.$package."::CVS_ID")
351 #                                       || $package     # debug
352                                         );
353                         if (!$cvs_id) {
354                                 ();
355                                 }
356                         else {
357                                 $cvs_id='$'.$cvs_id.'$';        # Eaten by 'q' operator.
358                                 my @cvs_id_split=split / +/,$cvs_id;
359                                 if (@cvs_id_split==8) {
360                                         my $file=$package;
361                                         $file=~s#::#/#g;
362                                         my $ext;
363                                         my @tried;
364                                         for (qw(.html.pl .pl .pm),"") {
365                                                 $ext=$_;
366                                                 my $pathname=top_dir_disk()."/$file$ext";
367                                                 push @tried,$pathname;
368                                                 last if -r $pathname;
369                                                 cluck "Class file $file not found; tried: ".join(" ",@tried) if !$ext;
370                                                 }
371                                         $file.=$ext;
372                                         $cvs_id_split[2]=""
373                                                         .a_href((map({ my $s=$_; $s=~s#/viewcvs/#$&~checkout~/#; $s; } $W->{"viewcvs"}))[0]."$file?rev=".$cvs_id_split[2],
374                                                                         $cvs_id_split[2]);
375                                         $cvs_id_split[1]=a_href($W->{"viewcvs"}.$file,
376                                                         ($package!~/^Apache2::/ ? $package : $cvs_id_split[1]));
377                                         $cvs_id_split[5]=&{$W->{"cvs_id_author"}}($cvs_id_split[5]);
378                                         }
379                                 join " ",@cvs_id_split;
380                                 }
381                         } @packages_used));
382                 Wprint "</p>\n";
383                 }
384
385         for my $package (@packages_used) {
386                 my $cvs_id=(eval('$'.$package."::CVS_ID")
387 #                               || $package     # debug
388                                 );
389                 Wprint '<!-- '.$package.' - $'.$cvs_id.'$ -->'."\n" if $cvs_id;
390                 }
391
392         do { &{$_}() if $_; } for ($W->{"footing"});
393
394         Wprint "</body></html>\n";
395         exit(0);
396 }
397
398 sub header (%)
399 {
400 my(%pairs)=@_;
401
402         while (my($key,$val)=each(%pairs)) {
403                 do { cluck "Headers already sent"; next; } if $W->{"heading_done"};
404                 for ($W->{"headers_lc"}{lc $key} || ()) {
405                         delete $W->{"headers"}{$_};
406                         }
407                 $W->{"headers_lc"}{lc $key}=$key;
408                 $W->{"headers"}{$key}=$val;
409                 }
410 }
411
412 sub size_display ($)
413 {
414 my($size)=@_;
415
416            if ($size<4096)
417                 {}
418         elsif ($size<1024*1024)
419                 { $size=sprintf "%.1fK",$size/1024; }
420         else
421                 { $size=sprintf "%.1fM",$size/1024/1024; }
422         $size.="B";
423         return $size;
424 }
425
426 sub url_is_local ($)
427 {
428 my($url)=@_;
429
430         return $url!~m#^[a-z]+://#;
431 }
432
433 sub url_out($%)
434 {
435 my($url,%args)=@_;
436
437         return $url if !url_is_local $url;
438         $url=top_dir($url,%args) if $url=~m#^/# || $args{"abs"};
439
440         my $uri=URI->new($url);
441         # Prefer the $uri values over "args_persistent" values.
442         $uri->query_form_hash({
443                         map({
444                                 my $key=$_;
445                                 my $val=$W->{"args"}{$key};
446                                 (!defined $val ? () : ($key=>$val));
447                                 } keys(%{$W->{"args_persistent"}})),
448                         %{$uri->query_form_hash()},
449                         });
450         $url="".$uri;
451
452         return $url;
453 }
454
455 sub a_href ($;$%)
456 {
457 my($url,$contents,%args)=@_;
458
459         do { $$_=1 if !defined $$_; } for (\$args{"size"});
460         if (!defined $contents) {
461                 $contents=$url;
462                 $contents=File::Basename::basename($contents) if $args{"basename"};
463                 $contents=CGI::escapeHTML($contents);
464                 }
465         $contents=~s#<a\b[^>]*>##gi;
466         $contents=~s#</a>##gi;
467
468         $url=url_out($url,%args);
469
470         my $r='<a href="';
471         my $urlent=CGI::escapeHTML($url);
472            if ($url eq $urlent)
473                 { $r.=$url; }
474         elsif (url_is_local $url)
475                 { $r.=$urlent; }
476         elsif (defined $W->{"have_ent"} && !$W->{"have_ent"})   # non-ent client
477                 { $r.=$url; }
478         elsif ($W->{"have_ent"})        # ent client
479                 { $r.=$urlent; }
480         else    # unknown client, &CGI::escapeHTML should not be needed here
481                 { $r.=CGI::escapeHTML(top_dir('/Redirect.pl?location='.uri_escape($url))); }
482         $r.='"';
483         do { $r.=" $_" if $_; } for ($args{"attr"});
484         $r.='>'.$contents.'</a>';
485         if ($args{"size"} && url_is_local($url) && ($args{"size"}>=2 || $url=~/[.](?:gz|Z|rpm|zip|deb|lha)/)) { # Downloadable?
486                 $url=top_dir_disk().$url if $url=~m#^/#;
487                 if (!-r $url)
488                         { cluck "File not readable: $url"; }
489                 else {
490                         $r.='&nbsp;('.size_display((stat($url))[7]).')';
491                         }
492                 }
493         return $r;
494 }
495
496 sub input_hidden_persistents()
497 {
498         return join("",map({
499                 my $key=$_;
500                 my $val=$W->{"args"}{$key};
501                 (!defined $val ? () : '<input type="hidden"'
502                                 .' name="'.CGI::escapeHTML($key).'"'
503                                 .' value="'.CGI::escapeHTML($val).'"'
504                                 .' />'."\n");
505                 } (keys(%{$W->{"args_persistent"}}))));
506 }
507
508 sub http_moved($$;$)
509 {
510 my($self,$url,$status)=@_;
511
512         $url=url_out($url,"abs"=>1);
513         $status||=HTTP_MOVED_TEMPORARILY;
514         $W->{"r"}->status($status);
515         $W->{"r"}->headers_out()->{"Location"}=$url;
516         $W->{"header_only"}=1;
517         My::Web->heading();
518         exit;
519         die "NOTREACHED";
520 }
521
522 sub remote_ip ()
523 {
524         # Do not: PerlModule                 Apache2::ForwardedFor
525         #         PerlPostReadRequestHandler Apache2::ForwardedFor
526         # As 'Apache2::ForwardedFor' takes the first of $ENV{"HTTP_X_FORWARDED_FOR"}
527         # while the contents is '127.0.0.1, 213.220.195.171' if client has its own proxy.
528         # We must take the last item ourselves.
529         my $r=$W->{"r"}->headers_in()->{"X-Forwarded-For"} || $W->{"r"}->get_remote_host();
530         $r=~s/^.*,\s*//;
531         return $r;
532 }
533
534 sub is_cz ()
535 {
536         return 0 if !$have_Geo_IP;
537         return "CZ" eq Geo::IP->new()->country_code_by_addr(remote_ip());
538 }
539
540 sub a_href_cz ($$;%)
541 {
542 my($url,$contents,%args)=@_;
543
544         return a_href $url,$contents,%args if is_cz();
545         return $contents;
546 }
547
548 sub make ($)
549 {
550 my($cmd)=@_;
551
552         system {'flock'} 'flock','-x',top_dir_disk(),$cmd.' >&2';
553 }
554
555 sub img_size ($$)
556 {
557 my($width,$height)=@_;
558
559         return ($W->{"have_style"} ? "style=\"border:0;width:${width}px;height:${height}px\"" : "border=\"0\"")
560                         ." width=\"$width\" height=\"$height\"";
561 }
562
563 sub negotiate_variant (%)
564 {
565 my(%args)=@_;
566
567         my @fields=("id","qs","content-type","encoding","charset","lang","size");
568         return [ map(($args{$_}),@fields) ];
569 }
570
571 # Input: $self is required!
572 # Input: Put the fallback variant as the first one.
573 # Returns: always only scalar!
574 sub Negotiate_choose($$)
575 {
576 my($self,$variants)=@_;
577
578         my $best=HTTP::Negotiate::choose($variants,
579                         # Do not: $W->{"r"}
580                         # to prevent: Can't locate object method "scan" via package "Apache2::RequestRec" at HTTP/Negotiate.pm line 84.
581                         # Do not: $W->{"r"}->headers_in()
582                         # to prevent: Can't locate object method "scan" via package "APR::Table" at HTTP/Negotiate.pm line 84.
583                         # Do not: HTTP::Headers->new($W->{"r"}->headers_in());
584                         # to prevent empty result or even: Odd number of elements in anonymous hash
585                         HTTP::Headers->new(%{$W->{"r"}->headers_in()}));
586         $best||=$variants->[0]{"id"};   # &HTTP::Negotiate::choose failed?
587         return $best;
588 }
589
590 my @img_variants=(
591                 { "id"=>"png","qs"=>0.9,"content-type"=>"image/png" },
592                 { "id"=>"gif","qs"=>0.7,"content-type"=>"image/gif" },
593                 );
594 my $img_variants_re='[.](?:'.join('|',"jpeg",map(($_->{"id"}),@img_variants)).')$';
595
596 sub img_src ($)
597 {
598 my($file_base)=@_;
599
600         if (!url_is_local($file_base)) {
601                 return $file_base if !wantarray();
602                 return ($file_base,$file_base);
603                 }
604         # Known image extension?
605         if ($file_base=~m#$img_variants_re#o) {
606                 return $file_base if !wantarray();
607                 return ($file_base,$file_base) if $file_base!~m#^/#;
608                 return (top_dir($file_base),top_dir_disk().$file_base);
609                 }
610
611         my $file_base_disk;
612         my $file_base_uri;
613         if ($file_base!~m#^/#) {
614                 $file_base_disk=$file_base_uri=$file_base;
615                 }
616         else {
617                 $file_base_disk=top_dir_disk().$file_base;
618                 $file_base_uri=top_dir($file_base);
619                 }
620
621         my @nego_variants;
622         for my $var (@img_variants) {
623                 my $file=$file_base_disk.".".$var->{"id"};
624                 # TODO: Somehow quickly check dependencies?
625                 make('make -s --no-print-directory'
626                                                 .' -C '."'".File::Basename::dirname($file)."' '".File::Basename::basename($file)."'")
627                                 if !-f $file;
628                 push @nego_variants,negotiate_variant(
629                                 %$var,
630                                 "size"=>(stat $file)[7],
631                                 );
632                 }
633         my $ext=__PACKAGE__->Negotiate_choose(\@nego_variants);
634
635         return $file_base_uri.".".$ext if !wantarray();
636         return ($file_base_uri.".".$ext,$file_base_disk.".".$ext);
637 }
638
639 sub img ($$;%)
640 {
641 my($file_base,$alt,%attr)=@_;
642
643         my($file_uri,$file_disk)=img_src $file_base;
644         my($width,$height)=Image::Size::imgsize($file_disk);
645         $alt=~s/<[^>]*>//g;
646         $alt=CGI::escapeHTML($alt);
647         my $content="<img src=\"$file_uri\" alt=\"$alt\" title=\"$alt\" ".img_size($width,$height)
648                         .(!$attr{"attr"} ? "" : " ".$attr{"attr"})." />";
649         return a_href img_src($attr{"a_href_img"}),$content if $attr{"a_href_img"};
650         return a_href $attr{"a_href"},$content if $attr{"a_href"};
651         return $content;
652 }
653
654 sub centerimg
655 {
656         my $r.="";
657         $r.='<table border="0" width="100%"><tr>'."\n";
658         @_=( [@_] ) if !ref $_[0];
659         for (@_) {
660                 $r.="\t".'<td align="center">'.&{\&img}(@$_).'</td>'."\n";
661                 }
662         $r.='</tr></table>'."\n";
663         return $r;
664 }
665
666 sub rightimg
667 {
668 my($text,@args_img)=@_;
669
670         # Workaround bug of 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)':
671         return <<"HERE";
672 <table border="0" width="100%">
673         <col width="@{[ (!$W->{"browser"}->ie() ? "1*" : "90%" ) ]}" />
674         <col width="@{[ (!$W->{"browser"}->ie() ? "0*" : "10%" ) ]}" />
675         <tr>
676                 <td align="left">
677                         @{[ $text ]}
678                 </td>
679                 <td align="right">
680                         @{[ &{\&img}(@args_img) ]}
681                 </td>
682         </tr>
683 </table>
684 HERE
685 }
686
687 sub readfile ($$)
688 {
689 my($class,$filename)=@_;
690
691         local *F;
692         open F,$filename or die "Cannot open \"$filename\": $!";
693         local $/=undef();
694         my $data=<F>;
695         close F;
696         return $data;
697 }
698
699 sub arr_keys (@)
700 {
701 my(@arr)=@_;
702
703         my @r=();
704         while (@arr) {
705                 push @r,shift @arr;     # key
706                 shift @arr;     # val
707                 }
708         return @r;
709 }
710
711 sub no_cache($)
712 {
713 my($self)=@_;
714
715         header("Expires"=>"Mon, 26 Jul 1997 05:00:00 GMT");     # date in the past
716         header("Last-Modified"=>strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime()));        # always modified
717         header("Cache-Control"=>"no-cache, must-revalidate");   # HTTP/1.1
718         header("Pragma"=>"no-cache");   # HTTP/1.0
719 }
720
721 sub heading ()
722 {
723 my($class)=@_;
724
725         # $ENV{"CLIENT_CHARSET"} ignored (mod_czech support dropped!)
726         my $client_charset=$W->{"force_charset"} || "us-ascii";
727         header("Content-Style-Type"=>"text/css");
728         header("Content-Script-Type"=>"text/javascript");
729         do { header("Content-Language"=>$_) if $_; } for $W->{"language"};
730         $class->no_cache() if $W->{"no_cache"};
731
732         while (my($key,$val)=each(%{$W->{"headers"}})) {
733                 $W->{"r"}->headers_out()->{$key}=$val;
734                 }
735         exit if $W->{"r"}->header_only();
736         return if $W->{"header_only"};
737         # We still can append headers before we put out some text.
738         # FIXME: It is not clean to still append them without overwriting.
739         return if $W->{"heading_done"}++;
740
741         my $lang=($W->{"language"}||"en-US");
742         # Workaround bug
743         #   https://bugzilla.mozilla.org/show_bug.cgi?id=120556
744         # of at least
745         #   Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8b) Gecko/20050217
746         my $mime=$class->Negotiate_choose([
747                         # Put the fallback variant as the first one.
748                         # Rate both variants the same to prefer "text/html" for undecided clients.
749                         # At least
750                         #   Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8b) Gecko/20050217
751                         # prefers "application/xhtml+xml" over "text/html" itself:
752                         #   text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
753                         negotiate_variant(
754                                         "id"=>"text/html",
755                                         "content-type"=>"text/html",
756                                         "qs"=>0.6,
757                                         "charset"=>$client_charset,
758                                         "lang"=>$lang,
759                                         ),
760                         negotiate_variant(
761                                         "id"=>"application/xhtml+xml",
762                                         "content-type"=>"application/xhtml+xml",
763                                         "qs"=>0.6,
764                                         "charset"=>$client_charset,
765                                         "lang"=>$lang,
766                                         ),
767                         # application/xml ?
768                         # text/xml ?
769                         ]);
770         $W->{"r"}->content_type("$mime; charset=$client_charset");
771         if (1) { # || !$msie_major || $msie_major>=4) # TODO:dyn
772                 Wprint '<?xml version="1.0" encoding="'.$client_charset.'"?>'."\n";
773                 }
774         Wprint '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'."\n";
775         Wprint '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="'.$lang.'">'."\n";
776         my $title=$W->{"title_prefix"}.join("",map({ ': '.$_; } ($W->{"title"} || ())));
777         $title=~s#<[^>]*>##g;
778         Wprint "<head>";
779         Wprint "<title>$title</title>\n";
780         if ($W->{"have_css"}) {
781                 # Everything can get overriden later.
782                 Wprint <<"HERE";
783 <link rel="stylesheet" type="text/css" href="@{[ url_out("/My/Web.css") ]}" />
784 HERE
785                 }
786         Wprint '<meta name="robots" content="'.($W->{"indexme"} ? "" : "no" ).'index,follow" />'."\n";
787         Wprint $W->{"head"};
788         for my $type (qw(prev next index contents start up)) {
789                 do { Wprint '<link rel="'.$type.'" href="'.$_.'" />'."\n" if $_; } for ($W->{"rel_$type"});
790                 }
791         Wprint "</head><body";
792 #       Wprint ' bgcolor="black" text="white" link="aqua" vlink="teal"'
793 #                       if $W->{"browser"}->netscape() && (!$W->{"browser"}->major() || $W->{"browser"}->major()<=4);
794         Wprint $W->{"body_attr"};
795         Wprint ">\n";
796
797         do { &{$_}() if $_; } for ($W->{"heading"});
798 }
799
800 BEGIN {
801         delete $W->{"__My::Web_init"};
802         }
803
804 1;