X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FPlack%2FApp%2FGruntmaster.pm;h=e009d792041083c4a0b6e7bf00edb4f3c33aca05;hb=7731fbead8b6008222433a55467f986b434fb470;hp=60ab49f963b184207cdbf6e507c6e5b1b13bff52;hpb=7dc3247307f2e86af154dc449224f22ba8923c79;p=plack-app-gruntmaster.git diff --git a/lib/Plack/App/Gruntmaster.pm b/lib/Plack/App/Gruntmaster.pm index 60ab49f..e009d79 100644 --- a/lib/Plack/App/Gruntmaster.pm +++ b/lib/Plack/App/Gruntmaster.pm @@ -7,8 +7,10 @@ use parent qw/Plack::Component/; no if $] >= 5.017011, warnings => 'experimental::smartmatch'; our $VERSION = '5999.000_001'; +use File::Slurp qw/read_file/; use HTTP::Negotiate qw/choose/; use Plack::Request; +use Gruntmaster::Page::Generic; my %handlers; @@ -21,7 +23,21 @@ sub call { my @args; next unless @args = $r->path =~ m/^$re$/a; my $format = choose $obj->variants, $r->headers; - return $obj->generate($format, $env->{'psgix.logger'}, map { $_ // '' } @args); + return $obj->generate($format, $env, map { $_ // '' } @args); + } + + if ($r->method eq 'GET' || $r->method eq 'HEAD') { + my $article = $r->path eq '/' ? '/index' : $r->path; + $article = substr $article, 1; + $article =~ tr,/,_,; + my @variants = grep { !/\.title$/ } ; + if (@variants) { + my $lang = choose [ map { [$_, 1, 'text/html', undef, undef, $_, undef] } map { /\.(.+)$/ } @variants ], $r->headers; + my $content = read_file "a/$article.$lang"; + my $title = read_file "a/$article.$lang.title"; + my $html = Gruntmaster::Page::Base::header($lang, $title) . $content . Gruntmaster::Page::Base::footer($lang); + return [200, ['Content-Type' => 'text/html', 'Content-Language' => $lang, 'Vary' => 'Accept-Language', 'X-Forever' => 1, 'Cache-Control' => 'max-age=300'], [$html] ] + } } [404, ['Content-Type' => 'text/plain'], ['Not found']] @@ -40,23 +56,33 @@ sub post { } BEGIN{ - my $word = qr,(\w+),a; - my $ct = qr,(?:\/ct/$word)?,a; - - get qr,/css/$word, => 'CSS'; - get qr,/js, => 'JS'; - - get qr,/ct/, => 'Ct'; - get qr,/ct/$word, => 'Ct::Entry'; - get qr,/us/, => 'Us'; - get qr,/us/$word, => 'Us::Entry'; - - get qr,$ct/log/(\d+)?, => 'Log'; - get qr,$ct/log/st, => 'St'; - get qr,$ct/log/job/$word, => 'Log::Entry'; - get qr,$ct/submit, => 'Submit'; - get qr,$ct/pb/, => 'Pb'; - get qr,$ct/pb/$word, => 'Pb::Entry'; + my $word = qr,(\w+),a; + my $number = qr,(\d+),a; + + sub generic { + for my $thing (@_) { + my $pkg = ucfirst $thing; + get qr,/$thing/, => $pkg; + get qr,/$thing/read, => "${pkg}::Read"; + get qr,/$thing/$word, => "${pkg}::Entry"; +# post qr,/$thing/$word/create, => "${pkg}::Entry::Create"; + get qr,/$thing/$word/read, => "${pkg}::Entry::Read"; +# post qr,/$thing/$word/update, => "${pkg}::Entry::Update"; +# post qr,/$thing/$word/delete, => "${pkg}::Entry::Delete"; + } + } + + get qr,/css/$word\.css, => 'CSS'; + get qr,/js\.js, => 'JS'; + + get qr,/log/st, => 'St'; + generic qw/us ct pb log/; + + get qr,/log/src/$number\.$word, => 'Src'; + post qr,/submit, => 'Submit'; + + post qr,/action/register, => 'Register'; + post qr,/action/passwd, => 'Passwd'; } 1;