com.unboundid.directory.sdk.proxy.scripting
Class ScriptedProxyTransformation

java.lang.Object
  extended by com.unboundid.directory.sdk.proxy.scripting.ScriptedProxyTransformation
All Implemented Interfaces:
Configurable, Reconfigurable<ProxyTransformationConfig>

@Extensible
@DirectoryProxyServerExtension(appliesToLocalContent=false,
                               appliesToRemoteContent=true)
@ThreadSafety(level=INTERFACE_THREADSAFE)
public abstract class ScriptedProxyTransformation
extends java.lang.Object
implements Reconfigurable<ProxyTransformationConfig>

This class defines an API that must be implemented by scripted extensions which are used to transform requests and/or responses as they pass through the Directory Proxy Server. They may be used to alter the contents of any add, bind, compare, delete, modify, modify DN, or search request or result passing through the Directory Proxy Server, or they may cause a result to be returned to the client without it being forwarded to a backend server. In addition, transformations may be applied to search result entries and references to be returned to the client, or those entries and references may be silently dropped so that they are not returned.

Configuring Groovy-Scripted Proxy Transformations

In order to configure a scripted proxy transformation based on this API and written in the Groovy scripting language, use a command like:
      dsconfig create-proxy-transformation \
           --transformation-name "{transformation-name}" \
           --type groovy-scripted \
           --set enabled:true \
           --set "script-class:{class-name}" \
           --set "script-argument:{name=value}"
 
where "{transformation-name}" is the name to use for the proxy transformation instance, "{class-name}" is the fully-qualified name of the Groovy class written using this API, and "{name=value}" represents name-value pairs for any arguments to provide to the proxy transformation. If multiple arguments should be provided to the proxy transformation, then the "--set script-argument:{name=value}" option should be provided multiple times.

See Also:
ProxyTransformation

Constructor Summary
ScriptedProxyTransformation()
          Creates a new instance of this proxy transformation.
 
