X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=lib%2FNDWeb.pm;h=df1da1748d850eaa9d37f0250fe5b2c8afdb9fff;hb=11149303e8c0c031f5e08c5792930b490ba4a30b;hp=85cbae140bb2afb9bfa31bf382c75c1058f0747b;hpb=00325acb2f3a1ae09e4a73d09a33f056dfb60fda;p=ndwebbie.git diff --git a/lib/NDWeb.pm b/lib/NDWeb.pm index 85cbae1..df1da17 100644 --- a/lib/NDWeb.pm +++ b/lib/NDWeb.pm @@ -5,10 +5,6 @@ use warnings; use Catalyst::Runtime '5.70'; -#Need to preload, otherwise the first hit is slow -use CGI qw/:standard/; -escapeHTML(''); - # Set flags and add plugins for the application # # -Debug: activates the debug mode for very useful log messages @@ -32,7 +28,21 @@ our $VERSION = '0.01'; __PACKAGE__->config( name => 'NDWeb' ); __PACKAGE__->config->{'Plugin::Authentication'}{'use_session'} = 1; - +__PACKAGE__->config(session => { + storage => "/tmp/ndweb-$>/sesession", + directory_umask => 077, +}); +__PACKAGE__->config( cache => { + backend => { + class => "Cache::FileCache", + cache_root => "/tmp/ndweb-$>", + directory_umask => 077, + }, +}); + +__PACKAGE__->config( page_cache => { + set_http_headers => 1, +}); # Start the application @@ -51,10 +61,22 @@ __PACKAGE__->setup(qw/ Session Session::Store::File Session::State::Cookie + + Cache + PageCache /); + __PACKAGE__->deny_access_unless('/users',[qw/admin_users/]); __PACKAGE__->deny_access_unless('/alliances/resources',[qw/alliances_resources/]); +__PACKAGE__->deny_access_unless('/graphs/alliancevsintel',[qw/graphs_intel/]); +__PACKAGE__->deny_access_unless('/graphs/avgalliancevsintel',[qw/graphs_intel/]); +__PACKAGE__->deny_access_unless('/members',[qw/members/]); +__PACKAGE__->deny_access_unless('/covop',[qw/covop/]); +__PACKAGE__->deny_access_unless('/calls/list',[qw/calls_list/]); +__PACKAGE__->deny_access_unless('/calls/postcallcomment',[qw/calls_edit/]); +__PACKAGE__->deny_access_unless('/calls/postcallupdate',[qw/calls_edit/]); +__PACKAGE__->deny_access_unless('/calls/postattackerupdate',[qw/calls_edit/]); =head1 NAME