rabbit.filter
Class DontFilterFilter

java.lang.Object
  extended by rabbit.filter.DontFilterFilter
All Implemented Interfaces:
HTTPFilter

public class DontFilterFilter
extends java.lang.Object
implements HTTPFilter

This is a class that makes sure the proxy doesnt filter certain pages. It matches pages based on the URL.

It uses the config option dontFilterURLmatching with a default value of the empty string. This value is considered a comma ',' separated list.
Matching is done with indexOf so no regular expressions are used for now.


Constructor Summary
DontFilterFilter()
           
 
Method Summary
 HTTPHeader doHTTPInFiltering(java.net.Socket socket, HTTPHeader header, Connection con)
          Test if a socket/header combination is valid or return a new HTTPHeader.
 HTTPHeader doHTTPOutFiltering(java.net.Socket socket, HTTPHeader header, Connection con)
          test if a socket/header combination is valid or return a new HTTPHeader.
 void setup(Logger logger, SProperties properties)
          Setup this class with the given properties.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DontFilterFilter

public DontFilterFilter()
Method Detail

doHTTPInFiltering

public HTTPHeader doHTTPInFiltering(java.net.Socket socket,
                                    HTTPHeader header,
                                    Connection con)
Test if a socket/header combination is valid or return a new HTTPHeader. If the request matches a certain criteria dont filter it. This filter is Good for pages with broken HTML that would wreck the HTML parser.

Specified by:
doHTTPInFiltering in interface HTTPFilter
Parameters:
socket - the Socket that made the request.
header - the actual request made.
con - the Connection handling the request.
Returns:
null

doHTTPOutFiltering

public HTTPHeader doHTTPOutFiltering(java.net.Socket socket,
                                     HTTPHeader header,
                                     Connection con)
test if a socket/header combination is valid or return a new HTTPHeader.

Specified by:
doHTTPOutFiltering in interface HTTPFilter
Parameters:
socket - the Socket that made the request.
header - the actual request made.
con - the Connection handling the request.
Returns:
null if everything is fine or a HTTPHeader describing the error (like a 403).

setup

public void setup(Logger logger,
                  SProperties properties)
Setup this class with the given properties.

Specified by:
setup in interface HTTPFilter
Parameters:
logger - the Logger for errors/warnings.
properties - the new configuration of this class.