Package opengrok.auth.plugin
Class AbstractLdapPlugin
java.lang.Object
opengrok.auth.plugin.AbstractLdapPlugin
- All Implemented Interfaces:
IAuthorizationPlugin
- Direct Known Subclasses:
LdapAttrPlugin
,LdapFilterPlugin
,LdapUserPlugin
Abstract class for all plug-ins working with LDAP. Takes care of
- controlling the established session
- controlling if the session belongs to the user
The intended methods to implement are the
checkEntity(HttpServletRequest, Project)
and
checkEntity(HttpServletRequest, Group)
.
- Author:
- Krystof Tulinger
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract boolean
checkEntity
(jakarta.servlet.http.HttpServletRequest request, Group group) Decide if the group should be allowed for this request.abstract boolean
checkEntity
(jakarta.servlet.http.HttpServletRequest request, Project project) Decide if the project should be allowed for this request.abstract void
fillSession
(jakarta.servlet.http.HttpServletRequest req, User user) Fill the session with some information related to the subclass.Return the configuration object.protected Configuration
getConfiguration
(String configurationPath) Return the configuration for the given path.Return the LDAP provider.boolean
This method should decide if given request should be allowed to view or display the group.boolean
This method should decide if given request should be allowed to view or display the project.protected boolean
isSameUser
(String sessionUsername, String authUser) Check if the session user corresponds to the authenticated user.void
Loads the configuration into memory.protected boolean
sessionExists
(jakarta.servlet.http.HttpServletRequest req) Check if the session exists and contains all necessary fields required by this plug-in.protected void
setSessionEstablished
(jakarta.servlet.http.HttpServletRequest req, Boolean value) Set session established flag into the session.protected void
setSessionUsername
(jakarta.servlet.http.HttpServletRequest req, String value) Set session username for the user.void
unload()
Closes the LDAP connections.protected void
updateSession
(jakarta.servlet.http.HttpServletRequest req, String username, boolean established) Fill the session with new values.
-
Field Details
-
nextId
protected static long nextIdThis is used to ensure that every instance of this plug-in has its own unique name for its session parameters. -
CONFIGURATION_PARAM
- See Also:
-
sessionUsername
-
sessionEstablished
-
-
Constructor Details
-
AbstractLdapPlugin
protected AbstractLdapPlugin()
-
-
Method Details
-
fillSession
Fill the session with some information related to the subclass.- Parameters:
req
- the current requestuser
- user decoded from the headers
-
checkEntity
public abstract boolean checkEntity(jakarta.servlet.http.HttpServletRequest request, Project project) Decide if the project should be allowed for this request.- Parameters:
request
- the requestproject
- the project- Returns:
- true if yes; false otherwise
-
checkEntity
Decide if the group should be allowed for this request.- Parameters:
request
- the requestgroup
- the group- Returns:
- true if yes; false otherwise
-
load
Loads the configuration into memory.- Specified by:
load
in interfaceIAuthorizationPlugin
- Parameters:
parameters
- parameters specified in the configuration
-
getConfiguration
Return the configuration for the given path. If the configuration is already loaded, use that one. Otherwise try to load the file into the configuration.- Parameters:
configurationPath
- the path to the file with the configuration- Returns:
- the object (new or from cache)
- Throws:
IOException
- when any IO error occurs
-
unload
public void unload()Closes the LDAP connections.- Specified by:
unload
in interfaceIAuthorizationPlugin
-
getConfiguration
Return the configuration object.- Returns:
- the configuration
-
getLdapProvider
Return the LDAP provider.- Returns:
- the LDAP provider
-
isSameUser
Check if the session user corresponds to the authenticated user.- Parameters:
sessionUsername
- user from the sessionauthUser
- user from the request- Returns:
- true if it does; false otherwise
-
sessionExists
protected boolean sessionExists(jakarta.servlet.http.HttpServletRequest req) Check if the session exists and contains all necessary fields required by this plug-in.- Parameters:
req
- the HTTP request- Returns:
- true if it does; false otherwise
-
updateSession
protected void updateSession(jakarta.servlet.http.HttpServletRequest req, String username, boolean established) Fill the session with new values.- Parameters:
req
- the requestusername
- new usernameestablished
- new value for established
-
setSessionEstablished
Set session established flag into the session.- Parameters:
req
- request containing the sessionvalue
- the value
-
setSessionUsername
Set session username for the user.- Parameters:
req
- request containing the sessionvalue
- the value
-
isAllowed
Description copied from interface:IAuthorizationPlugin
This method should decide if given request should be allowed to view or display the project. It is up to the implementor if the standard request attributes like session, user principal and others are used or not.- Specified by:
isAllowed
in interfaceIAuthorizationPlugin
- Parameters:
request
- servlet requestproject
- project to test- Returns:
- true if request is allowed to see this project
-
isAllowed
Description copied from interface:IAuthorizationPlugin
This method should decide if given request should be allowed to view or display the group. It is up to the implementor if the standard request attributes like session, user principal and others are used or not. VERY IMPORTANT NOTE: Allowing particular group does not allow its projects, repositories. You must include those in the isAllowed method for project if you want to display content of the group.- Specified by:
isAllowed
in interfaceIAuthorizationPlugin
- Parameters:
request
- servlet requestgroup
- group to test- Returns:
- true if request is allowed to see this group of projects
-