1 package PciIds::Html::Handler;
5 use PciIds::Html::Tables;
6 use PciIds::Html::Util;
7 use PciIds::Html::List;
8 use PciIds::Html::Users;
9 use PciIds::Html::Debug;
10 use PciIds::Html::Changes;
11 use PciIds::Html::Admin;
12 use PciIds::Html::Notifications;
13 use PciIds::Notifications;
14 use Apache2::Const qw(:common :http);
17 my $dbh = connectDb();
18 my $tables = PciIds::Html::Tables::new( $dbh );
22 'list' => \&PciIds::Html::List::list,#List items
23 '' => \&PciIds::Html::List::list,
25 'newitem' => \&PciIds::Html::Changes::newItemForm,
26 'newcomment' => \&PciIds::Html::Changes::newCommentForm,
28 'register' => \&PciIds::Html::Users::registerForm,
29 'register-confirm' => \&PciIds::Html::Users::confirmForm,
31 'login' => \&PciIds::Html::Users::loginForm,
32 'logout' => \&PciIds::Html::Users::logout,
33 'respass' => \&PciIds::Html::Users::resetPasswdForm,
34 'respass-confirm' => \&PciIds::Html::Users::resetPasswdConfirmForm,
36 'profile' => \&PciIds::Html::Users::profileForm,
38 'admin' => \&PciIds::Html::Admin::adminForm,
40 'test' => \&PciIds::Html::Debug::test,
42 'notifications' => \&PciIds::Html::Notifications::notifForm
45 'newitem' => \&PciIds::Html::Changes::newItemSubmit,
46 'newcomment' => \&PciIds::Html::Changes::newCommentSubmit,
47 'register' => \&PciIds::Html::Users::registerSubmit,
48 'register-confirm' => \&PciIds::Html::Users::confirmSubmit,
49 'login' => \&PciIds::Html::Users::loginSubmit,
50 'respass' => \&PciIds::Html::Users::resetPasswdFormSubmit,
51 'respass-confirm' => \&PciIds::Html::Users::resetPasswdConfirmFormSubmit,
52 'profile' => \&PciIds::Html::Users::profileFormSubmit,
53 'admin' => \&PciIds::Html::Admin::submitAdminForm,
54 'notifications' => \&PciIds::Html::Notifications::notifFormSubmit
59 my( $req, $hasSSL ) = @_;
60 return HTTPRedirect( $req, $req->uri()."index.html" ) if( $req->uri() eq '/' );
61 return DECLINED if( $req->uri() =~ /^\/((static)\/|robots.txt|index.html)/ );
62 my $args = parseArgs( $req->args() );
63 my $action = $args->{'action'};
64 $action = '' unless( defined $action );
65 my $method = $handlers{$req->method()};
66 return HTTP_METHOD_NOT_ALLOWED unless( defined $method );#Can't handle this method
67 my $sub = $method->{$action};
68 return HTTP_BAD_REQUEST unless( defined $sub );#I do not know this action for given method
69 my $auth = checkLogin( $req, $tables );#Check if logged in
70 $auth->{'ssl'} = $hasSSL;
71 my $result = &{$sub}( $req, $args, $tables, $auth );#Just do the right thing