[Bluetooth, Performance] Cache the Bluetooth adapter name on Mac.
[chromium-blink-merge.git] / components / captive_portal / captive_portal_detector.cc
blobb7b8668e5fa639615e6450d8520aef9a7d0d8ae9
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/captive_portal/captive_portal_detector.h"
7 #include "base/logging.h"
8 #include "base/strings/string_number_conversions.h"
9 #include "net/base/load_flags.h"
10 #include "net/http/http_response_headers.h"
11 #include "net/http/http_util.h"
12 #include "net/url_request/url_request_status.h"
14 namespace captive_portal {
16 const char CaptivePortalDetector::kDefaultURL[] =
17 "http://www.gstatic.com/generate_204";
19 CaptivePortalDetector::CaptivePortalDetector(
20 const scoped_refptr<net::URLRequestContextGetter>& request_context)
21 : request_context_(request_context) {
24 CaptivePortalDetector::~CaptivePortalDetector() {
27 void CaptivePortalDetector::DetectCaptivePortal(
28 const GURL& url,
29 const DetectionCallback& detection_callback) {
30 DCHECK(CalledOnValidThread());
31 DCHECK(!FetchingURL());
32 DCHECK(detection_callback_.is_null());
34 detection_callback_ = detection_callback;
36 // The first 0 means this can use a TestURLFetcherFactory in unit tests.
37 url_fetcher_.reset(net::URLFetcher::Create(0,
38 url,
39 net::URLFetcher::GET,
40 this));
41 url_fetcher_->SetAutomaticallyRetryOn5xx(false);
42 url_fetcher_->SetRequestContext(request_context_.get());
44 // Can't safely use net::LOAD_DISABLE_CERT_REVOCATION_CHECKING here,
45 // since then the connection may be reused without checking the cert.
46 url_fetcher_->SetLoadFlags(
47 net::LOAD_BYPASS_CACHE |
48 net::LOAD_DO_NOT_SAVE_COOKIES |
49 net::LOAD_DO_NOT_SEND_COOKIES |
50 net::LOAD_DO_NOT_SEND_AUTH_DATA);
51 url_fetcher_->Start();
54 void CaptivePortalDetector::Cancel() {
55 url_fetcher_.reset();
56 detection_callback_.Reset();
59 void CaptivePortalDetector::OnURLFetchComplete(const net::URLFetcher* source) {
60 DCHECK(CalledOnValidThread());
61 DCHECK(FetchingURL());
62 DCHECK_EQ(url_fetcher_.get(), source);
63 DCHECK(!detection_callback_.is_null());
65 Results results;
66 GetCaptivePortalResultFromResponse(url_fetcher_.get(), &results);
67 DetectionCallback callback = detection_callback_;
68 url_fetcher_.reset();
69 detection_callback_.Reset();
70 callback.Run(results);
73 // Takes a net::URLFetcher that has finished trying to retrieve the test
74 // URL, and returns a CaptivePortalService::Result based on its result.
75 void CaptivePortalDetector::GetCaptivePortalResultFromResponse(
76 const net::URLFetcher* url_fetcher,
77 Results* results) const {
78 DCHECK(results);
79 DCHECK(!url_fetcher->GetStatus().is_io_pending());
81 results->result = captive_portal::RESULT_NO_RESPONSE;
82 results->response_code = url_fetcher->GetResponseCode();
83 results->retry_after_delta = base::TimeDelta();
84 results->landing_url = url_fetcher->GetURL();
86 // If there's a network error of some sort when fetching a file via HTTP,
87 // there may be a networking problem, rather than a captive portal.
88 // TODO(mmenke): Consider special handling for redirects that end up at
89 // errors, especially SSL certificate errors.
90 if (url_fetcher->GetStatus().status() != net::URLRequestStatus::SUCCESS)
91 return;
93 // In the case of 503 errors, look for the Retry-After header.
94 if (results->response_code == 503) {
95 net::HttpResponseHeaders* headers = url_fetcher->GetResponseHeaders();
96 std::string retry_after_string;
98 // If there's no Retry-After header, nothing else to do.
99 if (!headers->EnumerateHeader(NULL, "Retry-After", &retry_after_string))
100 return;
102 base::TimeDelta retry_after_delta;
103 if (net::HttpUtil::ParseRetryAfterHeader(retry_after_string,
104 GetCurrentTime(),
105 &retry_after_delta)) {
106 results->retry_after_delta = retry_after_delta;
109 return;
112 // A 511 response (Network Authentication Required) means that the user needs
113 // to login to whatever server issued the response.
114 // See: http://tools.ietf.org/html/rfc6585
115 if (results->response_code == 511) {
116 results->result = captive_portal::RESULT_BEHIND_CAPTIVE_PORTAL;
117 return;
120 // Other non-2xx/3xx HTTP responses may indicate server errors.
121 if (results->response_code >= 400 || results->response_code < 200)
122 return;
124 // A 204 response code indicates there's no captive portal.
125 if (results->response_code == 204) {
126 results->result = captive_portal::RESULT_INTERNET_CONNECTED;
127 return;
130 // Otherwise, assume it's a captive portal.
131 results->result = captive_portal::RESULT_BEHIND_CAPTIVE_PORTAL;
134 base::Time CaptivePortalDetector::GetCurrentTime() const {
135 if (time_for_testing_.is_null())
136 return base::Time::Now();
137 else
138 return time_for_testing_;
141 bool CaptivePortalDetector::FetchingURL() const {
142 return url_fetcher_.get() != NULL;
145 } // namespace captive_portal