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 package org.apache.http.impl.cookie;
28
29 import java.util.Locale;
30 import java.util.StringTokenizer;
31
32 import org.apache.http.annotation.Immutable;
33
34 import org.apache.http.cookie.Cookie;
35 import org.apache.http.cookie.CookieOrigin;
36 import org.apache.http.cookie.CookieRestrictionViolationException;
37 import org.apache.http.cookie.MalformedCookieException;
38
39
40
41
42
43 @Immutable
44 public class NetscapeDomainHandler extends BasicDomainHandler {
45
46 public NetscapeDomainHandler() {
47 super();
48 }
49
50 @Override
51 public void validate(final Cookie cookie, final CookieOrigin origin)
52 throws MalformedCookieException {
53 super.validate(cookie, origin);
54
55 String host = origin.getHost();
56 String domain = cookie.getDomain();
57 if (host.contains(".")) {
58 int domainParts = new StringTokenizer(domain, ".").countTokens();
59
60 if (isSpecialDomain(domain)) {
61 if (domainParts < 2) {
62 throw new CookieRestrictionViolationException("Domain attribute \""
63 + domain
64 + "\" violates the Netscape cookie specification for "
65 + "special domains");
66 }
67 } else {
68 if (domainParts < 3) {
69 throw new CookieRestrictionViolationException("Domain attribute \""
70 + domain
71 + "\" violates the Netscape cookie specification");
72 }
73 }
74 }
75 }
76
77
78
79
80
81
82
83 private static boolean isSpecialDomain(final String domain) {
84 final String ucDomain = domain.toUpperCase(Locale.ENGLISH);
85 return ucDomain.endsWith(".COM")
86 || ucDomain.endsWith(".EDU")
87 || ucDomain.endsWith(".NET")
88 || ucDomain.endsWith(".GOV")
89 || ucDomain.endsWith(".MIL")
90 || ucDomain.endsWith(".ORG")
91 || ucDomain.endsWith(".INT");
92 }
93
94 @Override
95 public boolean match(Cookie cookie, CookieOrigin origin) {
96 if (cookie == null) {
97 throw new IllegalArgumentException("Cookie may not be null");
98 }
99 if (origin == null) {
100 throw new IllegalArgumentException("Cookie origin may not be null");
101 }
102 String host = origin.getHost();
103 String domain = cookie.getDomain();
104 if (domain == null) {
105 return false;
106 }
107 return host.endsWith(domain);
108 }
109
110 }