]> iEval git - gruntmaster-page.git/blame - lib/Gruntmaster/Page.pm
Add user list and user pages
[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/;
22642746 7our @EXPORT_OK = qw/generate _generate/;
42546e6c 8
35073130 9use Fcntl qw/:flock/;
42546e6c 10use File::Basename qw/fileparse/;
ea6ce64d 11use File::Path qw/make_path/;
42546e6c
MG
12use File::Slurp qw/write_file/;
13use IO::Compress::Gzip qw/gzip/;
35073130 14use IO::File;
22642746 15use Gruntmaster::Data qw/PUBLISH/;
42546e6c
MG
16
17our $VERSION = '0.001';
18our @generators;
19
20use constant LANGUAGES => [ 'en' ];
21use constant CONTENT_TYPES => {
cd9af27e
MG
22 html => 'text/html; charset=UTF-8',
23 txt => 'text/plain; charset=UTF-8',
42546e6c
MG
24};
25
42546e6c 26sub declaregen{
cd9af27e
MG
27 my ($generator, $regex) = @_;
28 $generator = "Gruntmaster::Page::$generator";
29 eval "require $generator";
30 my $gensub = $generator->can('generate') or die "No such generator: $generator";
31 push @generators, [$regex, $gensub];
42546e6c
MG
32}
33
fe78f0c1 34{
cd9af27e
MG
35 my $component = qr'[^/]+';
36 my $contest = qr,(?:ct/$component/)?,;
37 declaregen Index => qr,^index$,;
38 declaregen Learn => qr,^learn$,;
088a8d62 39 declaregen Account => qr,^account$,;
4aa8ba86
MG
40 declaregen Us => qr,^us/index$,;
41 declaregen 'Us::Entry' => qr,^us/$component$,;
cd9af27e
MG
42 declaregen Ct => qr,^ct/index$,;
43 declaregen 'Ct::Entry' => qr,^ct/$component/index$,;
44 declaregen St => qr,^ct/$component/log/st$,;
45 declaregen Log => qr,^${contest}log/(?:\d+|index)$,;
e5f2bda6 46 declaregen 'Log::Entry' => qr,^${contest}log/job/$component$,;
cd9af27e
MG
47 declaregen Submit => qr,^${contest}submit$,;
48 declaregen Pb => qr,^${contest}pb/index$,;
3da9c3c2 49 declaregen 'Pb::Entry' => qr,^${contest}pb/$component$,;
fe78f0c1 50}
42546e6c 51
22642746 52sub _generate{
cd9af27e
MG
53 my ($path) = @_;
54 my ($path_noext, $ext) = $path =~ m/^(.*)\.(.*)$/;
ea6ce64d
MG
55 my ($basename, $directories) = fileparse $path_noext;
56 make_path $directories;
42546e6c 57
cd9af27e
MG
58 IO::File->new(">$path_noext.var")->close unless -f "$path_noext.var";
59 flock my $lockfh = IO::File->new("<$path_noext.var"), LOCK_EX;
60 open my $typemap, ">$path_noext.var.new";
61 say $typemap "URI: $basename\n";
62 for my $gen (@generators) {
63 my ($regex, $generator) = @$gen;
64 next unless $path_noext =~ $regex;
65 for my $lang (@{LANGUAGES()}) {
66 my $page = $generator->($path, $lang);
67 write_file "$path_noext.$lang.$ext.new", $page;
68 say $typemap "URI: $basename.$lang.$ext\nContent-Language: $lang\nContent-Type: " . CONTENT_TYPES->{$ext} . "\n";
69 gzip \$page => "$path_noext.$lang.gz.$ext.new", Minimal => 1;
70 say $typemap "URI: $basename.$lang.gz.$ext\nContent-Language: $lang\nContent-Encoding: gzip\nContent-Type: " . CONTENT_TYPES->{$ext} . "\n";
71 }
3da9c3c2 72 last
42546e6c 73 }
35073130 74
cd9af27e
MG
75 for my $lang (@{LANGUAGES()}) {
76 rename "$path_noext.$lang.$ext.new", "$path_noext.$lang.$ext";
77 rename "$path_noext.$lang.gz.$ext.new", "$path_noext.$lang.gz.$ext";
78 }
79 rename "$path_noext.var.new", "$path_noext.var";
80 close $typemap;
42546e6c
MG
81}
82
22642746
MG
83sub generate{
84 PUBLISH 'genpage', shift;
85}
86
42546e6c
MG
871;
88__END__
89# Below is stub documentation for your module. You'd better edit it!
90
91=head1 NAME
92
93Gruntmaster::Page - Perl extension for blah blah blah
94
95=head1 SYNOPSIS
96
97 use Gruntmaster::Page;
98 blah blah blah
99
100=head1 DESCRIPTION
101
102Stub documentation for Gruntmaster::Page, created by h2xs. It looks like the
103author of the extension was negligent enough to leave the stub
104unedited.
105
106Blah blah blah.
107
108=head2 EXPORT
109
110None by default.
111
112
113
114=head1 SEE ALSO
115
116Mention other useful documentation such as the documentation of
117related modules or operating system documentation (such as man pages
118in UNIX), or any relevant external documentation such as RFCs or
119standards.
120
121If you have a mailing list set up for your module, mention it here.
122
123If you have a web site set up for your module, mention it here.
124
125=head1 AUTHOR
126
127Marius Gavrilescu, E<lt>marius@E<gt>
128
129=head1 COPYRIGHT AND LICENSE
130
131Copyright (C) 2013 by Marius Gavrilescu
132
133This library is free software; you can redistribute it and/or modify
134it under the same terms as Perl itself, either Perl version 5.18.1 or,
135at your option, any later version of Perl 5 you may have available.
136
137
138=cut
This page took 0.032436 seconds and 4 git commands to generate.