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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
// Copyright 2019 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/ash/app_mode/web_app/web_kiosk_app_manager.h"
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <utility>
#include <vector>
#include "base/check.h"
#include "base/functional/bind.h"
#include "base/notreached.h"
#include "chrome/browser/ash/app_mode/kiosk_app_data_base.h"
#include "chrome/browser/ash/app_mode/kiosk_app_manager_base.h"
#include "chrome/browser/ash/app_mode/kiosk_app_types.h"
#include "chrome/browser/ash/app_mode/kiosk_cryptohome_remover.h"
#include "chrome/browser/ash/app_mode/kiosk_system_session.h"
#include "chrome/browser/ash/app_mode/web_app/web_kiosk_app_data.h"
#include "chrome/browser/ash/policy/core/device_local_account.h"
#include "chrome/browser/chromeos/app_mode/kiosk_web_app_update_observer.h"
#include "chrome/browser/web_applications/web_app_helpers.h"
#include "chrome/browser/web_applications/web_app_install_info.h"
#include "chromeos/ash/components/settings/cros_settings_names.h"
#include "components/account_id/account_id.h"
#include "components/prefs/pref_registry_simple.h"
#include "url/gurl.h"
namespace ash {
namespace {
// This class is owned by `ChromeBrowserMainPartsAsh`.
static WebKioskAppManager* g_web_kiosk_app_manager = nullptr;
} // namespace
// static
const char WebKioskAppManager::kWebKioskDictionaryName[] = "web-kiosk";
// static
void WebKioskAppManager::RegisterPrefs(PrefRegistrySimple* registry) {
registry->RegisterDictionaryPref(kWebKioskDictionaryName);
}
// static
bool WebKioskAppManager::IsInitialized() {
return g_web_kiosk_app_manager;
}
// static
WebKioskAppManager* WebKioskAppManager::Get() {
CHECK(g_web_kiosk_app_manager);
return g_web_kiosk_app_manager;
}
// static
KioskAppManagerBase::App WebKioskAppManager::CreateAppByData(
const WebKioskAppData& data) {
auto app = KioskAppManagerBase::App(data);
app.url = data.install_url();
return app;
}
WebKioskAppManager::WebKioskAppManager()
: auto_launch_account_id_(EmptyAccountId()) {
CHECK(!g_web_kiosk_app_manager); // Only one instance is allowed.
g_web_kiosk_app_manager = this;
UpdateAppsFromPolicy();
}
WebKioskAppManager::~WebKioskAppManager() {
g_web_kiosk_app_manager = nullptr;
}
std::vector<WebKioskAppManager::App> WebKioskAppManager::GetApps() const {
std::vector<App> apps;
apps.reserve(apps_.size());
for (const auto& manager_app : apps_) {
App app(*manager_app);
app.url = manager_app->install_url();
apps.push_back(std::move(app));
}
return apps;
}
void WebKioskAppManager::LoadIcons() {
for (auto& web_app : apps_) {
web_app->LoadIcon();
}
}
const AccountId& WebKioskAppManager::GetAutoLaunchAccountId() const {
return auto_launch_account_id_;
}
const WebKioskAppData* WebKioskAppManager::GetAppByAccountId(
const AccountId& account_id) const {
for (const auto& web_app : apps_) {
if (web_app->account_id() == account_id) {
return web_app.get();
}
}
return nullptr;
}
void WebKioskAppManager::UpdateAppFromInstallInfo(
const AccountId& account_id,
const web_app::WebAppInstallInfo& app_info) {
for (auto& web_app : apps_) {
if (web_app->account_id() == account_id) {
web_app->UpdateFromWebAppInfo(app_info);
return;
}
}
NOTREACHED();
}
void WebKioskAppManager::UpdateApp(const AccountId& account_id,
const std::string& title,
const GURL& start_url,
const web_app::IconBitmaps& icon_bitmaps) {
for (auto& web_app : apps_) {
if (web_app->account_id() == account_id) {
web_app->UpdateAppInfo(title, start_url, icon_bitmaps);
return;
}
}
NOTREACHED();
}
void WebKioskAppManager::AddAppForTesting(const AccountId& account_id,
const GURL& install_url) {
const std::string app_id =
web_app::GenerateAppId(/*manifest_id_path=*/std::nullopt, install_url);
apps_.push_back(std::make_unique<WebKioskAppData>(
*this, app_id, account_id, install_url, /*title*/ std::string(),
/*icon_url*/ GURL()));
NotifyKioskAppsChanged();
}
void WebKioskAppManager::OnKioskSessionStarted(const KioskAppId& app_id) {
NotifySessionInitialized();
}
void WebKioskAppManager::UpdateAppsFromPolicy() {
// Store current apps. We will compare old and new apps to determine which
// apps are new, and which were deleted.
std::map<std::string, std::unique_ptr<WebKioskAppData>> old_apps;
for (auto& app : apps_) {
old_apps[app->app_id()] = std::move(app);
}
apps_.clear();
auto_launch_account_id_.clear();
auto_launched_with_zero_delay_ = false;
std::string auto_login_account_id_from_settings;
CrosSettings::Get()->GetString(kAccountsPrefDeviceLocalAccountAutoLoginId,
&auto_login_account_id_from_settings);
// Re-populates `apps_` and reuses existing apps when possible.
const std::vector<policy::DeviceLocalAccount> device_local_accounts =
policy::GetDeviceLocalAccounts(CrosSettings::Get());
for (auto account : device_local_accounts) {
if (account.type != policy::DeviceLocalAccountType::kWebKioskApp) {
continue;
}
const AccountId account_id(AccountId::FromUserEmail(account.user_id));
if (account.account_id == auto_login_account_id_from_settings) {
auto_launch_account_id_ = account_id;
int auto_launch_delay = 0;
CrosSettings::Get()->GetInteger(
kAccountsPrefDeviceLocalAccountAutoLoginDelay, &auto_launch_delay);
auto_launched_with_zero_delay_ = auto_launch_delay == 0;
}
GURL url(account.web_kiosk_app_info.url());
std::string title = account.web_kiosk_app_info.title();
GURL icon_url = GURL(account.web_kiosk_app_info.icon_url());
std::string app_id =
web_app::GenerateAppId(/*manifest_id_path=*/std::nullopt, url);
auto old_it = old_apps.find(app_id);
if (old_it != old_apps.end()) {
apps_.push_back(std::move(old_it->second));
old_apps.erase(old_it);
} else {
apps_.push_back(std::make_unique<WebKioskAppData>(
*this, app_id, account_id, std::move(url), title,
std::move(icon_url)));
apps_.back()->LoadFromCache();
}
KioskCryptohomeRemover::CancelDelayedCryptohomeRemoval(account_id);
}
std::vector<const KioskAppDataBase*> old_apps_to_remove;
for (auto& entry : old_apps) {
old_apps_to_remove.emplace_back(entry.second.get());
}
ClearRemovedApps(old_apps_to_remove);
NotifyKioskAppsChanged();
}
void WebKioskAppManager::StartObservingAppUpdate(Profile* profile,
const AccountId& account_id) {
app_update_observer_ = std::make_unique<chromeos::KioskWebAppUpdateObserver>(
profile, account_id, WebKioskAppData::kIconSize,
base::BindRepeating(&WebKioskAppManager::UpdateApp,
weak_ptr_factory_.GetWeakPtr()));
}
} // namespace ash
|