source: json output option for perl includes
[sheet.git] / source.plp
index a813db4a3cd03cc4c4899e4dd59abbb0d78abc8d..2ac48336fec79d3aa1d2c87e673da53188c56734 100644 (file)
@@ -1,27 +1,44 @@
 <(common.inc.plp)><:
-       our $VERSION = 'v1.0';
 
-       my $source = $ENV{PATH_INFO};
-       $source =~ s{^/}{};
+my $source = $ENV{PATH_INFO};
+$source =~ s{^/}{};
 
-:><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="en">
+if ($source =~ s{(?<=\Q.inc.pl\E)/jsonp?$}{} and -r $source) {
+       # convert perl include to json construct
+       eval {
+               my $data = do $source or die $@ || $! || 'read error';
+               require JSON;
+               my $converter = JSON->new;
+               $converter->utf8->indent->space_after->canonical;
 
-<head>
-<meta http-equiv="content-type" content="<:= $header{content_type} :>">
-<title><:= $source :> source code</title>
-<meta name="description" content="<:=
-       $source ? "Source code of local $source file"
-                 . ", with syntax highlighted and references linked."
-               : 'Index of source files for this site.'
-:>">
-<meta name="keywords" content="sheet, cheat, source, code, perl, plp, html, agpl">
-<:= stylesheet(qw'light dark mono red') :>
-</head>
+               $header{content_type} = 'application/json';
+               $header{content_type} = 'text/plain' if exists $get{debug};
+               print $_, '(' for $get{callback} // ();
+               print $converter->encode($data);
+               print     ')' for $get{callback} // ();
+               return 1;
+       } or do {
+               $header{status} = '500 File unavailable';
+               $header{content_type} = 'text/plain';
+               print "Conversion failed: $@";
+       };
+       exit;
+}
+
+Html({
+       title => "$source source code",
+       version => 'v1.1',
+       description => !$source ? 'Index of source files for this site.' : [
+               "Source code of the $source file at this site,",
+               "with syntax highlighted and references linked."
+       ],
+       keywords => [qw'
+               sheet cheat source code perl plp html agpl
+       '],
+       stylesheet => [qw'light dark mono red'],
+});
 
-<body id="source">
-<:
+print "\n";
 
 if (not $source) {
        print "<h1>Source files</h1>";
@@ -42,7 +59,7 @@ else {
        }
        elsif ($source =~ s{::}{/}g or !-e $source) {
                $source .= '.pm';
-               for (0 .. $#{@INC}) {
+               for (0 .. $#INC) {
                        -e ($_ = "$INC[$_]/$source") or next;
                        $source = $_;
                        last;
@@ -81,18 +98,12 @@ else {
                print "</pre>\n";
        }
        else {
-               print "<pre>\n", EscapeHTML(ReadFile($source)), "</pre>\n";
+               require Encode;
+               print "<pre>\n";
+               print EscapeHTML(Encode::decode_utf8(ReadFile($source)));
+               print "</pre>\n";
        }
+
+       print "\n";
 }
-:>
-<p class="footer">
-       <a href="/" rel="home">sheet.shiar.nl</a>/source.<a href="/source/source.plp"
-        rel="code" title="Written in Perl">plp</a>
-       <a href="http://git.shiar.nl/sheet.git/history/HEAD:/source.plp"
-        rel="vcs-git" title="Git repository"><:= $VERSION :></a>
-       created by <a href="http://shiar.nl/" rel="author">Shiar</a> •
-       <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html" rel="copyright"
-        title="Licensed under the GNU Affero General Public License, version 3">AGPLv3</a>
-</p>
 
-</html>