]> ruin.nu Git - ndwebbie.git/blob - lib/NDWeb.pm
Merge updates from new catalyst.pl
[ndwebbie.git] / lib / NDWeb.pm
1 package NDWeb;
2 use Moose;
3 use namespace::autoclean;
4
5 use Catalyst::Runtime 5.80;
6
7 # Set flags and add plugins for the application
8 #
9 #         -Debug: activates the debug mode for very useful log messages
10 #   ConfigLoader: will load the configuration from a Config::General file in the
11 #                 application's home directory
12 # Static::Simple: will serve static files from the application's root
13 #                 directory
14
15 use parent qw/Catalyst/;
16 use Catalyst qw/
17         -Debug
18         ConfigLoader
19         Static::Simple
20         Unicode
21
22         Authentication
23         Authentication::Store::NDWeb
24         Authentication::Credential::Password
25
26         Authorization::Roles
27         Authorization::ACL
28
29         Session::DynamicExpiry
30         Session
31         Session::Store::File
32         Session::State::Cookie
33
34         Compress::Gzip
35         Compress::Deflate
36
37         Cache
38         PageCache
39 /;
40
41 extends 'Catalyst';
42
43 our $VERSION = '0.01';
44 $VERSION = eval $VERSION;
45
46 sub signal_bots {
47         system 'killall','-USR1', 'ndbot.pl';
48 }
49
50 # Configure the application.
51 #
52 # Note that settings in ndweb.conf (or other external
53 # configuration file that you set up manually) take precedence
54 # over this when using ConfigLoader. Thus configuration
55 # details given here can function as a default configuration,
56 # with an external configuration file acting as an override for
57 # local deployment.
58
59 __PACKAGE__->config(
60         name => 'NDWeb',
61         # Disable deprecated behavior needed by old applications
62         disable_component_resolution_regex_fallback => 1,
63 );
64 __PACKAGE__->config->{'Plugin::Authentication'}{'use_session'} = 1;
65 __PACKAGE__->config(session => {
66         storage => "/tmp/ndweb-$>/session",
67         directory_umask => 077,
68         expires => 300,
69         verify_address => 1,
70 });
71 __PACKAGE__->config( "Plugin::Cache" => {
72         backend => {
73                 class => "Cache::FileCache",
74                 cache_root => "/tmp/ndweb-$>",
75                 namespace => "cache",
76                 default_expires_in => 3600,
77                 directory_umask => 077,
78         },
79 });
80
81 __PACKAGE__->config( page_cache => {
82         set_http_headers => 1,
83         disable_index => 1,
84 });
85
86 __PACKAGE__->config( default_model => 'Model');
87 # Start the application
88 __PACKAGE__->setup();
89
90 __PACKAGE__->deny_access_unless('/users',[qw/admin_users/]);
91 __PACKAGE__->deny_access_unless('/alliances',[qw/alliances/]);
92 __PACKAGE__->deny_access_unless('/alliances/resources',[qw/alliances_resources/]);
93 __PACKAGE__->deny_access_unless('/graphs/alliancevsintel',[qw/graphs_intel/]);
94 __PACKAGE__->deny_access_unless('/graphs/avgalliancevsintel',[qw/graphs_intel/]);
95 __PACKAGE__->deny_access_unless('/members',[qw/members/]);
96 __PACKAGE__->deny_access_unless('/members/defenders',[qw/members_defenders/]);
97 __PACKAGE__->deny_access_unless('/covop',[qw/covop/]);
98 __PACKAGE__->deny_access_unless('/calls',[qw/calls_edit/]);
99 __PACKAGE__->allow_access_if('/calls/index',[qw/calls_list/]);
100 __PACKAGE__->allow_access_if('/calls/list',[qw/calls_list/]);
101 __PACKAGE__->allow_access_if('/calls/edit',[qw/members/]);
102 __PACKAGE__->allow_access_if('/calls/findCall',[qw/members/]);
103 __PACKAGE__->deny_access_unless('/raids',[qw/raids_edit/]);
104 __PACKAGE__->allow_access_if('/raids/index',[qw//]);
105 __PACKAGE__->allow_access_if('/raids/view',[qw//]);
106 __PACKAGE__->allow_access_if('/raids/targetcalc',[qw//]);
107 __PACKAGE__->allow_access_if('/raids/fleetcalc',[qw//]);
108 __PACKAGE__->allow_access_if('/raids/calcredir',[qw//]);
109 __PACKAGE__->allow_access_if('/raids/findRaid',[qw//]);
110 __PACKAGE__->allow_access_if('/raids/log',[qw//]);
111 __PACKAGE__->deny_access_unless('/intel',[qw/intel/]);
112 __PACKAGE__->deny_access_unless('/intel/members',[qw/intel_members/]);
113 __PACKAGE__->deny_access_unless('/intel/member',[qw/intel_member/]);
114 __PACKAGE__->deny_access_unless('/intel/naps',[qw/intel_naps/]);
115 __PACKAGE__->deny_access_unless('/jsrpc',[qw//]);
116 __PACKAGE__->allow_access_if('/jsrpc/end',1);
117 __PACKAGE__->deny_access_unless('/forum/allUnread',[qw//]);
118 __PACKAGE__->deny_access_unless('/forum/privmsg',[qw//]);
119 __PACKAGE__->deny_access_unless('/settings',[qw//]);
120 __PACKAGE__->deny_access_unless('/textexport/alliance',[qw/textexport_alliance/]);
121
122 =head1 NAME
123
124 NDWeb - Catalyst based application
125
126 =head1 SYNOPSIS
127
128     script/ndweb_server.pl
129
130 =head1 DESCRIPTION
131
132 [enter your description here]
133
134 =head1 SEE ALSO
135
136 L<NDWeb::Controller::Root>, L<Catalyst>
137
138 =head1 AUTHOR
139
140 Catalyst developer
141
142 =head1 LICENSE
143
144 This library is free software. You can redistribute it and/or modify
145 it under the same terms as Perl itself.
146
147 =cut
148
149 1;