2014-05-15 16:17:21 +00:00
|
|
|
package Codepot::AuthenHandler;
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
2019-02-01 15:23:22 +00:00
|
|
|
use Apache2::Access ();
|
|
|
|
use Apache2::RequestUtil ();
|
|
|
|
use Apache2::RequestRec ();
|
|
|
|
use Apache2::Log;
|
2014-05-15 16:17:21 +00:00
|
|
|
|
2019-02-01 15:23:22 +00:00
|
|
|
use Apache2::Const -compile => qw(OK DECLINED FORBIDDEN HTTP_UNAUTHORIZED HTTP_INTERNAL_SERVER_ERROR AUTH_REQUIRED);
|
|
|
|
|
|
|
|
use Data::Dumper;
|
2014-05-15 16:17:21 +00:00
|
|
|
sub handler: method
|
|
|
|
{
|
2019-02-01 15:23:22 +00:00
|
|
|
my ($class, $r) = @_;
|
2015-04-28 06:26:40 +00:00
|
|
|
return Apache2::Const::OK;
|
2014-05-15 16:17:21 +00:00
|
|
|
}
|
|
|
|
1;
|