blob: 58b86cd524337209f8c380e7787563de529d2ea1 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ios/web_view/internal/signin/ios_web_view_signin_client.h"
#include "components/signin/core/browser/cookie_settings_util.h"
#include "components/signin/core/browser/signin_cookie_change_subscription.h"
#include "google_apis/gaia/gaia_auth_fetcher.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
IOSWebViewSigninClient::IOSWebViewSigninClient(
PrefService* pref_service,
net::URLRequestContextGetter* url_request_context,
scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory,
SigninErrorController* signin_error_controller,
scoped_refptr<content_settings::CookieSettings> cookie_settings,
scoped_refptr<HostContentSettingsMap> host_content_settings_map,
scoped_refptr<TokenWebData> token_web_data)
: network_callback_helper_(
std::make_unique<WaitForNetworkCallbackHelper>()),
pref_service_(pref_service),
url_request_context_(url_request_context),
url_loader_factory_(url_loader_factory),
signin_error_controller_(signin_error_controller),
cookie_settings_(cookie_settings),
host_content_settings_map_(host_content_settings_map),
token_web_data_(token_web_data) {
signin_error_controller_->AddObserver(this);
}
IOSWebViewSigninClient::~IOSWebViewSigninClient() {
signin_error_controller_->RemoveObserver(this);
}
void IOSWebViewSigninClient::Shutdown() {
network_callback_helper_.reset();
}
void IOSWebViewSigninClient::OnSignedOut() {}
std::string IOSWebViewSigninClient::GetProductVersion() {
// TODO(crbug.com/768689): Implement this method with appropriate values.
return "";
}
base::Time IOSWebViewSigninClient::GetInstallDate() {
// TODO(crbug.com/768689): Implement this method with appropriate values.
return base::Time::FromTimeT(0);
}
scoped_refptr<TokenWebData> IOSWebViewSigninClient::GetDatabase() {
return token_web_data_;
}
PrefService* IOSWebViewSigninClient::GetPrefs() {
return pref_service_;
}
net::URLRequestContextGetter* IOSWebViewSigninClient::GetURLRequestContext() {
return url_request_context_;
}
scoped_refptr<network::SharedURLLoaderFactory>
IOSWebViewSigninClient::GetURLLoaderFactory() {
return url_loader_factory_;
}
void IOSWebViewSigninClient::DoFinalInit() {}
bool IOSWebViewSigninClient::CanRevokeCredentials() {
return true;
}
std::string IOSWebViewSigninClient::GetSigninScopedDeviceId() {
return GetOrCreateScopedDeviceIdPref(GetPrefs());
}
bool IOSWebViewSigninClient::IsFirstRun() const {
return false;
}
bool IOSWebViewSigninClient::AreSigninCookiesAllowed() {
return signin::SettingsAllowSigninCookies(cookie_settings_.get());
}
void IOSWebViewSigninClient::AddContentSettingsObserver(
content_settings::Observer* observer) {
host_content_settings_map_->AddObserver(observer);
}
void IOSWebViewSigninClient::RemoveContentSettingsObserver(
content_settings::Observer* observer) {
host_content_settings_map_->RemoveObserver(observer);
}
std::unique_ptr<SigninClient::CookieChangeSubscription>
IOSWebViewSigninClient::AddCookieChangeCallback(
const GURL& url,
const std::string& name,
net::CookieChangeCallback callback) {
scoped_refptr<net::URLRequestContextGetter> context_getter =
GetURLRequestContext();
DCHECK(context_getter.get());
return std::make_unique<SigninCookieChangeSubscription>(
context_getter, url, name, std::move(callback));
}
void IOSWebViewSigninClient::DelayNetworkCall(const base::Closure& callback) {
network_callback_helper_->HandleCallback(callback);
}
std::unique_ptr<GaiaAuthFetcher> IOSWebViewSigninClient::CreateGaiaAuthFetcher(
GaiaAuthConsumer* consumer,
const std::string& source,
scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory) {
return std::make_unique<GaiaAuthFetcher>(consumer, source,
url_loader_factory);
}
void IOSWebViewSigninClient::OnErrorChanged() {}