lemonldap-ng/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Facebook.pm
Christophe Maudoux c0db322ef0 Perl critic
2021-04-01 23:07:58 +02:00

68 lines
1.2 KiB
Perl

package Lemonldap::NG::Portal::UserDB::Facebook;
use strict;
use Mouse;
use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_MISSINGREQATTR);
extends 'Lemonldap::NG::Common::Module';
our $VERSION = '2.0.12';
has vars => (
is => 'rw',
lazy => 1,
builder => sub {
return {
%{ $_[0]->conf->{exportedVars} },
%{ $_[0]->conf->{facebookExportedVars} }
};
}
);
# INITIALIZATION
sub init {
return 1;
}
# RUNNING METHODS
sub getUser {
# All is done by Auth::Facebook
return PE_OK;
}
sub findUser {
# Nothing to do here
return PE_OK;
}
sub setSessionInfo {
my ( $self, $req ) = @_;
foreach my $k ( keys %{ $self->vars } ) {
my $v = $self->{vars}->{$k};
my $attr = $k;
my $required = ( $attr =~ s/^!// ) ? 1 : 0;
$req->{sessionInfo}->{$attr} = $req->data->{_facebookData}->{$v};
if ( $required and not( defined $req->{sessionInfo}->{$attr} ) ) {
$self->logger->warn(
"Required parameter $v is not provided by Facebook server, aborted"
);
$req->mustRedirect(0);
return PE_MISSINGREQATTR;
}
}
return PE_OK;
}
sub setGroups {
return PE_OK;
}
1;