latin: palm graffiti font placeholder
[sheet.git] / common.inc.plp
index 9b61d52b4416a9c75d1fa74157e758b43c35b4f1..f7ca70023bf9a7ff386cb5a9fabbebc37117e465 100644 (file)
@@ -1,5 +1,6 @@
 <:
 use 5.014;
+use strict;
 use utf8;
 use warnings;
 no  warnings 'qw';  # you know what you doing
@@ -10,41 +11,46 @@ use File::stat 'stat';
 use HTTP::Date;
 use Encode qw( decode_utf8 );
 
+our $Dev;
+
 sub Alert {
        my ($html, $debug) = @_;
        ref $html eq 'ARRAY' or $html = [$html];
        my ($title, @lines) = @{$html};
-       $body = "<h2>$title</h2>";
+       my $body = "<h2>$title</h2>";
        $body .= "\n<p>$_</p>" for @lines;
        $body .= "\n<pre>$debug</pre>" if $Dev and $debug;
        say "<div class=error>$body</div>\n";
 }
 
+sub Abort {
+       my ($html, $code, $debug) = @_;
+       unless ($PLP::sentheaders) {
+               $header{Status} = $code || 500;
+       }
+       elsif ($Dev) {
+               ref $html eq 'ARRAY' or $html = [$html];
+               push @{$html}, "Also failed to set HTTP status <q>$code</q>"
+                       . " after output!";
+       }
+       Alert($html, $debug);
+       exit;
+}
+
 BEGIN {
        require Time::HiRes;
        our $Time = [Time::HiRes::gettimeofday()];
 
-       $PLP::ERROR = sub {
-               my ($text, $html) = @_;
-               warn $text;
-               unless ($PLP::sentheaders and $PLP::sentheaders->[0] !~ m{/PLP\.pm$}) {
-                       Html({nocache => 1});
-                       say '<h1>Page unavailable</h1>';
-               }
-               Alert("<strong>Fatal error</strong>: $html.");
-       };
-
        push @INC, '.';
 
        # user request
        our $Dev = $ENV{HTTP_HOST} =~ /\bdev\./;
-       our ($file) = $ENV{SCRIPT_FILENAME} =~ m{ ([^/]+) \.plp$ }x;
 }
 
-our $Request = decode_utf8($ENV{PATH_INFO} =~ s{^/}{}r);
+our $Request //= decode_utf8($ENV{PATH_INFO} =~ s{^/}{}r);
 
 our $style;
-our $showkeys = !exists $get{keys} ? undef :
+our $showkeys //= !exists $get{keys} ? undef :
        ($get{keys} ne '0' && ($get{keys} || 'always'));
 
 $header{content_type} = 'text/html; charset=utf-8';
@@ -72,7 +78,7 @@ sub stylesheet {
 
        return map { sprintf(
                '<link rel="%s" type="text/css" media="all" href="%s" title="%s">',
-               $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "/$_.css?1.11", $_
+               $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "/$_.css?1.12", $_
        ) } @avail;
 }
 
@@ -132,6 +138,8 @@ sub Html {
                '<script type="text/javascript" src="/keys.js?1.6" async></script>',
        ) if $meta->{keys};
 
+       my ($file) = $ENV{SCRIPT_FILENAME} =~ m{ ([^/]+) \.plp$ }x;
+
        PLP_START {
                # leading output
                say '<!DOCTYPE html>';
@@ -142,9 +150,9 @@ sub Html {
                        for $header{content_type};
                say sprintf '<title>%s</title>', $meta->{title};
                say sprintf '<meta name="description" content="%s">', EscapeHTML($_)
-                       for join(' ', @{ $meta->{description} }) || ();
+                       for join(' ', @{ $meta->{description} // [] }) || ();
                say sprintf '<meta name="keywords" content="%s">', EscapeHTML($_)
-                       for join(', ', @{ $meta->{keywords} }) || ();
+                       for join(', ', @{ $meta->{keywords} // [] }) || ();
                say '<meta name="viewport" content="width=device-width, initial-scale=1">';
                say '<link rel="icon" type="image/png" href="/clip.png">';
                say for map { @{$_} } $meta->{raw} || ();
@@ -178,6 +186,7 @@ sub Html {
         title="Licensed under the GNU Affero General Public License, version 3"
         rel="license">AGPLv3</a>
 EOT
+               our $Time;
                say sprintf '• %.3fs', Time::HiRes::tv_interval($Time) if $Dev and $Time;
                say '</p>';
                say '';
@@ -185,6 +194,18 @@ EOT
        };
 }
 
+BEGIN {
+       $PLP::ERROR = sub {
+               my ($text, $html) = @_;
+               warn $text;
+               unless ($PLP::sentheaders) {
+                       Html({nocache => 1});
+                       say '<h1>Page unavailable</h1>';
+               }
+               Alert("<strong>Fatal error</strong>: $html.");
+       };
+}
+
 sub showlink {
        my ($title, $href, $selected) = @_;
        return sprintf(