| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 "chrome/common/net/gaia/oauth2_api_call_flow.h" | 5 #include "chrome/common/net/gaia/oauth2_api_call_flow.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/stringprintf.h" | 11 #include "base/stringprintf.h" |
| 12 #include "chrome/common/net/gaia/gaia_urls.h" | 12 #include "chrome/common/net/gaia/gaia_urls.h" |
| 13 #include "content/public/common/url_fetcher.h" |
| 13 #include "net/base/escape.h" | 14 #include "net/base/escape.h" |
| 14 #include "net/base/load_flags.h" | 15 #include "net/base/load_flags.h" |
| 15 #include "net/http/http_status_code.h" | 16 #include "net/http/http_status_code.h" |
| 16 #include "net/url_request/url_request_context_getter.h" | 17 #include "net/url_request/url_request_context_getter.h" |
| 17 #include "net/url_request/url_request_status.h" | 18 #include "net/url_request/url_request_status.h" |
| 18 | 19 |
| 19 using content::URLFetcher; | |
| 20 using content::URLFetcherDelegate; | |
| 21 using net::ResponseCookies; | 20 using net::ResponseCookies; |
| 21 using net::URLFetcher; |
| 22 using net::URLFetcherDelegate; |
| 22 using net::URLRequestContextGetter; | 23 using net::URLRequestContextGetter; |
| 23 using net::URLRequestStatus; | 24 using net::URLRequestStatus; |
| 24 | 25 |
| 25 namespace { | 26 namespace { |
| 26 static const char kAuthorizationHeaderFormat[] = | 27 static const char kAuthorizationHeaderFormat[] = |
| 27 "Authorization: Bearer %s"; | 28 "Authorization: Bearer %s"; |
| 28 | 29 |
| 29 static std::string MakeAuthorizationHeader(const std::string& auth_token) { | 30 static std::string MakeAuthorizationHeader(const std::string& auth_token) { |
| 30 return StringPrintf(kAuthorizationHeaderFormat, auth_token.c_str()); | 31 return StringPrintf(kAuthorizationHeaderFormat, auth_token.c_str()); |
| 31 } | 32 } |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 } | 141 } |
| 141 | 142 |
| 142 void OAuth2ApiCallFlow::OnGetTokenFailure( | 143 void OAuth2ApiCallFlow::OnGetTokenFailure( |
| 143 const GoogleServiceAuthError& error) { | 144 const GoogleServiceAuthError& error) { |
| 144 EndMintAccessToken(&error); | 145 EndMintAccessToken(&error); |
| 145 } | 146 } |
| 146 | 147 |
| 147 URLFetcher* OAuth2ApiCallFlow::CreateURLFetcher() { | 148 URLFetcher* OAuth2ApiCallFlow::CreateURLFetcher() { |
| 148 std::string body = CreateApiCallBody(); | 149 std::string body = CreateApiCallBody(); |
| 149 bool empty_body = body.empty(); | 150 bool empty_body = body.empty(); |
| 150 URLFetcher* result = URLFetcher::Create( | 151 URLFetcher* result = content::URLFetcher::Create( |
| 151 0, | 152 0, |
| 152 CreateApiCallUrl(), | 153 CreateApiCallUrl(), |
| 153 empty_body ? URLFetcher::GET : URLFetcher::POST, | 154 empty_body ? URLFetcher::GET : URLFetcher::POST, |
| 154 this); | 155 this); |
| 155 | 156 |
| 156 result->SetRequestContext(context_); | 157 result->SetRequestContext(context_); |
| 157 result->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES | | 158 result->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES | |
| 158 net::LOAD_DO_NOT_SAVE_COOKIES); | 159 net::LOAD_DO_NOT_SAVE_COOKIES); |
| 159 result->AddExtraRequestHeader(MakeAuthorizationHeader(access_token_)); | 160 result->AddExtraRequestHeader(MakeAuthorizationHeader(access_token_)); |
| 160 | 161 |
| 161 if (!empty_body) | 162 if (!empty_body) |
| 162 result->SetUploadData("application/x-www-form-urlencoded", body); | 163 result->SetUploadData("application/x-www-form-urlencoded", body); |
| 163 | 164 |
| 164 return result; | 165 return result; |
| 165 } | 166 } |
| OLD | NEW |