]> iEval git - gruntmaster-page.git/blame - lib/Gruntmaster/Page.pm
Initial commit
[gruntmaster-page.git] / lib / Gruntmaster / Page.pm
CommitLineData
42546e6c
MG
1package Gruntmaster::Page;
2
3use 5.014000;
4use strict;
5use warnings;
6use parent qw/Exporter/;
7our @EXPORT_OK = qw/generate header footer/;
8
9use File::Basename qw/fileparse/;
10use File::Slurp qw/write_file/;
11use IO::Compress::Gzip qw/gzip/;
12
13our $VERSION = '0.001';
14our @generators;
15
16use constant LANGUAGES => [ 'en' ];
17use constant CONTENT_TYPES => {
18 html => 'text/html; charset=UTF-8',
19 txt => 'text/plain; charset=UTF-8',
20};
21
22my %header_templates = (
23 en => <<'HTML',
24<!DOCTYPE html>
25<title>TITLE_GOES_HERE</title>
26<link rel="stylesheet" href="/gm.css">
27<script src="/jquery-2.0.3.min.js"></script>
28<script src="/view.js"></script>
29<meta charset="utf-8">
30
31<span id="admin"></span>
32<div id="title"><span class="i">i</span><span class="Eval">Eval</span></div>
33<div id="subtitle">TITLE_GOES_HERE</div>
34
35<nav><ul><li><a href="/">Home</a><li><a href="/log/">View job log</a><li><a href="/submit.var">Submit job</a><li><a href="/pb/">Problem list</a></ul></nav>
36
37HTML
38);
39
40my %footer_templates = (
41 en => <<'HTML',
42
43<footer>
44Dilmom: Why don't you call your product the Gruntmaster 6000?
45Dilbert: What kind of product do you see when you imagine a Gruntmaster 6000?
46Dilmom: Well, it's a stripped-down version of the Gruntmaster 9000, of course. But it's software-upgradeable.
47</footer>
48HTML
49);
50
51sub header{
52 my ($language, $title) = @_;
53 $header_templates{$language} =~ s/TITLE_GOES_HERE/$title/ger;
54}
55
56sub footer{
57 $footer_templates{$_[0]};
58}
59
60sub declaregen{
61 my ($generator, $regex) = @_;
62 $generator = "Gruntmaster::Page::$generator";
63 eval "require $generator";
64 my $gensub = $generator->can('generate') or die "No such generator: $generator";
65 push @generators, [$regex, $gensub];
66}
67
68declaregen Index => qr'^index$';
69declaregen Log => qr'^log/index$';
70declaregen 'Log::Entry' => qr'^log/.*/index$';
71declaregen Submit => qr'^submit$';
72declaregen Pb => qr'^pb/index$';
73declaregen 'Pb::Entry' => qr'^pb/.*/index$';
74
75sub generate{
76 my ($path) = @_;
77 my ($path_noext, $ext) = $path =~ m/^(.*)\.(.*)$/;
78 my $basename = fileparse $path_noext;
79
80 open my $typemap, ">$path_noext.var";
81 say $typemap "URI: $basename\n";
82 for my $gen(@generators) {
83 my ($regex, $generator) = @$gen;
84 next unless $path_noext =~ $regex;
85 for my $lang (@{LANGUAGES()}) {
86 my $page = $generator->($path, $lang);
87 write_file "$path_noext.$lang.$ext", $page;
88 say $typemap "URI: $basename.$lang.$ext\nContent-Language: $lang\nContent-Type: " . CONTENT_TYPES->{$ext} . "\n";
89 gzip \$page => "$path_noext.$lang.gz.$ext", Minimal => 1;
90 say $typemap "URI: $basename.$lang.gz.$ext\nContent-Language: $lang\nContent-Encoding: gzip\nContent-Type: " . CONTENT_TYPES->{$ext} . "\n";
91 }
92 }
93 close $typemap;
94}
95
961;
97__END__
98# Below is stub documentation for your module. You'd better edit it!
99
100=head1 NAME
101
102Gruntmaster::Page - Perl extension for blah blah blah
103
104=head1 SYNOPSIS
105
106 use Gruntmaster::Page;
107 blah blah blah
108
109=head1 DESCRIPTION
110
111Stub documentation for Gruntmaster::Page, created by h2xs. It looks like the
112author of the extension was negligent enough to leave the stub
113unedited.
114
115Blah blah blah.
116
117=head2 EXPORT
118
119None by default.
120
121
122
123=head1 SEE ALSO
124
125Mention other useful documentation such as the documentation of
126related modules or operating system documentation (such as man pages
127in UNIX), or any relevant external documentation such as RFCs or
128standards.
129
130If you have a mailing list set up for your module, mention it here.
131
132If you have a web site set up for your module, mention it here.
133
134=head1 AUTHOR
135
136Marius Gavrilescu, E<lt>marius@E<gt>
137
138=head1 COPYRIGHT AND LICENSE
139
140Copyright (C) 2013 by Marius Gavrilescu
141
142This library is free software; you can redistribute it and/or modify
143it under the same terms as Perl itself, either Perl version 5.18.1 or,
144at your option, any later version of Perl 5 you may have available.
145
146
147=cut
This page took 0.04122 seconds and 4 git commands to generate.