Method Summary
 com.unboundid.ldap.sdk.ResultCode applyConfiguration(ProxyTransformationConfig config, com.unboundid.util.args.ArgumentParser parser, java.util.List<java.lang.String> adminActionsRequired, java.util.List<java.lang.String> messages)
          Attempts to apply the configuration from the provided argument parser to this extension.
 void defineConfigArguments(com.unboundid.util.args.ArgumentParser parser)
          Updates the provided argument parser to define any configuration arguments which may be used by this extension.
 void finalizeProxyTransformation()
          Performs any cleanup which may be necessary when this proxy transformation is to be taken out of service.
 void initializeProxyTransformation(ProxyServerContext serverContext, ProxyTransformationConfig config, com.unboundid.util.args.ArgumentParser parser)
          Initializes this proxy transformation.
 boolean isConfigurationAcceptable(ProxyTransformationConfig config, com.unboundid.util.args.ArgumentParser parser, java.util.List<java.lang.String> unacceptableReasons)
          Indicates whether the configuration represented by the provided argument parser is acceptable for use by this extension.
 com.unboundid.ldap.sdk.AddRequest transformAddRequest(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.AddRequest addRequest)
          Applies any necessary transformation to the provided add request.
 com.unboundid.ldap.sdk.LDAPResult transformAddResult(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlyAddRequest addRequest, com.unboundid.ldap.sdk.LDAPResult addResult)
          Applies any necessary transformation to the provided add result.
 com.unboundid.ldap.sdk.BindRequest transformBindRequest(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.BindRequest bindRequest)
          Applies any necessary transformation to the provided bind request.
 com.unboundid.ldap.sdk.BindResult transformBindResult(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.BindRequest bindRequest, com.unboundid.ldap.sdk.BindResult bindResult)
          Applies any necessary transformation to the provided bind request.
 com.unboundid.ldap.sdk.CompareRequest transformCompareRequest(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.CompareRequest compareRequest)
          Applies any necessary transformation to the provided compare request.
 com.unboundid.ldap.sdk.LDAPResult transformCompareResult(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlyCompareRequest compareRequest, com.unboundid.ldap.sdk.LDAPResult compareResult)
          Applies any necessary transformation to the provided compare result.
 com.unboundid.ldap.sdk.DeleteRequest transformDeleteRequest(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.DeleteRequest deleteRequest)
          Applies any necessary transformation to the provided delete request.
 com.unboundid.ldap.sdk.LDAPResult transformDeleteResult(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlyDeleteRequest deleteRequest, com.unboundid.ldap.sdk.LDAPResult deleteResult)
          Applies any necessary transformation to the provided delete result.
 com.unboundid.ldap.sdk.ModifyDNRequest transformModifyDNRequest(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ModifyDNRequest modifyDNRequest)
          Applies any necessary transformation to the provided modify DN request.
 com.unboundid.ldap.sdk.LDAPResult transformModifyDNResult(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlyModifyDNRequest modifyDNRequest, com.unboundid.ldap.sdk.LDAPResult modifyDNResult)
          Applies any necessary transformation to the provided modify DN result.
 com.unboundid.ldap.sdk.ModifyRequest transformModifyRequest(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ModifyRequest modifyRequest)
          Applies any necessary transformation to the provided modify request.
 com.unboundid.ldap.sdk.LDAPResult transformModifyResult(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlyModifyRequest modifyRequest, com.unboundid.ldap.sdk.LDAPResult modifyResult)
          Applies any necessary transformation to the provided modify result.
 com.unboundid.ldap.sdk.SearchRequest transformSearchRequest(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.SearchRequest searchRequest)
          Applies any necessary transformation to the provided search request.
 com.unboundid.ldap.sdk.SearchResult transformSearchResult(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlySearchRequest searchRequest, com.unboundid.ldap.sdk.SearchResult searchResult, SearchResultProvider resultProvider)
          Applies any necessary transformation to the provided search result.
 com.unboundid.ldap.sdk.SearchResultEntry transformSearchResultEntry(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlySearchRequest searchRequest, com.unboundid.ldap.sdk.SearchResultEntry searchEntry)
          Applies any necessary transformation to the provided search result entry.
 com.unboundid.ldap.sdk.SearchResultReference transformSearchResultReference(ProxyOperationContext operationContext, com.unboundid.ldap.sdk.ReadOnlySearchRequest searchRequest, com.unboundid.ldap.sdk.SearchResultReference searchReference)
          Applies any necessary transformation to the provided search result reference.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ScriptedProxyTransformation

public ScriptedProxyTransformation()
Creates a new instance of this proxy transformation. All proxy transformation implementations must include a default constructor, but any initialization should generally be done in the initializeProxyTransformation method.

Method Detail

defineConfigArguments

public void defineConfigArguments(com.unboundid.util.args.ArgumentParser parser)
                           throws com.unboundid.util.args.ArgumentException
Updates the provided argument parser to define any configuration arguments which may be used by this extension. The argument parser may also be updated to define relationships between arguments (e.g., to specify required, exclusive, or dependent argument sets).

Specified by:
defineConfigArguments in interface Configurable
Parameters:
parser - The argument parser to be updated with the configuration arguments which may be used by this extension.
Throws:
com.unboundid.util.args.ArgumentException - If a problem is encountered while updating the provided argument parser.

initializeProxyTransformation

public void initializeProxyTransformation(ProxyServerContext serverContext,
                                          ProxyTransformationConfig config,
                                          com.unboundid.util.args.ArgumentParser parser)
                                   throws com.unboundid.ldap.sdk.LDAPException
Initializes this proxy transformation.

Parameters:
serverContext - A handle to the server context for the server in which this extension is running.
config - The general configuration for this proxy transformation.
parser - The argument parser which has been initialized from the configuration for this proxy transformation.
Throws:
com.unboundid.ldap.sdk.LDAPException - If a problem occurs while initializing this proxy transformation.

finalizeProxyTransformation

