blob: 8c0a165c3111e21aafd3597d105a25af527d73c7 [file] [log] [blame]
// Copyright (c) 2012 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 "chrome/browser/policy/cloud/user_policy_signin_service.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/callback.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/policy/cloud/cloud_policy_client_registration_helper.h"
#include "chrome/browser/policy/cloud/user_cloud_policy_manager.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/signin/profile_oauth2_token_service.h"
#include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
#include "chrome/browser/signin/signin_manager.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_source.h"
#include "google_apis/gaia/gaia_constants.h"
#include "net/url_request/url_request_context_getter.h"
namespace policy {
UserPolicySigninService::UserPolicySigninService(
Profile* profile,
PrefService* local_state,
DeviceManagementService* device_management_service,
ProfileOAuth2TokenService* token_service)
: UserPolicySigninServiceBase(profile,
local_state,
device_management_service),
oauth2_token_service_(token_service) {
// ProfileOAuth2TokenService should not yet have loaded its tokens since this
// happens in the background after PKS initialization - so this service
// should always be created before the oauth token is available.
DCHECK(!oauth2_token_service_->RefreshTokenIsAvailable(
oauth2_token_service_->GetPrimaryAccountId()));
// Listen for an OAuth token to become available so we can register a client
// if for some reason the client is not already registered (for example, if
// the policy load failed during initial signin).
oauth2_token_service_->AddObserver(this);
}
UserPolicySigninService::~UserPolicySigninService() {
}
void UserPolicySigninService::PrepareForUserCloudPolicyManagerShutdown() {
// Stop any pending registration helper activity. We do this here instead of
// in the destructor because we want to shutdown the registration helper
// before UserCloudPolicyManager shuts down the CloudPolicyClient.
registration_helper_.reset();
UserPolicySigninServiceBase::PrepareForUserCloudPolicyManagerShutdown();
}
void UserPolicySigninService::Shutdown() {
UserPolicySigninServiceBase::Shutdown();
oauth2_token_service_->RemoveObserver(this);
}
void UserPolicySigninService::RegisterForPolicy(
const std::string& username,
const std::string& oauth2_refresh_token,
const PolicyRegistrationCallback& callback) {
DCHECK(!oauth2_refresh_token.empty());
// Create a new CloudPolicyClient for fetching the DMToken.
scoped_ptr<CloudPolicyClient> policy_client = PrepareToRegister(username);
if (!policy_client) {
callback.Run(std::string(), std::string());
return;
}
// Fire off the registration process. Callback keeps the CloudPolicyClient
// alive for the length of the registration process.
registration_helper_.reset(new CloudPolicyClientRegistrationHelper(
request_context(),
policy_client.get(),
ShouldForceLoadPolicy(),
enterprise_management::DeviceRegisterRequest::BROWSER));
registration_helper_->StartRegistrationWithLoginToken(
oauth2_refresh_token,
base::Bind(&UserPolicySigninService::CallPolicyRegistrationCallback,
base::Unretained(this),
base::Passed(&policy_client),
callback));
}
void UserPolicySigninService::CallPolicyRegistrationCallback(
scoped_ptr<CloudPolicyClient> client,
PolicyRegistrationCallback callback) {
registration_helper_.reset();
callback.Run(client->dm_token(), client->client_id());
}
void UserPolicySigninService::OnRefreshTokenAvailable(
const std::string& account_id) {
// If using a TestingProfile with no UserCloudPolicyManager, skip
// initialization.
if (!GetManager()) {
DVLOG(1) << "Skipping initialization for tests due to missing components.";
return;
}
// Ignore OAuth tokens for any account but the primary one.
if (account_id != oauth2_token_service_->GetPrimaryAccountId())
return;
// ProfileOAuth2TokenService now has a refresh token so initialize the
// UserCloudPolicyManager.
InitializeForSignedInUser(GetSigninManager()->GetAuthenticatedUsername());
}
void UserPolicySigninService::InitializeUserCloudPolicyManager(
const std::string& username,
scoped_ptr<CloudPolicyClient> client) {
UserPolicySigninServiceBase::InitializeUserCloudPolicyManager(username,
client.Pass());
ProhibitSignoutIfNeeded();
}
void UserPolicySigninService::ShutdownUserCloudPolicyManager() {
UserCloudPolicyManager* manager = GetManager();
// Allow the user to signout again.
if (manager)
GetSigninManager()->ProhibitSignout(false);
UserPolicySigninServiceBase::ShutdownUserCloudPolicyManager();
}
void UserPolicySigninService::OnInitializationCompleted(
CloudPolicyService* service) {
UserCloudPolicyManager* manager = GetManager();
DCHECK_EQ(service, manager->core()->service());
DCHECK(service->IsInitializationComplete());
// The service is now initialized - if the client is not yet registered, then
// it means that there is no cached policy and so we need to initiate a new
// client registration.
DVLOG_IF(1, manager->IsClientRegistered())
<< "Client already registered - not fetching DMToken";
if (!manager->IsClientRegistered()) {
if (!oauth2_token_service_->RefreshTokenIsAvailable(
oauth2_token_service_->GetPrimaryAccountId())) {
// No token yet - this class listens for OnRefreshTokenAvailable()
// and will re-attempt registration once the token is available.
DLOG(WARNING) << "No OAuth Refresh Token - delaying policy download";
return;
}
RegisterCloudPolicyService();
}
// If client is registered now, prohibit signout.
ProhibitSignoutIfNeeded();
}
void UserPolicySigninService::RegisterCloudPolicyService() {
DCHECK(!GetManager()->IsClientRegistered());
DVLOG(1) << "Fetching new DM Token";
// Do nothing if already starting the registration process.
if (registration_helper_)
return;
// Start the process of registering the CloudPolicyClient. Once it completes,
// policy fetch will automatically happen.
registration_helper_.reset(new CloudPolicyClientRegistrationHelper(
request_context(),
GetManager()->core()->client(),
ShouldForceLoadPolicy(),
enterprise_management::DeviceRegisterRequest::BROWSER));
registration_helper_->StartRegistration(
oauth2_token_service_,
oauth2_token_service_->GetPrimaryAccountId(),
base::Bind(&UserPolicySigninService::OnRegistrationComplete,
base::Unretained(this)));
}
void UserPolicySigninService::OnRegistrationComplete() {
ProhibitSignoutIfNeeded();
registration_helper_.reset();
}
void UserPolicySigninService::ProhibitSignoutIfNeeded() {
if (GetManager()->IsClientRegistered()) {
DVLOG(1) << "User is registered for policy - prohibiting signout";
GetSigninManager()->ProhibitSignout(true);
}
}
} // namespace policy