X-Git-Url: http://git.jankratochvil.net/?p=MyWeb.git;a=blobdiff_plain;f=Web.pm;h=6a2189e7f68cbc84c47e466086d6237532b6ba50;hp=c5220821f4b11bf0bb0b1d80204834cb1b3e39bb;hb=4296af3ea0c0c9e1592b3adac1b8460b42b5833a;hpb=debfd3cb3c0f2954e8a330b69fa35b9c35d9d477 diff --git a/Web.pm b/Web.pm index c522082..6a2189e 100644 --- a/Web.pm +++ b/Web.pm @@ -24,10 +24,44 @@ use strict; use warnings; use Exporter; -our @EXPORT=qw(&require &a_href &a_href_cz &vskip &img $W); +sub Wrequire ($); +sub Wuse ($@); +our $W; +our @EXPORT=qw(&Wrequire &Wuse &a_href &a_href_cz &vskip &img ¢erimg $W &top_dir &top_dir_disk); our @ISA=qw(Exporter); -use WebConfig; # for %WebConfig +BEGIN +{ + sub Wrequire ($) + { + my($file)=@_; + +# print STDERR "Wrequire $file\n"; + $file=~s#/#::#g; + $file=~s/[.]pm$//; + my $class=$file; + $file=~s#::#/#g; + $file.=".pm"; + my $aref=($W->{"packages_used"}{$Apache::Registry::curstash}||=[]); + push @$aref,$class + if !{ map(($_=>1),@$aref) }->{$class}; # Prevent duplicated entries. + CORE::require $file; + 1; # Otherwise 'require' would already file above. + } + + sub Wuse ($@) + { + my($file,@list)=@_; + +# print STDERR "Wuse $file\n"; + Wrequire $file; + local $Exporter::ExportLevel=$Exporter::ExportLevel+1; + $file->import(@list); + 1; + } +} + +BEGIN { Wuse 'WebConfig'; } # for %WebConfig require CGI; # for &escapeHTML require Image::Size; # for &imgsize use File::Basename; # &basename @@ -44,7 +78,7 @@ delete $ENV{"PERLLIB"}; delete $ENV{"LD_LIBRARY_PATH"}; -our $W; +#our $W; # $W->{"title"} # $W->{"head"} # $W->{"head_css"} @@ -61,7 +95,9 @@ sub init ($%) { my($class,%args)=@_; + my $packages_used_save=$W->{"packages_used"}; $W={ %WebConfig,%args }; # override %WebConfig settings + $W->{"packages_used"}=$packages_used_save; $W->{"__PACKAGE__"}||="Apache::ROOT".$Apache::Registry::curstash; @@ -70,6 +106,7 @@ my($class,%args)=@_; do { $W->{$_}=0 if !defined $W->{$_}; } for ("detect_ent"); do { $W->{$_}=0 if !defined $W->{$_}; } for ("detect_js"); do { $W->{$_}=1 if !defined $W->{$_}; } for ("have_css"); # AFAIK it does not hurt anyone. + do { $W->{$_}=1 if !defined $W->{$_}; } for ("heading"); do { $W->{$_}=1 if !defined $W->{$_}; } for ("footer"); do { $W->{$_}=1 if !defined $W->{$_}; } for ("footer_delimit"); do { $W->{$_}=1 if !defined $W->{$_}; } for ("footer_mailme"); @@ -119,7 +156,7 @@ my($class,%args)=@_; $W->{"have_js"}=($W->{"args"}{"have_js"} ? 1 : 0); if ($W->{"detect_js"} && !$W->{"have_js"}) { - $W->{"head"}.=''."\n"; + $W->{"head"}.=''."\n"; } do { args_check(%$_) if $_; } for ($W->{"args_check"}); @@ -127,20 +164,39 @@ my($class,%args)=@_; return $W; } -sub require ($) +sub top_dir_disk () { -my($file)=@_; - - $file=~s#/#::#g; - $file=~s/[.]pm$//; - my $class=$file; - $file=~s#::#/#g; - $file.=".pm"; - my $aref=($W->{"packages_used"}{$Apache::Registry::curstash}||=[]); - push @$aref,$class - if !{ map(($_=>1),@$aref) }->{$class}; # Prevent duplicated entries. - CORE::require $file; - 1; # Otherwise 'require' would already file above. + do { return $_ if $_; } for ($W->{"top_dir"}); + return $INC[0]; # fallback +} + +sub top_dir (;$) +{ +my($in)=@_; + + if (my $uri=$ENV{"REQUEST_URI"}) { + $uri.="Index" if $uri=~m#/$#; + if (defined $in) { + my($inpath,$inquery)=split /[?]/,$in,2; + $inpath=~tr///cs; + $uri=~tr///cs; + for (;;) { + my($in1 ,$in2 )=($in =~m#^(/[^/]+)(/.*)$#); + my($uri1,$uri2)=($uri=~m#^(/[^/]+)(/.*)$#); + last if !defined $in1 || !defined $uri1 || $in1 ne $uri1; + $in=$in2; + $uri=$uri2; + } + } + $uri=~s#^/*##; + $uri=~s#[^/]+#..#g; + $uri=File::Basename::dirname($uri); + my $r=$uri.(defined $in ? $in : ""); +# 1 while $r=~s#^[.]/##; +# $r="./$r" if $r=~m#^(?:?.*)$#; # empty pathname? + return $r; + } + return top_dir_disk().$in; } sub fatal (;$); @@ -150,13 +206,13 @@ sub args_check (%) my(%tmpl)=@_; while (my($name,$regex)=each(%tmpl)) { - my $name_html="Parametr ".CGI::escapeHTML($name).""; + my $name_html="Parameter ".CGI::escapeHTML($name).""; + $W->{"args"}{$name}="" if !defined $W->{"args"}{$name}; my $val=$W->{"args"}{$name}; + $val="" if !defined $val; fatal "$name_html ".CGI::escapeHTML($val)."" - ." does not match required regex ".CGI::escapeHTML($regex)."" - if defined $val && $val!~/$regex/; - fatal "$name_html is required" - if !defined $val; + ." does not match required regex ".CGI::escapeHTML($regex)." " + if $regex ne "" && $val!~/$regex/; } } @@ -189,7 +245,7 @@ sub footer (;$) print "
\n" if $W->{"footer"}; if ($W->{"footer_mailme"}) { - print '
{"top_dir"}."/$file$ext"; + last if -r top_dir_disk()."/$file$ext"; cluck "Class file $file not found" if !$ext; } $file.=$ext; @@ -236,11 +292,26 @@ sub footer (;$) } ( $W->{"__PACKAGE__"}, __PACKAGE__, - "WebConfig", @{$W->{"packages_used"}{$Apache::Registry::curstash}}, ))); print "

