NaCl: Update revision in DEPS, r14065 -> r14087
[chromium-blink-merge.git] / google_apis / gaia / google_service_auth_error.cc
blob7796fae228fba4f02ad2e0b40d31d0fa107f9e83
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 "google_apis/gaia/google_service_auth_error.h"
7 #include <string>
9 #include "base/json/json_reader.h"
10 #include "base/logging.h"
11 #include "base/strings/string_util.h"
12 #include "base/strings/stringprintf.h"
13 #include "base/values.h"
14 #include "net/base/net_errors.h"
16 GoogleServiceAuthError::Captcha::Captcha() : image_width(0), image_height(0) {
19 GoogleServiceAuthError::Captcha::Captcha(
20 const std::string& token, const GURL& audio, const GURL& img,
21 const GURL& unlock, int width, int height)
22 : token(token), audio_url(audio), image_url(img), unlock_url(unlock),
23 image_width(width), image_height(height) {
26 GoogleServiceAuthError::Captcha::~Captcha() {
29 bool GoogleServiceAuthError::Captcha::operator==(const Captcha& b) const {
30 return (token == b.token &&
31 audio_url == b.audio_url &&
32 image_url == b.image_url &&
33 unlock_url == b.unlock_url &&
34 image_width == b.image_width &&
35 image_height == b.image_height);
38 GoogleServiceAuthError::SecondFactor::SecondFactor() : field_length(0) {
41 GoogleServiceAuthError::SecondFactor::SecondFactor(
42 const std::string& token, const std::string& prompt,
43 const std::string& alternate, int length)
44 : token(token), prompt_text(prompt), alternate_text(alternate),
45 field_length(length) {
48 GoogleServiceAuthError::SecondFactor::~SecondFactor() {
51 bool GoogleServiceAuthError::SecondFactor::operator==(
52 const SecondFactor& b) const {
53 return (token == b.token &&
54 prompt_text == b.prompt_text &&
55 alternate_text == b.alternate_text &&
56 field_length == b.field_length);
59 bool GoogleServiceAuthError::operator==(
60 const GoogleServiceAuthError& b) const {
61 return (state_ == b.state_ &&
62 network_error_ == b.network_error_ &&
63 captcha_ == b.captcha_ &&
64 second_factor_ == b.second_factor_);
67 GoogleServiceAuthError::GoogleServiceAuthError(State s)
68 : state_(s),
69 network_error_(0) {
70 // If the caller has no idea, then we just set it to a generic failure.
71 if (s == CONNECTION_FAILED) {
72 network_error_ = net::ERR_FAILED;
76 GoogleServiceAuthError::GoogleServiceAuthError(
77 State state,
78 const std::string& error_message)
79 : state_(state),
80 network_error_(0),
81 error_message_(error_message) {
84 // static
85 GoogleServiceAuthError
86 GoogleServiceAuthError::FromConnectionError(int error) {
87 return GoogleServiceAuthError(CONNECTION_FAILED, error);
90 // static
91 GoogleServiceAuthError GoogleServiceAuthError::FromClientLoginCaptchaChallenge(
92 const std::string& captcha_token,
93 const GURL& captcha_image_url,
94 const GURL& captcha_unlock_url) {
95 return GoogleServiceAuthError(CAPTCHA_REQUIRED, captcha_token, GURL(),
96 captcha_image_url, captcha_unlock_url, 0, 0);
99 // static
100 GoogleServiceAuthError GoogleServiceAuthError::FromServiceError(
101 const std::string& error_message) {
102 return GoogleServiceAuthError(SERVICE_ERROR, error_message);
105 // static
106 GoogleServiceAuthError GoogleServiceAuthError::FromUnexpectedServiceResponse(
107 const std::string& error_message) {
108 return GoogleServiceAuthError(UNEXPECTED_SERVICE_RESPONSE, error_message);
111 // static
112 GoogleServiceAuthError GoogleServiceAuthError::AuthErrorNone() {
113 return GoogleServiceAuthError(NONE);
116 GoogleServiceAuthError::State GoogleServiceAuthError::state() const {
117 return state_;
120 const GoogleServiceAuthError::Captcha& GoogleServiceAuthError::captcha() const {
121 return captcha_;
124 const GoogleServiceAuthError::SecondFactor&
125 GoogleServiceAuthError::second_factor() const {
126 return second_factor_;
129 int GoogleServiceAuthError::network_error() const {
130 return network_error_;
133 const std::string& GoogleServiceAuthError::token() const {
134 switch (state_) {
135 case CAPTCHA_REQUIRED:
136 return captcha_.token;
137 break;
138 case TWO_FACTOR:
139 return second_factor_.token;
140 break;
141 default:
142 NOTREACHED();
144 return base::EmptyString();
147 const std::string& GoogleServiceAuthError::error_message() const {
148 return error_message_;
151 base::DictionaryValue* GoogleServiceAuthError::ToValue() const {
152 base::DictionaryValue* value = new base::DictionaryValue();
153 std::string state_str;
154 switch (state_) {
155 #define STATE_CASE(x) case x: state_str = #x; break
156 STATE_CASE(NONE);
157 STATE_CASE(INVALID_GAIA_CREDENTIALS);
158 STATE_CASE(USER_NOT_SIGNED_UP);
159 STATE_CASE(CONNECTION_FAILED);
160 STATE_CASE(CAPTCHA_REQUIRED);
161 STATE_CASE(ACCOUNT_DELETED);
162 STATE_CASE(ACCOUNT_DISABLED);
163 STATE_CASE(SERVICE_UNAVAILABLE);
164 STATE_CASE(TWO_FACTOR);
165 STATE_CASE(REQUEST_CANCELED);
166 STATE_CASE(HOSTED_NOT_ALLOWED);
167 STATE_CASE(UNEXPECTED_SERVICE_RESPONSE);
168 STATE_CASE(SERVICE_ERROR);
169 STATE_CASE(WEB_LOGIN_REQUIRED);
170 #undef STATE_CASE
171 default:
172 NOTREACHED();
173 break;
175 value->SetString("state", state_str);
176 if (!error_message_.empty()) {
177 value->SetString("errorMessage", error_message_);
179 if (state_ == CAPTCHA_REQUIRED) {
180 base::DictionaryValue* captcha_value = new base::DictionaryValue();
181 value->Set("captcha", captcha_value);
182 captcha_value->SetString("token", captcha_.token);
183 captcha_value->SetString("audioUrl", captcha_.audio_url.spec());
184 captcha_value->SetString("imageUrl", captcha_.image_url.spec());
185 captcha_value->SetString("unlockUrl", captcha_.unlock_url.spec());
186 captcha_value->SetInteger("imageWidth", captcha_.image_width);
187 captcha_value->SetInteger("imageHeight", captcha_.image_height);
188 } else if (state_ == CONNECTION_FAILED) {
189 value->SetString("networkError", net::ErrorToString(network_error_));
190 } else if (state_ == TWO_FACTOR) {
191 base::DictionaryValue* two_factor_value = new base::DictionaryValue();
192 value->Set("two_factor", two_factor_value);
193 two_factor_value->SetString("token", second_factor_.token);
194 two_factor_value->SetString("promptText", second_factor_.prompt_text);
195 two_factor_value->SetString("alternateText", second_factor_.alternate_text);
196 two_factor_value->SetInteger("fieldLength", second_factor_.field_length);
198 return value;
201 std::string GoogleServiceAuthError::ToString() const {
202 switch (state_) {
203 case NONE:
204 return std::string();
205 case INVALID_GAIA_CREDENTIALS:
206 return "Invalid credentials.";
207 case USER_NOT_SIGNED_UP:
208 return "Not authorized.";
209 case CONNECTION_FAILED:
210 return base::StringPrintf("Connection failed (%d).", network_error_);
211 case CAPTCHA_REQUIRED:
212 return base::StringPrintf("CAPTCHA required (%s).",
213 captcha_.token.c_str());
214 case ACCOUNT_DELETED:
215 return "Account deleted.";
216 case ACCOUNT_DISABLED:
217 return "Account disabled.";
218 case SERVICE_UNAVAILABLE:
219 return "Service unavailable; try again later.";
220 case TWO_FACTOR:
221 return base::StringPrintf("2-step verification required (%s).",
222 second_factor_.token.c_str());
223 case REQUEST_CANCELED:
224 return "Request canceled.";
225 case HOSTED_NOT_ALLOWED:
226 return "Google account required.";
227 case UNEXPECTED_SERVICE_RESPONSE:
228 return base::StringPrintf("Unexpected service response (%s)",
229 error_message_.c_str());
230 case SERVICE_ERROR:
231 return base::StringPrintf("Service responded with error: '%s'",
232 error_message_.c_str());
233 case WEB_LOGIN_REQUIRED:
234 return "Less secure apps may not authenticate with this account. "
235 "Please visit: "
236 "https://www.google.com/settings/security/lesssecureapps";
237 default:
238 NOTREACHED();
239 return std::string();
243 GoogleServiceAuthError::GoogleServiceAuthError(State s, int error)
244 : state_(s),
245 network_error_(error) {
248 GoogleServiceAuthError::GoogleServiceAuthError(
249 State s,
250 const std::string& captcha_token,
251 const GURL& captcha_audio_url,
252 const GURL& captcha_image_url,
253 const GURL& captcha_unlock_url,
254 int image_width,
255 int image_height)
256 : state_(s),
257 captcha_(captcha_token, captcha_audio_url, captcha_image_url,
258 captcha_unlock_url, image_width, image_height),
259 network_error_(0) {