public class ProxyPropertiesHandler extends GenericProxyHandler implements Handler
PropertiesHandler
).
If they are instead configured to produce the properties
in java properties format, then this handler
will read their output, and place the result in the request object on
their behalf. This capability allows certain handlers to be run on
other web sites, yet behave as if they are in the handler chain.
The following request properties are used:
host, HOST, mapper, NL, noErrorReturn, passHost, port, PORT, prefix, PREFIX, PROXY_HOST, PROXY_PORT, proxyHost, proxyPort, requestPrefix, tokens, urlPrefix
Constructor and Description |
---|
ProxyPropertiesHandler() |
Modifier and Type | Method and Description |
---|---|
boolean |
init(Server server,
java.lang.String prefix)
Do one-time setup.
|
byte[] |
modifyContent(Request request,
byte[] content)
Rewrite the links in an html file so they resolve correctly
in proxy mode.
|
boolean |
respond(Request request)
If this is one of "our" url's, fetch the document from
the destination server, and return it as if it was local.
|
protected boolean |
shouldFilter(MimeHeaders headers)
See if the content needs to be filtered
Return "true" if "modifyContent" should be called
|
getMapper, isMine
public boolean init(Server server, java.lang.String prefix)
GenericProxyHandler
init
in interface Handler
init
in class GenericProxyHandler
server
- The HTTP server that created this Handler
.
Typical Handler
s will use Server.props
to obtain run-time configuration information.prefix
- The handlers name.
The string this Handler
may prepend to all
of the keys that it uses to extract configuration information
from Server.props
. This is set (by the Server
and ChainHandler
) to help avoid configuration parameter
namespace collisions.true
if this Handler
initialized
successfully, false
otherwise. If
false
is returned, this Handler
should not be used.public boolean respond(Request request) throws java.io.IOException
GenericProxyHandler
respond
in interface Handler
respond
in class GenericProxyHandler
request
- The Request
object that represents the HTTP
request.true
if the request was handled. A request was
handled if a response was supplied to the client, typically
by calling Request.sendResponse()
or
Request.sendError
.java.io.IOException
- if there was an I/O error while sending the response to
the client. Typically, in that case, the Server
will (try to) send an error message to the client and then
close the client's connection.
The IOException
should not be used to silently
ignore problems such as being unable to access some
server-side resource (for example getting a
FileNotFoundException
due to not being able
to open a file). In that case, the Handler
's
duty is to turn that IOException
into a
HTTP response indicating, in this case, that a file could
not be found.
protected boolean shouldFilter(MimeHeaders headers)
shouldFilter
in class GenericProxyHandler
headers
- mime headers for data to proxypublic byte[] modifyContent(Request request, byte[] content)
GenericProxyHandler
modifyContent
in class GenericProxyHandler
request
- The original request to this "proxy"