lemonldap-ng/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Api.pm

68 lines
1.6 KiB
Perl
Raw Normal View History

2019-11-08 18:31:50 +01:00
# This module implements all the methods that responds to '/api/*' requests
package Lemonldap::NG::Manager::Api;
use 5.10.0;
use utf8;
use Mouse;
extends 'Lemonldap::NG::Common::Conf::RESTServer';
use Lemonldap::NG::Manager::Api::2F;
use Lemonldap::NG::Manager::Api::Providers;
our $VERSION = '2.0.7';
#############################
# I. INITIALIZATION METHODS #
#############################
use constant defaultRoute => 'api.html';
sub addRoutes {
my ( $self, $conf ) = @_;
# HTML template
$self->addRoute( 'api.html', undef, ['GET'] )
->addRoute(
2019-12-04 17:50:41 +01:00
api => {
v1 => {
hello => "helloworld",
},
},
['GET']
)
->addRoute(
v1 => {
providers => {
oidc => {
rp => {
findByConfKey => {
':uPattern' => 'findOidcRpByConfKey'
},
findByClientId => {
':uClientId' => 'findOidcRpByClientId'
},
':confKey' => 'getOidcRpByConfKey'
},
},
2019-12-05 12:40:03 +01:00
saml => {
sp => {
findByConfKey => {
':uPattern' => 'findSamlSpByConfKey'
},
findByEntityId => {
':uEntityId' => 'findSamlSpByEntityId'
},
':confKey' => 'getSamlSpByConfKey'
},
2019-12-05 12:40:03 +01:00
},
2019-12-04 17:50:41 +01:00
},
},
['GET']
2019-11-08 18:31:50 +01:00
);
2019-12-04 17:50:41 +01:00
}
2019-11-08 18:31:50 +01:00
1;