\n"; } + + for my $package ( + $W->{"__PACKAGE__"}, + __PACKAGE__, + @{$W->{"packages_used"}{$Apache::Registry::curstash}}, + ) { + my $cvs_id=(eval('$'.$package."::CVS_ID") +# || $package # debug + ); + print ''."\n" if $cvs_id; + } + + if ($W->{"heading"}) { + do { &{$_}() if $_; } for ($W->{"footing"}); + } + print "\n"; exit(0); } @@ -286,6 +357,10 @@ my($url,$contents,%args)=@_; do { $$_=1 if !defined $$_; } for (\$args{"size"}); $contents=CGI::escapeHTML($url) if !defined $contents; + $contents=~s#]*>##gi; + $contents=~s###gi; + + $url=top_dir($url) if url_is_local $url && $url=~m#^/#; my $r='{"top_dir"}."/Redirect.pl?location=".uri_escape($url)); } - $r.='">'.$contents.''; + { $r.=CGI::escapeHTML(top_dir('/Redirect.pl?location='.uri_escape($url))); } + $r.='"'; + do { $r.=" $_" if $_; } for ($args{"attr"}); + $r.='>'.$contents.''; if ($args{"size"} && url_is_local($url) && $url=~/[.](?:gz|Z|rpm|zip|deb|lha)/) { # Downloadable? + $url=top_dir_disk().$url if $url=~m#^/#; if (!-r $url) { cluck "File not readable: $url"; } else { @@ -335,6 +413,13 @@ my($url,$contents,%args)=@_; return $contents; } +sub make ($) +{ +my($cmd)=@_; + + system {'flock'} 'flock','-x',top_dir_disk(),$cmd.' >&2'; +} + sub img_size ($$) { my($width,$height)=@_; @@ -355,22 +440,39 @@ my @img_variants=( { "id"=>"png","qs"=>1.0,"content-type"=>"image/png" }, { "id"=>"gif","qs"=>0.9,"content-type"=>"image/gif" }, ); -my $img_variants_re='[.](?:'.join('|',map(($_->{"id"}),@img_variants)).')$'; +my $img_variants_re='[.](?:'.join('|',"jpeg",map(($_->{"id"}),@img_variants)).')$'; sub img_src ($) { my($file_base)=@_; - return $file_base if !url_is_local($file_base) - # Known image extension? - || $file_base=~m#$img_variants_re#o; + if (!url_is_local($file_base)) { + return $file_base if !wantarray(); + return ($file_base,$file_base); + } + # Known image extension? + if ($file_base=~m#$img_variants_re#o) { + return $file_base if !wantarray(); + return ($file_base,$file_base) if $file_base!~m#^/#; + return (top_dir($file_base),top_dir_disk().$file_base); + } + + my $file_base_disk; + my $file_base_uri; + if ($file_base!~m#^/#) { + $file_base_disk=$file_base_uri=$file_base; + } + else { + $file_base_disk=top_dir_disk().$file_base; + $file_base_uri=top_dir($file_base); + } my @nego_variants; for my $var (@img_variants) { - my $file=$file_base.".".$var->{"id"}; + my $file=$file_base_disk.".".$var->{"id"}; # TODO: Somehow quickly check dependencies? - system 'make >&2 -s --no-print-directory' - .' -C '."'".File::Basename::dirname($file)."' '".File::Basename::basename($file)."'" + make('make -s --no-print-directory' + .' -C '."'".File::Basename::dirname($file)."' '".File::Basename::basename($file)."'") if !-f $file; push @nego_variants,negotiate_variant( %$var, @@ -381,18 +483,36 @@ my($file_base)=@_; # but should we provide somehow either 'HTTP::Headers' or 'HTTP::Request' ? my $ext=HTTP::Negotiate::choose(\@nego_variants); $ext||=$img_variants[0]->{"id"}; # &HTTP::Negotiate::choose failed? - return $file_base.".".$ext; + + return $file_base_uri.".".$ext if !wantarray(); + return ($file_base_uri.".".$ext,$file_base_disk.".".$ext); } -sub img ($$;$) +sub img ($$;%) { -my($file_base,$alt,$attrs)=@_; +my($file_base,$alt,%attr)=@_; - my $file=img_src $file_base; - my($width,$height)=Image::Size::imgsize($file); + my($file_uri,$file_disk)=img_src $file_base; + my($width,$height)=Image::Size::imgsize($file_disk); + $alt=~s/<[^>]*>//g; $alt=CGI::escapeHTML($alt); - return "\"$alt\""; + my $content="\"$alt\""; + return a_href img_src($attr{"a_href_img"}),$content if $attr{"a_href_img"}; + return a_href $attr{"a_href"},$content if $attr{"a_href"}; + return $content; +} + +sub centerimg +{ + my $r.=""; + $r.=''."\n"; + @_=( [@_] ) if !ref $_[0]; + for (@_) { + $r.="\t".''."\n"; + } + $r.='
'.&{\&img}(@$_).'
'."\n"; + return $r; } sub readfile ($$) @@ -441,9 +561,10 @@ my($class)=@_; } print ''."\n"; print ''."\n"; - print ''.CGI::escapeHTML($W->{"title_prefix"}) - .join("",map({ ': '.CGI::escapeHTML($_); } ($W->{"title"} || ()))) - .''."\n"; + my $title=$W->{"title_prefix"}.join("",map({ ': '.$_; } ($W->{"title"} || ()))); + $title=~s#<[^>]*>##g; + print ""; + print "$title\n"; if ($W->{"have_css"}) { print <<'HERE'; @@ -472,10 +593,17 @@ HERE print ''."\n"; print $W->{"head"}; + for my $type (qw(prev next index contents start up)) { + do { print ''."\n" if $_; } for ($W->{"rel_$type"}); + } print "{"browser"}->netscape() && $W->{"browser"}->major<=4; print ">\n"; + + if ($W->{"heading"}) { + do { &{$_}() if $_; } for ($W->{"heading"}); + } } 1;