sc: list specific immunities in massive description
[sheet.git] / common.inc.plp
1 <:
2 use utf8;
3 use strict;
4 use warnings;
5 no  warnings 'qw';  # you know what you doing
6 no  warnings 'uninitialized';  # save some useless checks for more legible code
7 use open ':std' => ':utf8';
8
9 use File::stat 'stat';
10 use HTTP::Date;
11
12 $PLP::ERROR = sub {
13         my ($text, $html) = @_;
14         print '<p class="error"><strong>Fatal error</strong>: '.$html."</p>\n\n";
15 };
16
17 our $style;
18 our $showkeys = !exists $get{keys} ? undef :
19         ($get{keys} ne '0' && ($get{keys} || 'always'));
20
21 $header{content_type} = 'text/html; charset=utf-8';
22
23 sub stylesheet {
24         my %styles = map {$_ => $_} @_;
25
26         if (defined( my $setstyle = $get{style} )) {
27                 $style = $styles{ $setstyle };
28                 eval {
29                         require CGI::Cookie;
30                         my $cookie = CGI::Cookie->new(
31                                 -name    => 'style',
32                                 -value   => $setstyle || '',
33                                 -path    => '/',  # site-wide; current page is confusing to most users
34                                 -expires => $setstyle ? '+5y' : '-1d',
35                         ) or die "empty object returned\n";
36                         AddCookie($cookie->as_string);
37                 } or warn "Unable to create style cookie: $@";
38         }
39
40         $style ||= exists $cookie{style} && $styles{ $cookie{style} } || $_[0];
41
42         return join "\n", map { sprintf(
43                 '<link rel="%s" type="text/css" media="all" href="%s" title="%s">',
44                 $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "/$_.css?1.6", $_
45         ) } @_;
46 }
47
48 sub checkmodified {
49         my $lastmod;
50         for (@_) {
51                 my $mod = stat $_ or next;
52                 $mod = $mod->mtime or next;
53                 $lastmod = $mod if $mod gt $lastmod;
54         }
55
56         for ($ENV{HTTP_IF_MODIFIED_SINCE} || ()) {
57                 next if str2time($_) < $lastmod;
58                 $header{status} = '304 Same old';
59                 exit;
60         }
61
62         $header{'Last-Modified'} = time2str($lastmod);
63 }
64
65 sub Html {
66         my ($meta) = @_;
67
68         # announce and check data modification
69         checkmodified(
70                 $ENV{SCRIPT_FILENAME},
71                 (grep { /\bShiar_/ } values %INC),
72                 $meta->{data} ? @{ $meta->{data} } : (),
73         );
74         $header{'Cache-Control'} = sprintf 'max-age: ', 24*60*60;
75
76         # default fallbacks
77         $meta->{stylesheet} ||= [qw'light dark circus mono red terse'];
78         $meta->{charset} ||= 'utf-8';
79
80         # optional amends
81         push @{ $meta->{raw} }, (
82                 '<!--[if lte IE 6]><style> .help dl.legend dt {margin:0 0 1px} </style><![endif]-->',
83                 '<!--[if lte IE 7]><style> .help dl.legend dd {float:none} </style><![endif]-->',
84                 !$showkeys ? '<style type="text/css"> .no {visibility:hidden} </style>'
85                         : $showkeys eq 'ghost' ? '<style type="text/css"> .no, .alias {opacity:.5} </style>'
86                         : (),
87                 '<script type="text/javascript" src="/keys.js?1.6"></script>',
88         ) if $meta->{keys};
89
90         # flatten arrays
91         ref $_ eq 'ARRAY' and $_ = join ' ',  @$_ for $meta->{description};
92         ref $_ eq 'ARRAY' and $_ = join ', ', @$_ for $meta->{keywords};
93         ref $_ eq 'ARRAY' and $_ = join "\n", @$_ for $meta->{raw};
94         ref $_ eq 'ARRAY' and $_ = stylesheet(@$_)."\n" for $meta->{stylesheet};
95
96         # other vars
97         my ($file) = $ENV{SCRIPT_FILENAME} =~ m{ ([^/]+) \.plp$ }x;
98
99         # leading output
100         $header{content_type} = "text/html; charset=$meta->{charset}";
101         print <<"EOT";
102 <!DOCTYPE html>
103 <html lang="en">
104
105 <head>
106 <meta http-equiv="content-type" content="$header{content_type}">
107 <title>$meta->{title}</title>
108 <meta name="description" content="$meta->{description}">
109 <meta name="keywords" content="$meta->{keywords}">
110 <link rel="icon" type="image/png" href="/clip.png">
111 EOT
112         print $_, "\n" for $meta->{stylesheet} || ();
113         print $_, "\n" for $meta->{raw} || ();
114         print qq{</head>\n\n<body id="$file">\n};
115
116         # prepare trailing output
117         PLP_END {
118                 print <<"EOT";
119 <p class="footer">
120         <a href="/" rel="start">sheet.shiar.nl</a>/$file.<a href="/source/$file.plp"
121          rel="source" title="Written in Perl">plp</a>
122         <a href="http://git.shiar.nl/sheet.git/history/HEAD:/$file.plp"
123          rel="vcs-git" title="Git repository">$meta->{version}</a>
124         created by <a href="http://shiar.nl/" rel="author">Shiar</a> •
125         <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html" rel="license copyright"
126          title="Licensed under the GNU Affero General Public License, version 3">AGPLv3</a>
127 </p>
128
129 </html>
130 EOT
131         };
132 }
133