summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/btr/proxy/selector/whitelist/DefaultWhiteListParser.java
blob: 0f949e125c0043bc8dd4e503a41e7415f2ba75ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package com.btr.proxy.selector.whitelist;

import java.util.ArrayList;
import java.util.List;

import com.btr.proxy.selector.whitelist.HostnameFilter.Mode;
import com.btr.proxy.util.UriFilter;

/*****************************************************************************
 * Default implementation for an white list parser. This will support the most
 * common forms of filters found in white lists. 
 * The white list is a comma (or space) separated list of domain names or IP addresses.
 * The following section shows some examples.
 * 
 *  .mynet.com  		- Filters all host names ending with .mynet.com
 *  *.mynet.com  		- Filters all host names ending with .mynet.com
 *  www.mynet.*  		- Filters all host names starting with www.mynet.
 *  123.12.32.1 		- Filters the IP 123.12.32.1
 *  123.12.32.1/255 	- Filters the IP range   
 *  http://www.mynet.com - Filters only HTTP protocol not FTP and no HTTPS
 * 
 * Example of a list:   
 * 
 * .mynet.com, *.my-other-net.org, 123.55.23.222, 123.55.23.0/24
 * 
 * Some info about this topic can be found here:
 * http://kb.mozillazine.org/No_proxy_for
 * http://technet.microsoft.com/en-us/library/dd361953.aspx
 * 
 * Note that this implementation does not cover all variations of all browsers
 * but should cover the most used formats. 
 * 
 * @author Bernd Rosstauscher (proxyvole@rosstauscher.de) Copyright 2009
 ****************************************************************************/

public class DefaultWhiteListParser implements WhiteListParser {

	/*************************************************************************
	 * parseWhiteList
	 * @see com.btr.proxy.selector.whitelist.WhiteListParser#parseWhiteList(java.lang.String)
	 ************************************************************************/
	
	public List<UriFilter> parseWhiteList(String whiteList) {
		List<UriFilter> result = new ArrayList<UriFilter>();
		
		String[] token = whiteList.split("[, ]+");
		for (int i = 0; i < token.length; i++) {
			String tkn = token[i].trim();
			if (isIP4SubnetFilter(tkn)) {
				result.add(new IpRangeFilter(tkn));
				continue;
			} else 
			if (tkn.endsWith("*")) {
				tkn = tkn.substring(0, tkn.length()-1);
				result.add(new HostnameFilter(Mode.BEGINS_WITH, tkn));
				continue;
			} else 
			if (tkn.trim().startsWith("*")) {
				tkn = tkn.substring(1);
				result.add(new HostnameFilter(Mode.ENDS_WITH, tkn));
			} else {
				result.add(new HostnameFilter(Mode.ENDS_WITH, tkn));
			}
		}
		
		return result;
	}

	/*************************************************************************
	 * @param token
	 * @return
	 ************************************************************************/
	
	private boolean isIP4SubnetFilter(String token) {
		return IPv4WithSubnetChecker.isValid(token);
	}

}