public void finalizeProxyTransformation()
Performs any cleanup which may be necessary when this proxy transformation is to be taken out of service.


isConfigurationAcceptable

public boolean isConfigurationAcceptable(ProxyTransformationConfig config,
                                         com.unboundid.util.args.ArgumentParser parser,
                                         java.util.List<java.lang.String> unacceptableReasons)
Indicates whether the configuration represented by the provided argument parser is acceptable for use by this extension. The parser will have been used to parse any configuration available for this extension, and any automatic validation will have been performed. This method may be used to perform any more complex validation which cannot be performed automatically by the argument parser.

Specified by:
isConfigurationAcceptable in interface Reconfigurable<ProxyTransformationConfig>
Parameters:
config - The general configuration for this extension.
parser - The argument parser that has been used to parse the proposed configuration for this extension.
unacceptableReasons - A list to which messages may be added to provide additional information about why the provided configuration is not acceptable.
Returns:
true if the configuration in the provided argument parser appears to be acceptable, or false if not.

applyConfiguration

public com.unboundid.ldap.sdk.ResultCode applyConfiguration(ProxyTransformationConfig config,
                                                            com.unboundid.util.args.ArgumentParser parser,
                                                            java.util.List<java.lang.String> adminActionsRequired,
                                                            java.util.List<java.lang.String> messages)
Attempts to apply the configuration from the provided argument parser to this extension.

Specified by:
applyConfiguration in interface Reconfigurable<ProxyTransformationConfig>
Parameters:
config - The general configuration for this extension.
parser - The argument parser that has been used to parse the new configuration for this extension.
adminActionsRequired - A list to which messages may be added to provide additional information about any additional administrative actions that may be required to apply some of the configuration changes.
messages - A list to which messages may be added to provide additional information about the processing performed by this method.
Returns:
A result code providing information about the result of applying the configuration change. A result of SUCCESS should be used to indicate that all processing completed successfully. Any other result will indicate that a problem occurred during processing.

transformAddRequest

public com.unboundid.ldap.sdk.AddRequest transformAddRequest(ProxyOperationContext operationContext,
                                                             com.unboundid.ldap.sdk.AddRequest addRequest)
                                                      throws com.unboundid.ldap.sdk.LDAPException
Applies any necessary transformation to the provided add request.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
addRequest - The add request to be transformed.
Returns:
A new add request which has been transformed as necessary, or the original request if no transformation is required or the provided add request has been updated in place.
Throws:
com.unboundid.ldap.sdk.LDAPException - If a problem is encountered while processing the transformation, or if the provided request should not be forwarded to a backend server.

transformAddResult

public com.unboundid.ldap.sdk.LDAPResult transformAddResult(ProxyOperationContext operationContext,
                                                            com.unboundid.ldap.sdk.ReadOnlyAddRequest addRequest,
                                                            com.unboundid.ldap.sdk.LDAPResult addResult)
Applies any necessary transformation to the provided add result.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
addRequest - The add request that was processed.
addResult - The add result to be transformed.
Returns:
A new add result which has been transformed as necessary, or the original result if no transformation is required or the provided add result has been updated in place.

transformBindRequest

public com.unboundid.ldap.sdk.BindRequest transformBindRequest(ProxyOperationContext operationContext,
                                                               com.unboundid.ldap.sdk.BindRequest bindRequest)
                                                        throws com.unboundid.ldap.sdk.LDAPException
Applies any necessary transformation to the provided bind request.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
bindRequest - The bind request to be transformed.
Returns:
A new bind request which has been transformed as necessary, or the original request if no transformation is required.
Throws:
com.unboundid.ldap.sdk.LDAPException - If a problem is encountered while processing the transformation, or if the provided request should not be forwarded to a backend server.

transformBindResult

public com.unboundid.ldap.sdk.BindResult transformBindResult(ProxyOperationContext operationContext,
                                                             com.unboundid.ldap.sdk.BindRequest bindRequest,
                                                             com.unboundid.ldap.sdk.BindResult bindResult)
