#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_MANAGED_USER_CREATION_CONTROLLER_OLD_H_
#define CHROME_BROWSER_CHROMEOS_LOGIN_MANAGED_MANAGED_USER_CREATION_CONTROLLER_OLD_H_
#include <string>
#include "base/files/file_path.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/strings/string16.h"
#include "base/timer/timer.h"
#include "base/values.h"
#include "chrome/browser/chromeos/login/managed/managed_user_authenticator.h"
#include "chrome/browser/chromeos/login/managed/managed_user_creation_controller.h"
#include "chrome/browser/managed_mode/managed_user_registration_utility.h"
class Profile;
namespace chromeos {
class ManagedUserCreationControllerOld
: public ManagedUserCreationController,
ManagedUserAuthenticator::AuthStatusConsumer {
public:
ManagedUserCreationControllerOld(StatusConsumer* consumer,
const std::string& manager_id);
virtual ~ManagedUserCreationControllerOld();
virtual void StartCreation(const base::string16& display_name,
const std::string& password,
int avatar_index) OVERRIDE;
virtual void StartImport(const base::string16& display_name,
const std::string& password,
int avatar_index,
const std::string& sync_id,
const std::string& master_key) OVERRIDE;
virtual void StartImport(const base::string16& display_name,
int avatar_index,
const std::string& sync_id,
const std::string& master_key,
const base::DictionaryValue* password_data,
const std::string& encryption_key,
const std::string& signature_key) OVERRIDE;
virtual void SetManagerProfile(Profile* manager_profile) OVERRIDE;
virtual Profile* GetManagerProfile() OVERRIDE;
virtual void CancelCreation() OVERRIDE;
virtual void FinishCreation() OVERRIDE;
virtual std::string GetManagedUserId() OVERRIDE;
private:
enum CreationType { NEW_USER, USER_IMPORT, };
struct UserCreationContext {
UserCreationContext();
~UserCreationContext();
base::string16 display_name;
int avatar_index;
std::string manager_id;
std::string local_user_id;
std::string sync_user_id;
std::string password;
std::string mount_hash;
std::string master_key;
bool token_acquired;
std::string token;
bool token_succesfully_written;
CreationType creation_type;
base::DictionaryValue password_data;
Profile* manager_profile;
scoped_ptr<ManagedUserRegistrationUtility> registration_utility;
};
void StartCreation();
virtual void OnAuthenticationFailure(
ManagedUserAuthenticator::AuthState error) OVERRIDE;
virtual void OnMountSuccess(const std::string& mount_hash) OVERRIDE;
virtual void OnAddKeySuccess() OVERRIDE;
void CreationTimedOut();
void RegistrationCallback(const GoogleServiceAuthError& error,
const std::string& token);
void TokenFetched(const std::string& token);
void OnManagedUserFilesStored(bool success);
scoped_refptr<ManagedUserAuthenticator> authenticator_;
scoped_ptr<UserCreationContext> creation_context_;
base::OneShotTimer<ManagedUserCreationControllerOld> timeout_timer_;
base::WeakPtrFactory<ManagedUserCreationControllerOld> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(ManagedUserCreationControllerOld);
};
}
#endif