Leosac  0.8.0
Open Source Access Control
Leosac::Module::WebSockAPI::GroupSearch Class Reference

Search groups by name. More...

#include <GroupSearch.hpp>

+ Inheritance diagram for Leosac::Module::WebSockAPI::GroupSearch:
+ Collaboration diagram for Leosac::Module::WebSockAPI::GroupSearch:

Public Member Functions

 GroupSearch (RequestContext ctx)
 
- Public Member Functions inherited from Leosac::Module::WebSockAPI::MethodHandler
 MethodHandler (RequestContext ctx)
 
virtual ~MethodHandler ()=default
 
json process (const ClientMessage &msg)
 The public process() method. More...
 
UserSecurityContextsecurity_context ()
 
ExecutionContext exec_context ()
 Returns a representation of the execution context of this request. More...
 

Static Public Member Functions

static MethodHandlerUPtr create (RequestContext)
 
- Static Public Member Functions inherited from Leosac::Module::WebSockAPI::MethodHandler
static MethodHandlerUPtr create (RequestContext)
 An example method that should be implemented in all subclasses. More...
 

Protected Member Functions

std::vector< ActionActionParamrequired_permission (const json &req) const override
 Return a list of "Action" / "ActionParam" that must pass before the request is processed. More...
 

Private Member Functions

virtual json process_impl (const json &req) override
 The API method implementation. More...
 

Additional Inherited Members

- Public Types inherited from Leosac::Module::WebSockAPI::MethodHandler
using Factory = MethodHandlerUPtr(*)(RequestContext)
 
- Protected Attributes inherited from Leosac::Module::WebSockAPI::MethodHandler
RequestContext ctx_
 

Detailed Description

Search groups by name.

This API call is useful to provide type-ahead/autocomplete feature in the client.

The search is case insensitive.

Request:

  • 'partial_name': A part of the name we are looking for.

Response: A list of {id,name} for groups that match the partial name. [ {id: $GROUP_ID, name: $GROUP_NAME}, {...} ]

Definition at line 52 of file GroupSearch.hpp.

Constructor & Destructor Documentation

◆ GroupSearch()

GroupSearch::GroupSearch ( RequestContext  ctx)
explicit

Definition at line 32 of file GroupSearch.cpp.

Member Function Documentation

◆ create()

MethodHandlerUPtr GroupSearch::create ( RequestContext  ctx)
static

Definition at line 37 of file GroupSearch.cpp.

◆ process_impl()

json GroupSearch::process_impl ( const json req)
overrideprivatevirtual

The API method implementation.

Returns
A json object that will be assigned to the content key in the JSON message sent to the client.

Implements Leosac::Module::WebSockAPI::MethodHandler.

Definition at line 52 of file GroupSearch.cpp.

◆ required_permission()

std::vector< ActionActionParam > GroupSearch::required_permission ( const json req) const
overrideprotectedvirtual

Return a list of "Action" / "ActionParam" that must pass before the request is processed.

Implements Leosac::Module::WebSockAPI::MethodHandler.

Definition at line 94 of file GroupSearch.cpp.


The documentation for this class was generated from the following files: