File: policy_ui_utils.cc

package info (click to toggle)
chromium 140.0.7339.127-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 6,192,880 kB
  • sloc: cpp: 35,093,808; ansic: 7,161,670; javascript: 4,199,694; python: 1,441,797; asm: 949,904; xml: 747,503; pascal: 187,748; perl: 88,691; sh: 88,248; objc: 79,953; sql: 52,714; cs: 44,599; fortran: 24,137; makefile: 22,114; tcl: 15,277; php: 13,980; yacc: 9,000; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (119 lines) | stat: -rw-r--r-- 4,079 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/policy/policy_ui_utils.h"

#include <optional>
#include <string>

#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/enterprise/identifiers/profile_id_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/browser/ui/webui/version/version_ui.h"
#include "chrome/common/channel_info.h"
#include "components/enterprise/browser/identifiers/profile_id_service.h"
#include "components/policy/core/browser/webui/json_generation.h"
#include "components/policy/core/common/cloud/cloud_policy_manager.h"
#include "components/version_info/version_info.h"
#include "ui/base/l10n/l10n_util.h"

#if BUILDFLAG(IS_CHROMEOS)
#include "chromeos/version/version_loader.h"
#endif

#if BUILDFLAG(IS_WIN)
#include "chrome/browser/ui/webui/version/version_util_win.h"
#endif

#if BUILDFLAG(IS_MAC)
#include "base/mac/mac_util.h"
#endif

#if BUILDFLAG(IS_ANDROID)
#include "chrome/browser/ui/android/android_about_app_info.h"
#endif

namespace policy {

JsonGenerationParams GetChromeMetadataParams(
    const std::string& application_name) {
  std::optional<std::string> cohort_name;
#if BUILDFLAG(IS_WIN)
  std::u16string cohort_version_info =
      version_utils::win::GetCohortVersionInfo();
  if (!cohort_version_info.empty()) {
    cohort_name = base::StringPrintf(
        " %s", base::UTF16ToUTF8(cohort_version_info).c_str());
  }
#endif
  std::optional<std::string> os_name;
  std::optional<std::string> platform_name;
#if BUILDFLAG(IS_CHROMEOS)
  platform_name = chromeos::version_loader::GetVersion(
      chromeos::version_loader::VERSION_FULL);
#elif BUILDFLAG(IS_MAC)
  os_name = base::mac::GetOSDisplayName();
#else
  os_name = version_info::GetOSType();
#if BUILDFLAG(IS_WIN)
  os_name = os_name.value() + " " + version_utils::win::GetFullWindowsVersion();
#elif BUILDFLAG(IS_ANDROID)
  os_name = os_name.value() + " " + AndroidAboutAppInfo::GetOsInfo();
#endif
#endif
  policy::JsonGenerationParams params;
  params.with_application_name(application_name)
      .with_channel_name(
          chrome::GetChannelName(chrome::WithExtendedStable(true)))
      .with_processor_variation(
          l10n_util::GetStringUTF8(VersionUI::VersionProcessorVariation()));

  if (cohort_name) {
    params.with_cohort_name(cohort_name.value());
  }

  if (os_name) {
    params.with_os_name(os_name.value());
  }

  if (platform_name) {
    params.with_platform_name(platform_name.value());
  }
  return params;
}

std::unique_ptr<enterprise_promotion::PromotionEligibilityChecker>
CreatePromotionEligibilityChecker(Profile* profile,
                                  bool dismissed_banner_pref,
                                  bool feature_enabled) {
  if (!feature_enabled || profile->IsIncognitoProfile() ||
      profile->IsGuestSession() || !profile->GetCloudPolicyManager() ||
      !profile->GetCloudPolicyManager()->core()->client()) {
    return nullptr;
  }

  auto* identity_manager = IdentityManagerFactory::GetForProfile(profile);
  auto* profile_id_service =
      enterprise::ProfileIdServiceFactory::GetForProfile(profile);

  if (!profile_id_service->GetProfileId().has_value()) {
    return nullptr;
  }

  std::unique_ptr<enterprise_promotion::PromotionEligibilityChecker> promotion_eligibility_checker =
      std::make_unique<enterprise_promotion::PromotionEligibilityChecker>(
          /*profile_id=*/profile_id_service->GetProfileId().value(),
          /*client=*/
          profile->GetCloudPolicyManager()->core()->client(),
          /*identity_manager=*/std::move(identity_manager),
          /*locale=*/g_browser_process->GetApplicationLocale(),
          /*dismissed_banner_pref=*/dismissed_banner_pref);

  return promotion_eligibility_checker;
}
}  // namespace policy