per-agent configuration of batch processors, #71837
[freeside.git] / torrus / perllib / Torrus / Apache2Handler.pm
1 #  Copyright (C) 2010  Stanislav Sinyagin
2 #
3 #  This program is free software; you can redistribute it and/or modify
4 #  it under the terms of the GNU General Public License as published by
5 #  the Free Software Foundation; either version 2 of the License, or
6 #  (at your option) any later version.
7 #
8 #  This program is distributed in the hope that it will be useful,
9 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 #  GNU General Public License for more details.
12 #
13 #  You should have received a copy of the GNU General Public License
14 #  along with this program; if not, write to the Free Software
15 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
16
17 # $Id: Apache2Handler.pm,v 1.1 2010-12-27 00:03:43 ivan Exp $
18 # Stanislav Sinyagin <ssinyagin@yahoo.com>
19
20 # Apache mod_perl handler. See http://perl.apache.org
21
22 package Torrus::Apache2Handler;
23
24 use strict;
25 use Apache2::Const -compile => qw(:common);
26
27 use Torrus::CGI;
28
29 sub handler : method
30 {
31     my($class, $r) = @_;
32
33     # Before torrus-1.0.9, Apache2 handler was designed
34     # for "SetHandler modperl". Now it should be used with perl-script
35     # handler only
36     
37     if( $r->handler() ne 'perl-script')
38     {
39         $r->content_type('text/plain');
40         $r->print("Apache configuration must be changed.\n");
41         $r->print("The current version ot Torrus is incompatible with ");
42         $r->print("\"SetHandler modperl\" statement.\n");
43         $r->print("Change it to:\n");
44         $r->print("  SetHandler perl-script\n");
45         return Apache2::Const::OK;
46     }
47     
48     my $q = CGI->new($r);
49     Torrus::CGI->process( $q );
50
51     return Apache2::Const::OK;    
52 }
53
54
55
56 1;
57
58 # Local Variables:
59 # mode: perl
60 # indent-tabs-mode: nil
61 # perl-indent-level: 4
62 # End: