// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_ASH_POLICY_ENROLLMENT_ENROLLMENT_REQUISITION_MANAGER_H_
#define CHROME_BROWSER_ASH_POLICY_ENROLLMENT_ENROLLMENT_REQUISITION_MANAGER_H_

#include <string>

class PrefRegistrySimple;
class PrefService;

namespace policy {

// Managed device requisition that is being stored in local state and is used
// during enrollment to specify the intended use of the device.
class EnrollmentRequisitionManager {
 public:
  EnrollmentRequisitionManager() = delete;
  ~EnrollmentRequisitionManager() = delete;
  EnrollmentRequisitionManager(const EnrollmentRequisitionManager&) = delete;
  EnrollmentRequisitionManager* operator=(const EnrollmentRequisitionManager&) =
      delete;

  // Well-known requisition types.
  static const char kNoRequisition[];
  static const char kRemoraRequisition[];
  static const char kSharkRequisition[];
  static const char kDemoRequisition[];
  static const char kCuttlefishRequisition[];
  static const char kSquidRequisition[];

  // Initializes requisition settings at OOBE with values from VPD.
  static void Initialize(PrefService& local_state);

  // Gets/Sets the device requisition.
  static std::string GetDeviceRequisition(const PrefService& local_state);
  static void SetDeviceRequisition(PrefService& local_state,
                                   const std::string& requisition);
  static bool IsRemoraRequisition(const PrefService& local_state);
  static bool IsSharkRequisition(const PrefService& local_State);

  // If the current device extends the CFM Overlay or has Remora bit set
  static bool IsMeetDevice(const PrefService& local_state);

  // If the current device is a Cuttlefish device.
  static bool IsCuttlefishDevice();

  // If the current device is a Squid device.
  static bool IsSquidDevice();

  // Gets/Sets the sub organization.
  static std::string GetSubOrganization(const PrefService& local_state);
  static void SetSubOrganization(PrefService& local_state,
                                 const std::string& sub_organization);

  // If set, the device will start the enterprise enrollment OOBE.
  static void SetDeviceEnrollmentAutoStart(PrefService& local_state);

  // Pref registration helper.
  static void RegisterPrefs(PrefRegistrySimple* registry);
};

}  // namespace policy

#endif  // CHROME_BROWSER_ASH_POLICY_ENROLLMENT_ENROLLMENT_REQUISITION_MANAGER_H_
