<scripting xmlns="http://docs.openrepose.org/repose/scripting/v1.0"
language="groovy"> (1)
request.addHeader("foo", "bar") (2)
// Call the next filter in the chain (3)
filterChain.doFilter(request, response) (4)
</scripting>
The Scripting filter enables users to write custom filters for Repose using a variety of scripting languages. Custom filters can be used to perform arbitrary processing with access to the bindings described below.
Name: scripting
Default Configuration: scripting.cfg.xml
Released: v8.0.0.0
Bundle: repose-experimental-filter-bundle
Groovy
Javascript
Python
All supported languages are currently compilable. |
An enumeration of all supported language names (e.g., |
Bindings are variables defined by the Scripting filter which can be used in scripts.
Currently supported bindings are detailed by the following table:
Binding Name | Description |
---|---|
request |
A HttpServletRequest object containing data associated with the current request. To allow for modification of the request, the request object will be wrapped with the Repose HttpServletRequestWrapper class. All methods on the HttpServletRequestWrapper class will be available in the script. |
response |
A HttpServletResponse object containing data associated with the current response. To allow for more powerful modification of the response, the response object will be wrapped with the Repose HttpServletResponseWrapper class. All methods on the HttpServletResponseWrapper class will be available in the script. |
filterChain |
A FilterChain object for passing the request and response to the next filter in the chain. |
Invoking the |
The performance of this filter will vary depending on configuration.
For the simple task of adding a header to a request, this filter performs comparably to the Add Header Filter.
Scripts written in a compilable language as shown above will always be compiled. This should dramatically improve performance.
<scripting xmlns="http://docs.openrepose.org/repose/scripting/v1.0"
language="groovy"> (1)
request.addHeader("foo", "bar") (2)
// Call the next filter in the chain (3)
filterChain.doFilter(request, response) (4)
</scripting>
1 | Specifies that the scripting language being used is groovy . |
2 | The first line of the Groovy script.
Adds a request header named foo with a value of bar . |
3 | Comments can be used in the scriptlet just like in the native language! |
4 | Passes the modified request and the response on to the next component in the filter chain. |
<scripting xmlns="http://docs.openrepose.org/repose/scripting/v1.0"
language="python"><![CDATA[ (1)
path = request.getRequestURI() (2)
pathSegments = path.strip("/").split("/") (3)
queryString = request.getQueryString() (4)
if len(pathSegments) >= 2: (5)
if queryString is not None: (6)
queryString = queryString + "&penultimate=" + pathSegments[len(pathSegments) - 2] + "&ultimate=" + pathSegments[len(pathSegments) - 1]
else:
queryString = "penultimate=" + pathSegments[len(pathSegments) - 2] + "&ultimate=" + pathSegments[len(pathSegments) - 1]
request.setQueryString(queryString) (7)
request.setRequestURI("/" + "/".join(pathSegments[-2:]))
filterChain.doFilter(request, response) (8)
]]></scripting> (9)
1 | Specifies that the scripting language being used is python .
Also opens the CDATA block. |
2 | The first line of the Python script. Gets the request URI from the request object. |
3 | Removes any leading or trailing / characters from the URI.
Also splits the modified URI on the / character. |
4 | Gets the request query string from the request object. |
5 | For this specific example, we assert that there are at least two path segments. If not, no request mutations are performed. |
6 | This conditional block appends the last two path segments as query parameters. |
7 | Sets the modified query string and request URI on the request object. |
8 | Passes the modified request and the response on to the next component in the filter chain. |
9 | Terminates the CDATA block and the script. |