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
|
// Copyright 2013 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/download/download_dir_policy_handler.h"
#include <stddef.h>
#include <memory>
#include "base/files/file_path.h"
#include "base/strings/utf_string_conversions.h"
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/browser/ash/policy/skyvault/policy_utils.h"
#include "chrome/browser/download/download_dir_util.h"
#include "chrome/browser/download/download_prefs.h"
#include "chrome/browser/policy/policy_path_parser.h"
#include "chrome/common/pref_names.h"
#include "components/drive/drive_pref_names.h"
#include "components/policy/core/browser/configuration_policy_handler_parameters.h"
#include "components/policy/core/browser/policy_error_map.h"
#include "components/policy/core/common/policy_map.h"
#include "components/policy/core/common/policy_types.h"
#include "components/policy/policy_constants.h"
#include "components/prefs/pref_value_map.h"
#include "components/strings/grit/components_strings.h"
DownloadDirPolicyHandler::DownloadDirPolicyHandler()
: TypeCheckingPolicyHandler(policy::key::kDownloadDirectory,
base::Value::Type::STRING) {}
DownloadDirPolicyHandler::~DownloadDirPolicyHandler() = default;
bool DownloadDirPolicyHandler::CheckPolicySettings(
const policy::PolicyMap& policies,
policy::PolicyErrorMap* errors) {
const base::Value* value = nullptr;
if (!CheckAndGetValue(policies, errors, &value)) {
return false;
}
#if BUILDFLAG(IS_CHROMEOS)
// Download directory can only be set as a user policy. If it is set through
// platform policy for a chromeos=1 build, ignore it.
if (value &&
policies.Get(policy_name())->scope != policy::POLICY_SCOPE_USER) {
errors->AddError(policy_name(), IDS_POLICY_SCOPE_ERROR);
return false;
}
#endif
return true;
}
void DownloadDirPolicyHandler::ApplyPolicySettingsWithParameters(
const policy::PolicyMap& policies,
const policy::PolicyHandlerParameters& parameters,
PrefValueMap* prefs) {
const base::Value* value =
policies.GetValue(policy_name(), base::Value::Type::STRING);
if (!value) {
return;
}
std::string str_value = value->GetString();
base::FilePath::StringType string_value =
#if BUILDFLAG(IS_WIN)
base::UTF8ToWide(str_value);
#else
str_value;
#endif
// Make sure the path isn't empty, since that will point to an undefined
// location; the default location is used instead in that case.
// This is checked after path expansion because a non-empty policy value can
// lead to an empty path value after expansion (e.g. "\"\"").
base::FilePath::StringType expanded_value =
download_dir_util::ExpandDownloadDirectoryPath(string_value, parameters);
if (expanded_value.empty()) {
expanded_value = policy::path_parser::ExpandPathVariables(
DownloadPrefs::GetDefaultDownloadDirectory().value());
}
#if BUILDFLAG(IS_WIN)
prefs->SetValue(prefs::kDownloadDefaultDirectory,
base::Value(base::WideToUTF8(expanded_value)));
#else
prefs->SetValue(prefs::kDownloadDefaultDirectory,
base::Value(expanded_value));
#endif
const bool is_mandatory =
policies.Get(policy_name())->level == policy::POLICY_LEVEL_MANDATORY;
// If the policy is mandatory, prompt for download should be disabled.
// Otherwise, it would enable a user to bypass the mandatory policy.
if (is_mandatory) {
prefs->SetBoolean(prefs::kPromptForDownload, false);
}
#if BUILDFLAG(IS_CHROMEOS)
const bool download_to_drive =
download_dir_util::DownloadToDrive(string_value, parameters);
const bool download_to_one_drive =
download_dir_util::DownloadToOneDrive(string_value, parameters);
// If the policy enforces a cloud location, ensure the corresponding service
// remains enabled.
if (is_mandatory) {
if (download_to_drive) {
prefs->SetBoolean(drive::prefs::kDisableDrive, false);
} else if (download_to_one_drive) {
prefs->SetBoolean(prefs::kAllowUserToRemoveODFS, false);
}
}
// Set the Files App default folder, regardless of policy enforcement.
if (download_to_drive) {
prefs->SetString(prefs::kFilesAppDefaultLocation,
download_dir_util::kLocationGoogleDrive);
} else if (download_to_one_drive) {
prefs->SetString(prefs::kFilesAppDefaultLocation,
download_dir_util::kLocationOneDrive);
}
#endif // BUILDFLAG(IS_CHROMEOS)
}
void DownloadDirPolicyHandler::ApplyPolicySettings(
const policy::PolicyMap& /* policies */,
PrefValueMap* /* prefs */) {
NOTREACHED();
}
|