#include <algorithm>
#include <string>
#include <vector>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/strings/string_split.h"
#include "chrome/updater/activity_impl_util_posix.h"
#include "chrome/updater/updater_branding.h"
#include "chrome/updater/updater_scope.h"
namespace updater {
namespace {
std::vector<base::FilePath> ReadHomeDirsFromPasswd() {
std::string passwd_contents;
if (!base::ReadFileToString(base::FilePath("/etc/passwd"),
&passwd_contents)) {
return {};
}
std::vector<base::FilePath> home_dirs;
std::ranges::transform(
base::SplitString(passwd_contents, "\n",
base::WhitespaceHandling::TRIM_WHITESPACE,
base::SplitResult::SPLIT_WANT_NONEMPTY),
std::back_inserter(home_dirs), [](const std::string& line) {
std::vector<std::string> entries = base::SplitString(
line, ":", base::WhitespaceHandling::KEEP_WHITESPACE,
base::SplitResult::SPLIT_WANT_ALL);
return entries.size() == 7 ? base::FilePath(entries[5])
: base::FilePath();
});
std::erase(home_dirs, base::FilePath());
return home_dirs;
}
}
std::vector<base::FilePath> GetHomeDirPaths(UpdaterScope scope) {
switch (scope) {
case UpdaterScope::kUser: {
const base::FilePath path = base::GetHomeDir();
if (path.empty()) {
return {};
}
return {path};
}
case UpdaterScope::kSystem: {
return ReadHomeDirsFromPasswd();
}
}
return {};
}
base::FilePath GetActiveFile(const base::FilePath& home_dir,
const std::string& id) {
return home_dir.Append(".local")
.Append(COMPANY_SHORTNAME_STRING)
.Append(PRODUCT_FULLNAME_STRING)
.Append("Actives")
.Append(id);
}
}