X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FPlack%2FApp%2FGruntmaster.pm;h=3cb38097fb8052b76602c7bca35e62a4b58dbbf1;hb=1bb102efb1444ab35e5cd8d2493d5e15ab00bc3f;hp=3e37ef12996dca805965d8509596847418c4eb38;hpb=84ca7535f20b19636518768b8f578b4394bf6391;p=gruntmaster-page.git diff --git a/lib/Plack/App/Gruntmaster.pm b/lib/Plack/App/Gruntmaster.pm index 3e37ef1..3cb3809 100644 --- a/lib/Plack/App/Gruntmaster.pm +++ b/lib/Plack/App/Gruntmaster.pm @@ -52,6 +52,8 @@ use constant FORMAT_EXTENSION => { use constant NOT_FOUND => [404, ['Content-Type' => 'text/plain'], ['Not found']]; use constant FORBIDDEN => [401, ['Content-Type' => 'text/plain', 'WWW-Authenticate' => 'Basic realm="Gruntmaster 6000"'], ['Forbidden']]; +sub development() { ($ENV{PLACK_ENV} // 'development') eq 'development' } + my $env; sub db { $env->{'gruntmaster.dbic'} } @@ -76,6 +78,7 @@ sub response { $params = $title; $title = 'No title'; } + $params->{time} = time; bless {template => $template, title => $title, params => $params}, __PACKAGE__.'::Response' } @@ -93,14 +96,14 @@ sub dispatch_request{ my $css = read_file "css/themes/$theme.css"; $css .= read_file $_ for ; my @headers = ('X-Forever' => 1, 'Cache-Control' => 'public, max-age=604800', 'Content-Type' => 'text/css'); - [200, \@headers, [CSS::Minifier::XS::minify $css]] + [200, \@headers, [development ? $css : CSS::Minifier::XS::minify $css]] }, sub (/js.js) { my $js; $js .= read_file $_ for ; my @headers = ('X-Forever' => 1, 'Cache-Control' => 'public, max-age=604800', 'Content-Type' => 'application/javascript'); - [200, \@headers, [JavaScript::Minifier::XS::minify $js]] + [200, \@headers, [development ? $js : JavaScript::Minifier::XS::minify $js]] }, sub (/src/:job) { @@ -160,6 +163,10 @@ sub dispatch_request{ forbid problem->is_private; response pb_entry => problem->name, db->problem_entry($_{problem}, $_{contest}, remote_user && remote_user->id); }, + sub (/sol/:problem) { + forbid !problem->is_in_archive; + response sol => 'Solution of ' . problem->name, {solution => db->problem($_{problem})->solution}; + }, sub (/) { redispatch_to '/index' }, sub (/:article) { [200, ['Content-Type' => 'text/html'], [render_article $_{article}, 'en']] }