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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/webapps/browser/android/shortcut_info.h"
#include <string>
#include "base/feature_list.h"
#include "base/strings/utf_string_conversions.h"
#include "components/webapps/browser/android/webapps_icon_utils.h"
#include "components/webapps/browser/features.h"
#include "shortcut_info.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
#include "third_party/blink/public/common/manifest/manifest_icon_selector.h"
#include "third_party/blink/public/common/manifest/manifest_util.h"
#include "third_party/blink/public/mojom/manifest/manifest.mojom.h"
namespace webapps {
namespace {
// The maximum number of shortcuts an Android launcher supports.
// https://developer.android.com/guide/topics/ui/shortcuts#shortcut-limitations
constexpr size_t kMaxShortcuts = 4;
bool IsWebApkDisplayMode(blink::mojom::DisplayMode display_mode) {
return (display_mode == blink::mojom::DisplayMode::kStandalone ||
display_mode == blink::mojom::DisplayMode::kFullscreen ||
display_mode == blink::mojom::DisplayMode::kMinimalUi);
}
} // namespace
using blink::mojom::DisplayMode;
ShareTargetParamsFile::ShareTargetParamsFile() {}
ShareTargetParamsFile::ShareTargetParamsFile(
const ShareTargetParamsFile& other) = default;
ShareTargetParamsFile::~ShareTargetParamsFile() {}
ShareTargetParams::ShareTargetParams() {}
ShareTargetParams::ShareTargetParams(const ShareTargetParams& other) = default;
ShareTargetParams::~ShareTargetParams() {}
ShareTarget::ShareTarget() {}
ShareTarget::~ShareTarget() {}
ShortcutInfo::ShortcutInfo(const GURL& shortcut_url) : url(shortcut_url) {}
ShortcutInfo::ShortcutInfo(const ShortcutInfo& other) = default;
ShortcutInfo::~ShortcutInfo() = default;
// static
std::unique_ptr<ShortcutInfo> ShortcutInfo::CreateShortcutInfo(
const GURL& manifest_url,
const blink::mojom::Manifest& manifest,
const GURL& primary_icon_url,
bool primary_icon_maskable) {
if (blink::IsEmptyManifest(manifest)) {
return nullptr;
}
auto shortcut_info = std::make_unique<ShortcutInfo>(GURL());
shortcut_info->UpdateFromManifest(manifest);
shortcut_info->manifest_url = manifest_url;
shortcut_info->best_primary_icon_url = primary_icon_url;
shortcut_info->is_primary_icon_maskable = primary_icon_maskable;
shortcut_info->UpdateBestSplashIcon(manifest);
return shortcut_info;
}
std::vector<WebappIcon> ShortcutInfo::GetWebApkIcons() {
std::vector<WebappIcon> icons;
icons.emplace_back(best_primary_icon_url, is_primary_icon_maskable,
webapk::Image::PRIMARY_ICON);
if (!splash_image_url.is_empty()) {
auto it = std::find_if(icons.begin(), icons.end(), [&](auto& icon) {
return icon.url() == splash_image_url;
});
if (it == icons.end()) {
icons.emplace_back(splash_image_url, is_splash_image_maskable,
webapk::Image::SPLASH_ICON);
} else {
it->AddUsage(webapk::Image::SPLASH_ICON);
}
}
for (const auto& shortcut_icon_url : best_shortcut_icon_urls) {
if (shortcut_icon_url.is_valid()) {
auto it = std::find_if(icons.begin(), icons.end(), [&](auto& icon) {
return icon.url() == shortcut_icon_url;
});
if (it == icons.end()) {
icons.emplace_back(shortcut_icon_url, false,
webapk::Image::SHORTCUT_ICON);
} else {
it->AddUsage(webapk::Image::SHORTCUT_ICON);
}
}
}
return icons;
}
void ShortcutInfo::UpdateFromWebPageMetadata(
const mojom::WebPageMetadata& metadata) {
std::u16string title;
base::TrimWhitespace(metadata.title, base::TrimPositions::TRIM_ALL, &title);
if (!title.empty()) {
user_title = title;
}
std::u16string app_name;
base::TrimWhitespace(metadata.application_name, base::TrimPositions::TRIM_ALL,
&app_name);
if (!app_name.empty()) {
user_title = app_name;
}
short_name = user_title;
name = user_title;
if (!metadata.description.empty()) {
description = metadata.description;
}
if (metadata.application_url.is_valid()) {
url = metadata.application_url;
scope = metadata.application_url;
}
if (metadata.mobile_capable == mojom::WebPageMobileCapable::ENABLED ||
metadata.mobile_capable == mojom::WebPageMobileCapable::ENABLED_APPLE) {
display = blink::mojom::DisplayMode::kStandalone;
UpdateSource(ShortcutInfo::SOURCE_ADD_TO_HOMESCREEN_STANDALONE);
}
}
void ShortcutInfo::UpdateFromManifest(const blink::mojom::Manifest& manifest) {
std::u16string s_name = manifest.short_name.value_or(std::u16string());
std::u16string f_name = manifest.name.value_or(std::u16string());
if (!s_name.empty() || !f_name.empty()) {
short_name = s_name;
name = f_name;
if (short_name.empty())
short_name = name;
else if (name.empty())
name = short_name;
}
user_title = short_name;
description = manifest.description.value_or(std::u16string());
// Set the url based on the manifest value, if any.
if (manifest.start_url.is_valid())
url = manifest.start_url;
scope = manifest.scope;
manifest_id = manifest.id;
// Set the display based on the manifest value, if any.
if (manifest.display != DisplayMode::kUndefined)
display = manifest.display;
for (DisplayMode display_mode : manifest.display_override) {
if (display_mode == DisplayMode::kBrowser ||
display_mode == DisplayMode::kMinimalUi ||
display_mode == DisplayMode::kStandalone ||
display_mode == DisplayMode::kFullscreen) {
display = display_mode;
break;
}
}
if (display == DisplayMode::kStandalone ||
display == DisplayMode::kFullscreen ||
display == DisplayMode::kMinimalUi) {
source = SOURCE_ADD_TO_HOMESCREEN_STANDALONE;
// Set the orientation based on the manifest value, or ignore if the display
// mode is different from 'standalone', 'fullscreen' or 'minimal-ui'.
if (manifest.orientation !=
device::mojom::ScreenOrientationLockType::DEFAULT) {
// TODO(mlamouri): Send a message to the developer console if we ignored
// Manifest orientation because display property is not set.
orientation = manifest.orientation;
}
}
// Set the theme color based on the manifest value, if any.
theme_color = manifest.has_theme_color
? absl::make_optional(manifest.theme_color)
: absl::nullopt;
// Set the background color based on the manifest value, if any.
background_color = manifest.has_background_color
? absl::make_optional(manifest.background_color)
: absl::nullopt;
// Set the icon urls based on the icons in the manifest, if any.
icon_urls.clear();
for (const auto& icon : manifest.icons)
icon_urls.push_back(icon.src.spec());
// Set the screenshots urls based on the screenshots in the manifest, if any.
screenshot_urls.clear();
for (const auto& screenshot : manifest.screenshots)
screenshot_urls.push_back(screenshot->image.src);
if (manifest.share_target) {
share_target = ShareTarget();
share_target->action = manifest.share_target->action;
share_target->method = manifest.share_target->method;
share_target->enctype = manifest.share_target->enctype;
if (manifest.share_target->params.text)
share_target->params.text = *manifest.share_target->params.text;
if (manifest.share_target->params.title)
share_target->params.title = *manifest.share_target->params.title;
if (manifest.share_target->params.url)
share_target->params.url = *manifest.share_target->params.url;
for (blink::Manifest::FileFilter manifest_share_target_file :
manifest.share_target->params.files) {
ShareTargetParamsFile share_target_params_file;
share_target_params_file.name = manifest_share_target_file.name;
share_target_params_file.accept = manifest_share_target_file.accept;
share_target->params.files.push_back(share_target_params_file);
}
}
shortcut_items = manifest.shortcuts;
if (shortcut_items.size() > kMaxShortcuts)
shortcut_items.resize(kMaxShortcuts);
for (auto& shortcut_item : shortcut_items) {
if (!shortcut_item.short_name || shortcut_item.short_name->empty())
shortcut_item.short_name = shortcut_item.name;
}
int ideal_shortcut_icons_size_px =
WebappsIconUtils::GetIdealShortcutIconSizeInPx();
for (const auto& manifest_shortcut : shortcut_items) {
GURL best_url = blink::ManifestIconSelector::FindBestMatchingSquareIcon(
manifest_shortcut.icons, ideal_shortcut_icons_size_px,
/* minimum_icon_size_in_px= */ ideal_shortcut_icons_size_px / 2,
blink::mojom::ManifestImageResource_Purpose::ANY);
best_shortcut_icon_urls.push_back(std::move(best_url));
}
// Set the dark theme color based on the manifest value, if any.
dark_theme_color = manifest.has_dark_theme_color
? absl::make_optional(manifest.dark_theme_color)
: absl::nullopt;
// Set the dark background color based on the manifest value, if any.
dark_background_color =
manifest.has_dark_background_color
? absl::make_optional(manifest.dark_background_color)
: absl::nullopt;
}
void ShortcutInfo::UpdateBestSplashIcon(
const blink::mojom::Manifest& manifest) {
ideal_splash_image_size_in_px =
WebappsIconUtils::GetIdealSplashImageSizeInPx();
minimum_splash_image_size_in_px =
WebappsIconUtils::GetMinimumSplashImageSizeInPx();
if (WebappsIconUtils::DoesAndroidSupportMaskableIcons()) {
splash_image_url = blink::ManifestIconSelector::FindBestMatchingSquareIcon(
manifest.icons, ideal_splash_image_size_in_px,
minimum_splash_image_size_in_px,
blink::mojom::ManifestImageResource_Purpose::MASKABLE);
is_splash_image_maskable = true;
}
// If did not fetch maskable icon for splash image, or can not find a best
// match, fallback to ANY icon.
if (!splash_image_url.is_valid()) {
splash_image_url = blink::ManifestIconSelector::FindBestMatchingSquareIcon(
manifest.icons, ideal_splash_image_size_in_px,
minimum_splash_image_size_in_px,
blink::mojom::ManifestImageResource_Purpose::ANY);
is_splash_image_maskable = false;
}
}
void ShortcutInfo::UpdateDisplayMode(bool webapk_compatible) {
if (!base::FeatureList::IsEnabled(features::kUniversalInstallManifest)) {
return;
}
if (webapk_compatible) {
if (!IsWebApkDisplayMode(display)) {
display = DisplayMode::kMinimalUi;
}
} else {
if (IsWebApkDisplayMode(display)) {
display = DisplayMode::kMinimalUi;
} else {
display = DisplayMode::kBrowser;
}
}
}
void ShortcutInfo::UpdateSource(const Source new_source) {
source = new_source;
}
} // namespace webapps
|