OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/http/http_auth_handler_factory.h" | 5 #include "net/http/http_auth_handler_factory.h" |
6 | 6 |
7 #include "base/stl_util-inl.h" | 7 #include "base/stl_util-inl.h" |
8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
9 #include "net/base/net_errors.h" | 9 #include "net/base/net_errors.h" |
10 #include "net/http/http_auth_filter.h" | 10 #include "net/http/http_auth_filter.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 const GURL& origin, | 32 const GURL& origin, |
33 int digest_nonce_count, | 33 int digest_nonce_count, |
34 const BoundNetLog& net_log, | 34 const BoundNetLog& net_log, |
35 scoped_ptr<HttpAuthHandler>* handler) { | 35 scoped_ptr<HttpAuthHandler>* handler) { |
36 HttpAuth::ChallengeTokenizer props(challenge.begin(), challenge.end()); | 36 HttpAuth::ChallengeTokenizer props(challenge.begin(), challenge.end()); |
37 return CreateAuthHandler(&props, target, origin, CREATE_PREEMPTIVE, | 37 return CreateAuthHandler(&props, target, origin, CREATE_PREEMPTIVE, |
38 digest_nonce_count, net_log, handler); | 38 digest_nonce_count, net_log, handler); |
39 } | 39 } |
40 | 40 |
41 // static | 41 // static |
42 HttpAuthHandlerRegistryFactory* HttpAuthHandlerFactory::CreateDefault() { | 42 HttpAuthHandlerRegistryFactory* HttpAuthHandlerFactory::CreateDefault( |
| 43 HostResolver* host_resolver) { |
| 44 DCHECK(host_resolver); |
43 HttpAuthHandlerRegistryFactory* registry_factory = | 45 HttpAuthHandlerRegistryFactory* registry_factory = |
44 new HttpAuthHandlerRegistryFactory(); | 46 new HttpAuthHandlerRegistryFactory(); |
45 registry_factory->RegisterSchemeFactory( | 47 registry_factory->RegisterSchemeFactory( |
46 "basic", new HttpAuthHandlerBasic::Factory()); | 48 "basic", new HttpAuthHandlerBasic::Factory()); |
47 registry_factory->RegisterSchemeFactory( | 49 registry_factory->RegisterSchemeFactory( |
48 "digest", new HttpAuthHandlerDigest::Factory()); | 50 "digest", new HttpAuthHandlerDigest::Factory()); |
49 registry_factory->RegisterSchemeFactory( | 51 HttpAuthHandlerNegotiate::Factory* negotiate_factory = |
50 "negotiate", new HttpAuthHandlerNegotiate::Factory()); | 52 new HttpAuthHandlerNegotiate::Factory(); |
| 53 negotiate_factory->set_host_resolver(host_resolver); |
| 54 registry_factory->RegisterSchemeFactory("negotiate", negotiate_factory); |
51 registry_factory->RegisterSchemeFactory( | 55 registry_factory->RegisterSchemeFactory( |
52 "ntlm", new HttpAuthHandlerNTLM::Factory()); | 56 "ntlm", new HttpAuthHandlerNTLM::Factory()); |
53 return registry_factory; | 57 return registry_factory; |
54 } | 58 } |
55 | 59 |
56 namespace { | 60 namespace { |
57 | 61 |
58 bool IsSupportedScheme(const std::vector<std::string>& supported_schemes, | 62 bool IsSupportedScheme(const std::vector<std::string>& supported_schemes, |
59 const std::string& scheme) { | 63 const std::string& scheme) { |
60 std::vector<std::string>::const_iterator it = std::find( | 64 std::vector<std::string>::const_iterator it = std::find( |
(...skipping 21 matching lines...) Expand all Loading... |
82 if (IsSupportedScheme(supported_schemes, "ntlm")) { | 86 if (IsSupportedScheme(supported_schemes, "ntlm")) { |
83 HttpAuthHandlerNTLM::Factory* ntlm_factory = | 87 HttpAuthHandlerNTLM::Factory* ntlm_factory = |
84 new HttpAuthHandlerNTLM::Factory(); | 88 new HttpAuthHandlerNTLM::Factory(); |
85 ntlm_factory->set_url_security_manager(security_manager); | 89 ntlm_factory->set_url_security_manager(security_manager); |
86 registry_factory->RegisterSchemeFactory("ntlm", ntlm_factory); | 90 registry_factory->RegisterSchemeFactory("ntlm", ntlm_factory); |
87 } | 91 } |
88 if (IsSupportedScheme(supported_schemes, "negotiate")) { | 92 if (IsSupportedScheme(supported_schemes, "negotiate")) { |
89 HttpAuthHandlerNegotiate::Factory* negotiate_factory = | 93 HttpAuthHandlerNegotiate::Factory* negotiate_factory = |
90 new HttpAuthHandlerNegotiate::Factory(); | 94 new HttpAuthHandlerNegotiate::Factory(); |
91 negotiate_factory->set_url_security_manager(security_manager); | 95 negotiate_factory->set_url_security_manager(security_manager); |
92 DCHECK(host_resolver != NULL || negotiate_disable_cname_lookup); | 96 DCHECK(host_resolver || negotiate_disable_cname_lookup); |
93 negotiate_factory->set_host_resolver(host_resolver); | 97 negotiate_factory->set_host_resolver(host_resolver); |
94 negotiate_factory->set_disable_cname_lookup(negotiate_disable_cname_lookup); | 98 negotiate_factory->set_disable_cname_lookup(negotiate_disable_cname_lookup); |
95 negotiate_factory->set_use_port(negotiate_enable_port); | 99 negotiate_factory->set_use_port(negotiate_enable_port); |
96 registry_factory->RegisterSchemeFactory("negotiate", negotiate_factory); | 100 registry_factory->RegisterSchemeFactory("negotiate", negotiate_factory); |
97 } | 101 } |
98 | 102 |
99 return registry_factory; | 103 return registry_factory; |
100 } | 104 } |
101 | 105 |
102 HttpAuthHandlerRegistryFactory::HttpAuthHandlerRegistryFactory() { | 106 HttpAuthHandlerRegistryFactory::HttpAuthHandlerRegistryFactory() { |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 const std::string& scheme) const { | 160 const std::string& scheme) const { |
157 std::string lower_scheme = StringToLowerASCII(scheme); | 161 std::string lower_scheme = StringToLowerASCII(scheme); |
158 FactoryMap::const_iterator it = factory_map_.find(lower_scheme); | 162 FactoryMap::const_iterator it = factory_map_.find(lower_scheme); |
159 if (it == factory_map_.end()) { | 163 if (it == factory_map_.end()) { |
160 return NULL; // |scheme| is not registered. | 164 return NULL; // |scheme| is not registered. |
161 } | 165 } |
162 return it->second; | 166 return it->second; |
163 } | 167 } |
164 | 168 |
165 } // namespace net | 169 } // namespace net |
OLD | NEW |