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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
// Copyright 2023 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/chromeos/upload_office_to_cloud/upload_office_to_cloud.h"
#include <string_view>
#include "base/containers/contains.h"
#include "chrome/browser/chromeos/enterprise/cloud_storage/policy_utils.h"
#include "chrome/browser/policy/profile_policy_connector.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/extensions/api/odfs_config_private.h"
#include "chrome/common/pref_names.h"
#include "chromeos/constants/chromeos_features.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service.h"
using extensions::api::odfs_config_private::Mount;
namespace chromeos {
namespace {
bool IsPrefValueSetToAllowed(std::string_view pref_value) {
return pref_value == cloud_upload::kCloudUploadPolicyAllowed ||
pref_value == cloud_upload::kCloudUploadPolicyAutomated;
}
bool IsPrefValueSetToAutomated(std::string_view pref_value) {
return pref_value == cloud_upload::kCloudUploadPolicyAutomated;
}
} // namespace
bool IsEligibleAndEnabledUploadOfficeToCloud(const Profile* profile) {
if (!chromeos::features::IsUploadOfficeToCloudEnabled()) {
return false;
}
if (!profile) {
return false;
}
// Drive and OneDrive are disabled in Guest mode.
if (profile->IsGuestSession()) {
return false;
}
// If `kUploadOfficeToCloudForEnterprise` flag is enabled, we loosen the
// condition below to allow managed accounts.
if (chromeos::features::IsUploadOfficeToCloudForEnterpriseEnabled()) {
return !profile->IsChild();
}
// Managed users, e.g. enterprise account, child account, are not eligible.
if (profile->GetProfilePolicyConnector()->IsManaged()) {
return false;
}
return true;
}
namespace cloud_upload {
void RegisterProfilePrefs(PrefRegistrySimple* registry) {
registry->RegisterStringPref(prefs::kMicrosoftOfficeCloudUpload,
kCloudUploadPolicyAllowed);
registry->RegisterStringPref(prefs::kGoogleWorkspaceCloudUpload,
kCloudUploadPolicyAllowed);
}
bool IsMicrosoftOfficeOneDriveIntegrationAllowed(const Profile* profile) {
if (!IsEligibleAndEnabledUploadOfficeToCloud(profile)) {
return false;
}
if (profile->GetProfilePolicyConnector()->IsManaged()) {
return chromeos::features::
IsMicrosoftOneDriveIntegrationForEnterpriseEnabled() &&
base::Contains(
std::vector<Mount>{Mount::kAllowed, Mount::kAutomated},
chromeos::cloud_storage::GetMicrosoftOneDriveMount(profile));
}
return true;
}
bool IsMicrosoftOfficeOneDriveIntegrationAutomated(const Profile* profile) {
if (!IsEligibleAndEnabledUploadOfficeToCloud(profile)) {
return false;
}
if (profile->GetProfilePolicyConnector()->IsManaged()) {
return chromeos::features::
IsMicrosoftOneDriveIntegrationForEnterpriseEnabled() &&
chromeos::cloud_storage::GetMicrosoftOneDriveMount(profile) ==
Mount::kAutomated;
}
return true;
}
bool IsMicrosoftOfficeCloudUploadAllowed(Profile* profile) {
if (!chromeos::features::IsUploadOfficeToCloudForEnterpriseEnabled()) {
return IsEligibleAndEnabledUploadOfficeToCloud(profile);
}
return IsEligibleAndEnabledUploadOfficeToCloud(profile) &&
IsMicrosoftOfficeOneDriveIntegrationAllowed(profile) &&
IsPrefValueSetToAllowed(profile->GetPrefs()->GetString(
prefs::kMicrosoftOfficeCloudUpload));
}
bool IsMicrosoftOfficeCloudUploadAutomated(Profile* profile) {
if (!chromeos::features::IsUploadOfficeToCloudForEnterpriseEnabled()) {
return false;
}
return IsEligibleAndEnabledUploadOfficeToCloud(profile) &&
IsMicrosoftOfficeOneDriveIntegrationAllowed(profile) &&
IsPrefValueSetToAutomated(profile->GetPrefs()->GetString(
prefs::kMicrosoftOfficeCloudUpload));
}
bool IsGoogleWorkspaceCloudUploadAllowed(Profile* profile) {
if (!chromeos::features::IsUploadOfficeToCloudForEnterpriseEnabled()) {
return IsEligibleAndEnabledUploadOfficeToCloud(profile);
}
return IsEligibleAndEnabledUploadOfficeToCloud(profile) &&
IsPrefValueSetToAllowed(profile->GetPrefs()->GetString(
prefs::kGoogleWorkspaceCloudUpload));
}
bool IsGoogleWorkspaceCloudUploadAutomated(Profile* profile) {
if (!chromeos::features::IsUploadOfficeToCloudForEnterpriseEnabled()) {
return false;
}
return IsEligibleAndEnabledUploadOfficeToCloud(profile) &&
IsPrefValueSetToAutomated(profile->GetPrefs()->GetString(
prefs::kGoogleWorkspaceCloudUpload));
}
} // namespace cloud_upload
} // namespace chromeos
|