logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Lemonldap::NG::Handler::PSGI::Router - Base library for protected REST APIs of Lemonldap::NG.

Authors

       LemonLDAP::NG team <http://lemonldap-ng.org/team>

Bug Report

       Use       OW2       system       to       report       bug       or       ask        for        features:
       <https://gitlab.ow2.org/lemonldap-ng/lemonldap-ng/issues>

Description

       This package provides base class for Lemonldap::NG protected REST API.

Download

       Lemonldap::NG is available at <https://lemonldap-ng.org/download>

Methods

       See Lemonldap::NG::Common::PSGI for logging methods, content sending,...

   Accessors
       See Lemonldap::NG::Common::PSGI::Router for inherited accessors.

       protection

       Level of protection. It can be one of:

       'none': no protection
       'authenticate': all authenticated users are granted
       'manager': access is granted following Lemonldap::NG rules

   Runningmethodsuser

       Returns user session data. If empty (no protection), returns:

         { _whatToTrace => 'anonymous' }

       But if page is protected by server (Auth-Basic,...), it will return:

         { _whatToTrace => $REMOTE_USER }

       UserId

       Returns user()->{'_whatToTrace'}.

       group

       Returns a list of groups to which user belongs.

Name

       Lemonldap::NG::Handler::PSGI::Router - Base library for protected REST APIs of Lemonldap::NG.

See Also

       <http://lemonldap-ng.org/>,      Lemonldap::NG::Portal,      Lemonldap::NG::Handler,     Plack,     PSGI,
       Lemonldap::NG::Common::PSGI::Router, Lemonldap::NG::Common::PSGI::Request, HTML::Template,

Synopsis

         package My::PSGI;

         use base Lemonldap::NG::Handler::PSGI::Router;

         sub init {
           my ($self,$args) = @_;
           $self->protection('manager');
           # See Lemonldap::NG::Common::PSGI::Router for more

           # Declare REST routes (could be HTML templates or methods)
           $self->addRoute ( 'index.html', undef, ['GET'] )
                ->addRoute ( books => { ':book' => 'booksMethod' }, ['GET', 'POST'] );

           # Default route (ie: PATH_INFO == '/')
           $self->defaultRoute('index.html');

           # Return a boolean. If false, then error message has to be stored in
           # $self->error
           return 1;
         }

         sub booksMethod {
           my ( $self, $req, @otherPathInfo ) = @_;

           # Will be called only if authorized
           my $userId = $self->userId;
           my $book = $req->params('book');
           my $method = $req->method;
           ...
           $self->sendJSONresponse(...);
         }

       This package could then be called as a CGI, using FastCGI,...

         #!/usr/bin/env perl

         use My::PSGI;
         use Plack::Handler::FCGI; # or Plack::Handler::CGI

         Plack::Handler::FCGI->new->run( My::PSGI->run() );

See Also