#include "chrome/browser/apps/app_service/policy_util.h"
#include <array>
#include <string_view>
#include <utility>
#include "base/containers/fixed_flat_map.h"
#include "base/no_destructor.h"
#include "base/ranges/algorithm.h"
#include "base/strings/string_util.h"
#include "chrome/browser/apps/app_service/app_service_proxy.h"
#include "chrome/browser/apps/app_service/app_service_proxy_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/web_applications/web_app_id_constants.h"
#include "components/crx_file/id_util.h"
#include "components/services/app_service/public/cpp/app_update.h"
#include "components/services/app_service/public/cpp/types_util.h"
#include "components/web_package/signed_web_bundles/signed_web_bundle_id.h"
#if BUILDFLAG(IS_CHROMEOS_ASH)
#include "ash/webui/system_apps/public/system_web_app_type.h"
#include "base/containers/map_util.h"
#include "base/types/optional_util.h"
#include "chrome/browser/ash/file_manager/office_file_tasks.h"
#include "chrome/browser/ash/file_manager/virtual_tasks/id_constants.h"
#endif
namespace apps_util {
namespace {
#if BUILDFLAG(IS_CHROMEOS_ASH)
namespace fm_tasks = file_manager::file_tasks;
constexpr auto kSystemWebAppsMapping =
base::MakeFixedFlatMap<std::string_view, ash::SystemWebAppType>(
{{"file_manager", ash::SystemWebAppType::FILE_MANAGER},
{"settings", ash::SystemWebAppType::SETTINGS},
{"camera", ash::SystemWebAppType::CAMERA},
{"terminal", ash::SystemWebAppType::TERMINAL},
{"media", ash::SystemWebAppType::MEDIA},
{"help", ash::SystemWebAppType::HELP},
{"print_management", ash::SystemWebAppType::PRINT_MANAGEMENT},
{"scanning", ash::SystemWebAppType::SCANNING},
{"diagnostics", ash::SystemWebAppType::DIAGNOSTICS},
{"connectivity_diagnostics",
ash::SystemWebAppType::CONNECTIVITY_DIAGNOSTICS},
{"eche", ash::SystemWebAppType::ECHE},
{"crosh", ash::SystemWebAppType::CROSH},
{"personalization", ash::SystemWebAppType::PERSONALIZATION},
{"shortcut_customization",
ash::SystemWebAppType::SHORTCUT_CUSTOMIZATION},
{"shimless_rma", ash::SystemWebAppType::SHIMLESS_RMA},
{"demo_mode", ash::SystemWebAppType::DEMO_MODE},
{"os_feedback", ash::SystemWebAppType::OS_FEEDBACK},
{"os_sanitize", ash::SystemWebAppType::OS_SANITIZE},
{"projector", ash::SystemWebAppType::PROJECTOR},
{"os_url_handler", ash::SystemWebAppType::OS_URL_HANDLER},
{"firmware_update", ash::SystemWebAppType::FIRMWARE_UPDATE},
{"os_flags", ash::SystemWebAppType::OS_FLAGS},
{"vc_background", ash::SystemWebAppType::VC_BACKGROUND},
{"print_preview_cros", ash::SystemWebAppType::PRINT_PREVIEW_CROS},
{"boca", ash::SystemWebAppType::BOCA},
{"app_mall", ash::SystemWebAppType::MALL},
{"recorder", ash::SystemWebAppType::RECORDER},
{"graduation", ash::SystemWebAppType::GRADUATION}});
constexpr ash::SystemWebAppType GetMaxSystemWebAppType() {
return base::ranges::max(kSystemWebAppsMapping, base::ranges::less{},
&decltype(kSystemWebAppsMapping)::value_type::second)
.second;
}
static_assert(GetMaxSystemWebAppType() == ash::SystemWebAppType::kMaxValue,
"Not all SWA types are listed in |system_web_apps_mapping|.");
constexpr auto kVirtualFileTasksMapping =
base::MakeFixedFlatMap<std::string_view, std::string_view>(
{{"install-isolated-web-app", fm_tasks::kActionIdInstallIsolatedWebApp},
{"microsoft-office", fm_tasks::kActionIdOpenInOffice},
{"google-docs", fm_tasks::kActionIdWebDriveOfficeWord},
{"google-spreadsheets", fm_tasks::kActionIdWebDriveOfficeExcel},
{"google-slides", fm_tasks::kActionIdWebDriveOfficePowerPoint}});
#endif
constexpr auto kPreinstalledWebAppsMapping = …;
std::optional<base::flat_map<std::string_view, std::string_view>>&
GetPreinstalledWebAppsMappingForTesting() { … }
}
bool IsChromeAppPolicyId(std::string_view policy_id) { … }
#if BUILDFLAG(IS_CHROMEOS_ASH)
bool IsArcAppPolicyId(std::string_view policy_id) {
return base::Contains(policy_id, '.') && !IsWebAppPolicyId(policy_id);
}
#endif
bool IsWebAppPolicyId(std::string_view policy_id) { … }
#if BUILDFLAG(IS_CHROMEOS_ASH)
bool IsSystemWebAppPolicyId(std::string_view policy_id) {
return base::Contains(kSystemWebAppsMapping, policy_id);
}
#endif
bool IsPreinstalledWebAppPolicyId(std::string_view policy_id) { … }
bool IsIsolatedWebAppPolicyId(std::string_view policy_id) { … }
#if BUILDFLAG(IS_CHROMEOS_ASH)
bool IsFileManagerVirtualTaskPolicyId(std::string_view policy_id) {
return GetVirtualTaskIdFromPolicyId(policy_id).has_value();
}
std::optional<std::string_view> GetVirtualTaskIdFromPolicyId(
std::string_view policy_id) {
if (!base::StartsWith(policy_id, kVirtualTaskPrefix)) {
return std::nullopt;
}
static constexpr size_t kOffset =
std::char_traits<char>::length(kVirtualTaskPrefix);
return base::OptionalFromPtr(
base::FindOrNull(kVirtualFileTasksMapping, policy_id.substr(kOffset)));
}
#endif
std::string TransformRawPolicyId(const std::string& raw_policy_id) { … }
std::vector<std::string> GetAppIdsFromPolicyId(Profile* profile,
const std::string& policy_id) { … }
std::optional<std::vector<std::string>> GetPolicyIdsFromAppId(
Profile* profile,
const std::string& app_id) { … }
#if BUILDFLAG(IS_CHROMEOS_ASH)
std::optional<std::string_view> GetPolicyIdForSystemWebAppType(
ash::SystemWebAppType swa_type) {
for (const auto& [policy_id, mapped_swa_type] : kSystemWebAppsMapping) {
if (mapped_swa_type == swa_type) {
return policy_id;
}
}
return {};
}
#endif
std::optional<std::string_view> GetPolicyIdForPreinstalledWebApp(
std::string_view app_id) { … }
void SetPreinstalledWebAppsMappingForTesting(
std::optional<base::flat_map<std::string_view, std::string_view>>
preinstalled_web_apps_mapping_for_testing) { … }
}