lemonldap-ng/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/UTOTP.pm

98 lines
2.4 KiB
Perl
Raw Normal View History

2018-03-17 13:34:42 +01:00
package Lemonldap::NG::Portal::2F::UTOTP;
use strict;
use Mouse;
use Lemonldap::NG::Portal::Main::Constants qw(
);
our $VERSION = '2.0.0';
2018-03-18 09:15:23 +01:00
extends 'Lemonldap::NG::Portal::Main::SecondFactor';
2018-03-17 13:34:42 +01:00
# INITIALIZATION
2018-03-18 09:15:23 +01:00
has prefix => ( is => 'ro', default => 'utotp' );
2018-03-17 13:34:42 +01:00
2018-03-18 09:15:23 +01:00
has logo => ( is => 'rw', default => 'utotp.png' );
2018-03-17 13:34:42 +01:00
has u2f => ( is => 'rw' );
has totp => ( is => 'rw' );
use Lemonldap::NG::Portal::Main::Constants qw(
PE_FORMEMPTY
PE_OK
PE_SENDRESPONSE
);
sub init {
my ($self) = @_;
2018-03-18 22:32:42 +01:00
if (
(
$self->conf->{totp2fSelfRegistration}
or $self->conf->{u2fSelfRegistration}
)
and $self->conf->{utotp2fActivation} eq '1'
)
2018-03-18 09:15:23 +01:00
{
$self->conf->{utotp2fActivation} =
'$_totp2fSecret or $_u2fKeyHandle and $_u2fUserKey';
}
2018-03-17 13:34:42 +01:00
foreach (qw(U2F TOTP)) {
2018-03-18 20:52:50 +01:00
2018-03-18 09:15:23 +01:00
# Arg "noRoute" is set for sub 2F modules to avoid enabling direct
# REST routes
unless ( $self->{ lc($_) } =
2018-03-18 20:52:50 +01:00
$self->p->loadModule( "::2F::$_", undef, noRoute => 1 )
and $self->{ lc($_) }->init )
2018-03-18 09:15:23 +01:00
{
2018-03-17 13:34:42 +01:00
$self->error("Unable to load ::2F::$_");
return 0;
}
}
2018-03-18 09:15:23 +01:00
return $self->SUPER::init();
2018-03-17 13:34:42 +01:00
}
# RUNNING METHODS
sub run {
my ( $self, $req, $token ) = @_;
$self->logger->debug('Generate TOTP form');
2018-03-18 20:52:50 +01:00
my %tplPrms = ( SKIN => $self->conf->{portalSkin}, TOKEN => $token );
if ( my $res = $self->u2f->loadUser( $req, $req->sessionInfo ) ) {
if ( $res > 0 ) {
$self->logger->debug('U2F key is registered');
my $challenge = $req->datas->{crypter}->authenticationChallenge;
$tplPrms{CHALLENGE} = $challenge;
2018-03-17 13:34:42 +01:00
}
2018-03-18 20:52:50 +01:00
}
# Prepare form
my $tmp = $self->p->sendHtml( $req, 'utotp2fcheck', params => \%tplPrms, );
$self->logger->debug("Prepare U2F-or-TOTP 2F verification");
2018-03-17 13:34:42 +01:00
$req->response($tmp);
return PE_SENDRESPONSE;
}
sub verify {
my ( $self, $req, $session ) = @_;
my ($r1);
if ( $req->param('signature') ) {
2018-03-18 09:15:23 +01:00
$self->logger->debug('UTOTP: U2F response detected');
2018-03-17 13:34:42 +01:00
my $r1 = $self->u2f->verify( $req, $session );
if ( $r1 == PE_OK ) {
return PE_OK;
}
}
if ( $req->param('code') ) {
2018-03-18 09:15:23 +01:00
$self->logger->debug('UTOTP: TOTP response detected');
2018-03-17 13:34:42 +01:00
return $self->totp->verify( $req, $session );
}
return ( $r1 ? $r1 : PE_FORMEMPTY );
}
1;