lemonldap-ng/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Plugins.pm

73 lines
2.2 KiB
Perl
Raw Normal View History

2016-03-29 23:09:55 +02:00
# This module loads known enabled plugins. To add custom modules, just add them
# into "plugins" list in lemonldap-ng.ini, section "portal"
package Lemonldap::NG::Portal::Main::Plugins;
our $VERSION = '2.0.0';
2016-04-07 23:31:56 +02:00
package Lemonldap::NG::Portal::Main;
use strict;
2017-02-04 08:55:44 +01:00
use Mouse;
# Plugins enabled by a simple boolean value (ordered list)
#
# Developers: U2F must be loaded before Notifications
our @pList = (
portalDisplayResetPassword => '::Plugins::MailReset',
portalStatus => '::Plugins::Status',
grantSessionRule => '::Plugins::GrantSession',
cda => '::Plugins::CDA',
portalForceAuthn => '::Plugins::ForceAuth',
u2fActivation => '::Plugins::U2F',
u2fSelfRegistration => '::Register::U2F',
notification => '::Plugins::Notifications',
);
2016-04-07 23:31:56 +02:00
2016-03-29 23:09:55 +02:00
##@method list enabledPlugins
#
#@return list of enabled plugins
sub enabledPlugins {
my ($self) = @_;
my @res;
2016-06-12 18:52:37 +02:00
# Search for Issuer* modules enabled
2016-06-10 13:03:13 +02:00
foreach my $key (qw(SAML OpenID CAS OpenIDConnect Get)) {
2016-03-29 23:09:55 +02:00
if ( $self->conf->{"issuerDB${key}Activation"} ) {
2017-02-15 07:41:50 +01:00
$self->logger->debug("Issuer${key} enabled");
2016-06-12 18:52:37 +02:00
push @res, "::Issuer::$key";
2016-03-29 23:09:55 +02:00
}
}
2017-02-04 08:55:44 +01:00
# Load static plugin list
for ( my $i = 0 ; $i < @pList ; $i += 2 ) {
push @res, $pList[ $i + 1 ] if ( $self->conf->{ $pList[$i] } );
}
2017-01-29 10:11:27 +01:00
2016-03-29 23:09:55 +02:00
# Check if SOAP is enabled
push @res, '::Plugins::SOAPServer'
if ( $self->conf->{soapSessionServer}
or $self->conf->{soapConfigServer} );
2017-01-07 21:37:07 +01:00
2017-01-09 07:11:28 +01:00
# Add REST (check is done by it)
push @res, '::Plugins::RESTServer';
2016-03-29 23:09:55 +02:00
2016-07-07 23:55:23 +02:00
if ( my $p = $self->conf->{passwordDB} ) {
push @res, "::Password::$p" if ( $p ne 'Null' );
}
2016-03-31 22:08:43 +02:00
2017-02-04 08:55:44 +01:00
# Check if register is enabled
push @res, '::Plugins::Register'
if ( $self->conf->{registerDB} and $self->conf->{registerDB} ne 'Null' );
2017-02-02 22:48:32 +01:00
2016-03-29 23:09:55 +02:00
# Check if custom plugins are required
2017-01-29 10:11:27 +01:00
# TODO: change this name
2017-01-30 21:21:58 +01:00
if ( $self->conf->{customPlugins} ) {
2017-02-15 07:41:50 +01:00
$self->logger->debug(
'Custom plugins: ' . $self->conf->{customPlugins} );
2017-01-30 21:21:58 +01:00
push @res, grep ( /\w/, split( /,\s*/, $self->conf->{customPlugins} ) );
2016-03-29 23:09:55 +02:00
}
2016-04-03 18:51:23 +02:00
return @res;
2016-03-29 23:09:55 +02:00
}
1;