Applies any necessary transformation to the provided bind request.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
bindRequest - The bind request that was processed.
bindResult - The bind result to be transformed.
Returns:
A new bind result which has been transformed as necessary, or the original result if no transformation is required.

transformCompareRequest

public com.unboundid.ldap.sdk.CompareRequest transformCompareRequest(ProxyOperationContext operationContext,
                                                                     com.unboundid.ldap.sdk.CompareRequest compareRequest)
                                                              throws com.unboundid.ldap.sdk.LDAPException
Applies any necessary transformation to the provided compare request.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
compareRequest - The compare request to be transformed.
Returns:
A new compare request which has been transformed as necessary, or the original request if no transformation is required or the provided compare request has been updated in place.
Throws:
com.unboundid.ldap.sdk.LDAPException - If a problem is encountered while processing the transformation, or if the provided request should not be forwarded to a backend server.

transformCompareResult

public com.unboundid.ldap.sdk.LDAPResult transformCompareResult(ProxyOperationContext operationContext,
                                                                com.unboundid.ldap.sdk.ReadOnlyCompareRequest compareRequest,
                                                                com.unboundid.ldap.sdk.LDAPResult compareResult)
Applies any necessary transformation to the provided compare result.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
compareRequest - The compare request that was processed.
compareResult - The compare result to be transformed.
Returns:
A new compare result which has been transformed as necessary, or the original result if no transformation is required or the provided compare result has been updated in place.

transformDeleteRequest

public com.unboundid.ldap.sdk.DeleteRequest transformDeleteRequest(ProxyOperationContext operationContext,
                                                                   com.unboundid.ldap.sdk.DeleteRequest deleteRequest)
                                                            throws com.unboundid.ldap.sdk.LDAPException
Applies any necessary transformation to the provided delete request.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
deleteRequest - The delete request to be transformed.
Returns:
A new delete request which has been transformed as necessary, or the original request if no transformation is required or the provided delete request has been updated in place.
Throws:
com.unboundid.ldap.sdk.LDAPException - If a problem is encountered while processing the transformation, or if the provided request should not be forwarded to a backend server.

transformDeleteResult

public com.unboundid.ldap.sdk.LDAPResult transformDeleteResult(ProxyOperationContext operationContext,
                                                               com.unboundid.ldap.sdk.ReadOnlyDeleteRequest deleteRequest,
                                                               com.unboundid.ldap.sdk.LDAPResult deleteResult)
Applies any necessary transformation to the provided delete result.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
deleteRequest - The delete request that was processed.
deleteResult - The delete result to be transformed.
Returns:
A new delete result which has been transformed as necessary, or the original result if no transformation is required or the provided delete result has been updated in place.

transformModifyRequest

public com.unboundid.ldap.sdk.ModifyRequest transformModifyRequest(ProxyOperationContext operationContext,
                                                                   com.unboundid.ldap.sdk.ModifyRequest modifyRequest)
                                                            throws com.unboundid.ldap.sdk.LDAPException
Applies any necessary transformation to the provided modify request.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
modifyRequest - The modify request to be transformed.
Returns:
A new modify request which has been transformed as necessary, or the original request if no transformation is required or the provided modify request has been updated in place.
Throws:
com.unboundid.ldap.sdk.LDAPException - If a problem is encountered while processing the transformation, or if the provided request should not be forwarded to a backend server.

transformModifyResult

public com.unboundid.ldap.sdk.LDAPResult transformModifyResult(ProxyOperationContext operationContext,
                                                               com.unboundid.ldap.sdk.ReadOnlyModifyRequest modifyRequest,
                                                               com.unboundid.ldap.sdk.LDAPResult modifyResult)
Applies any necessary transformation to the provided modify result.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
modifyRequest - The modify request that was processed.
modifyResult - The modify result to be transformed.
Returns:
A new modify result which has been transformed as necessary, or the original result if no transformation is required or the provided modify result has been updated in place.

transformModifyDNRequest

public com.unboundid.ldap.sdk.ModifyDNRequest transformModifyDNRequest(ProxyOperationContext operationContext,
                                                                       com.unboundid.ldap.sdk.ModifyDNRequest modifyDNRequest)
                                                                throws com.unboundid.ldap.sdk.LDAPException
Applies any necessary transformation to the provided modify DN request.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
modifyDNRequest - The modify DN request to be transformed.
Returns:
A new modify DN request which has been transformed as necessary, or the original request if no transformation is required or the provided modify DN request has been updated in place.
Throws:
com.unboundid.ldap.sdk.LDAPException - If a problem is encountered while processing the transformation, or if the provided request should not be forwarded to a backend server.

transformModifyDNResult

public com.unboundid.ldap.sdk.LDAPResult transformModifyDNResult(ProxyOperationContext operationContext,
                                                                 com.unboundid.ldap.sdk.ReadOnlyModifyDNRequest modifyDNRequest,
                                                                 com.unboundid.ldap.sdk.LDAPResult modifyDNResult)
Applies any necessary transformation to the provided modify DN result.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
modifyDNRequest - The modify DN request that was processed.
modifyDNResult - The modify DN result to be transformed.
Returns:
A new modify DN result which has been transformed as necessary, or the original result if no transformation is required or the provided modify DN result has been updated in place.

transformSearchRequest

public com.unboundid.ldap.sdk.SearchRequest transformSearchRequest(ProxyOperationContext operationContext,
                                                                   com.unboundid.ldap.sdk.SearchRequest searchRequest)
                                                            throws com.unboundid.ldap.sdk.LDAPException
Applies any necessary transformation to the provided search request.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
searchRequest - The search request to be transformed.
Returns:
A new search request which has been transformed as necessary, or the original request if no transformation is required or the provided search request has been updated in place.
Throws:
com.unboundid.ldap.sdk.LDAPException - If a problem is encountered while processing the transformation, or if the provided request should not be forwarded to a backend server.

transformSearchResult

public com.unboundid.ldap.sdk.SearchResult transformSearchResult(ProxyOperationContext operationContext,
                                                                 com.unboundid.ldap.sdk.ReadOnlySearchRequest searchRequest,
                                                                 com.unboundid.ldap.sdk.SearchResult searchResult,
                                                                 SearchResultProvider resultProvider)
Applies any necessary transformation to the provided search result.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
searchRequest - The search request that was processed.
searchResult - The search result to be transformed.
resultProvider - The search result provider which may be used to send additional search result entries and/or references to the client.
Returns:
A new search result which has been transformed as necessary, or the original result if no transformation is required or the provided search result has been updated in place.

transformSearchResultEntry

public com.unboundid.ldap.sdk.SearchResultEntry transformSearchResultEntry(ProxyOperationContext operationContext,
                                                                           com.unboundid.ldap.sdk.ReadOnlySearchRequest searchRequest,
                                                                           com.unboundid.ldap.sdk.SearchResultEntry searchEntry)
Applies any necessary transformation to the provided search result entry.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
searchRequest - The search request that is being processed.
searchEntry - The search result entry to be transformed.
Returns:
A new search result entry which has been transformed as necessary, the original search result entry if no transformation is required, or null if the entry should not be returned to the client.

transformSearchResultReference

public com.unboundid.ldap.sdk.SearchResultReference transformSearchResultReference(ProxyOperationContext operationContext,
                                                                                   com.unboundid.ldap.sdk.ReadOnlySearchRequest searchRequest,
                                                                                   com.unboundid.ldap.sdk.SearchResultReference searchReference)
Applies any necessary transformation to the provided search result reference.

Parameters:
operationContext - Information about the operation being processed in the Directory Proxy Server.
searchRequest - The search request that is being processed.
searchReference - The search result reference to be transformed.
Returns:
A new search result reference which has been transformed as necessary, the original search result reference if no transformation is required, or null if the reference should not be returned to the client.