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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312
|
// Copyright 2018 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/web_applications/web_app_install_utils.h"
#include <algorithm>
#include <array>
#include <iterator>
#include <map>
#include <optional>
#include <ostream>
#include <set>
#include <string>
#include <string_view>
#include <type_traits>
#include <utility>
#include <variant>
#include <vector>
#include "base/check.h"
#include "base/check_op.h"
#include "base/containers/contains.h"
#include "base/containers/extend.h"
#include "base/containers/flat_map.h"
#include "base/containers/flat_set.h"
#include "base/containers/flat_tree.h"
#include "base/feature_list.h"
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/metrics/histogram.h"
#include "base/metrics/histogram_base.h"
#include "base/metrics/histogram_functions.h"
#include "base/notreached.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "build/buildflag.h"
#include "chrome/browser/favicon/favicon_utils.h"
#include "chrome/browser/shortcuts/shortcut_icon_generator.h"
#include "chrome/browser/ssl/chrome_security_state_tab_helper.h"
#include "chrome/browser/sync/sync_service_factory.h"
#include "chrome/browser/web_applications/os_integration/os_integration_manager.h"
#include "chrome/browser/web_applications/os_integration/web_app_file_handler_manager.h"
#include "chrome/browser/web_applications/policy/pre_redirection_url_observer.h"
#include "chrome/browser/web_applications/scope_extension_info.h"
#include "chrome/browser/web_applications/user_display_mode.h"
#include "chrome/browser/web_applications/web_app.h"
#include "chrome/browser/web_applications/web_app_chromeos_data.h"
#include "chrome/browser/web_applications/web_app_constants.h"
#include "chrome/browser/web_applications/web_app_helpers.h"
#include "chrome/browser/web_applications/web_app_icon_generator.h"
#include "chrome/browser/web_applications/web_app_install_info.h"
#include "chrome/browser/web_applications/web_app_install_params.h"
#include "chrome/browser/web_applications/web_app_management_type.h"
#include "chrome/browser/web_applications/web_app_proto_utils.h"
#include "chrome/browser/web_applications/web_app_utils.h"
#include "chrome/common/chrome_features.h"
#include "components/services/app_service/public/cpp/file_handler.h"
#include "components/services/app_service/public/cpp/icon_info.h"
#include "components/services/app_service/public/cpp/protocol_handler_info.h"
#include "components/services/app_service/public/cpp/share_target.h"
#include "components/sync/protocol/web_app_specifics.pb.h"
#include "components/sync/service/sync_service.h"
#include "components/sync/service/sync_user_settings.h"
#include "components/webapps/browser/banners/app_banner_settings_helper.h"
#include "components/webapps/browser/installable/installable_evaluator.h"
#include "components/webapps/browser/installable/installable_manager.h"
#include "components/webapps/browser/installable/installable_metrics.h"
#include "content/public/common/content_features.h"
#include "mojo/public/cpp/bindings/struct_ptr.h"
#include "net/http/http_util.h"
#include "services/network/public/cpp/permissions_policy/permissions_policy_declaration.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/common/manifest/manifest.h"
#include "third_party/blink/public/mojom/manifest/display_mode.mojom-shared.h"
#include "third_party/blink/public/mojom/manifest/manifest.mojom-shared.h"
#include "third_party/blink/public/mojom/manifest/manifest.mojom.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/gfx/geometry/size.h"
#include "url/gurl.h"
#include "url/origin.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "chromeos/ash/experiences/system_web_apps/types/system_web_app_data.h"
#endif
namespace web_app {
class WebAppRegistrar;
namespace {
// We restrict the number of icons to limit disk usage per installed PWA. This
// value can change overtime as new features are added.
constexpr int kMaxIcons = 20;
constexpr SquareSizePx kMaxIconSize =
webapps::InstallableEvaluator::kMaximumIconSizeInPx;
// Append non-empty square icons from |icons_map| onto the |square_icons| list.
void AddSquareIconsFromMap(std::vector<SkBitmap>* square_icons,
const IconsMap& icons_map) {
for (const auto& url_icon : icons_map) {
for (const SkBitmap& icon : url_icon.second) {
if (!icon.empty() && icon.width() == icon.height())
square_icons->push_back(icon);
}
}
}
// Append non-empty square icons from |icons_map| onto the |square_icons| list,
// if they are also in |manifest_icons|.
void AddSquareIconsFromMapMatchingIconInfos(
std::vector<SkBitmap>* square_icons,
const std::vector<apps::IconInfo>& manifest_icons,
const IconsMap& icons_map) {
for (const auto& url_icon : icons_map) {
for (const SkBitmap& icon : url_icon.second) {
if (!icon.empty() && icon.width() == icon.height()) {
for (const auto& info : manifest_icons) {
if (info.url == url_icon.first) {
square_icons->push_back(icon);
}
}
}
}
}
}
// Append non-empty square icons from |bitmaps| onto the |square_icons| list.
void AddSquareIconsFromBitmaps(
std::vector<SkBitmap>* square_icons,
const std::map<SquareSizePx, SkBitmap>& bitmaps) {
for (const std::pair<const SquareSizePx, SkBitmap>& icon : bitmaps) {
DCHECK_EQ(icon.first, icon.second.width());
DCHECK_EQ(icon.first, icon.second.height());
if (!icon.second.empty())
square_icons->push_back(icon.second);
}
}
// Populate |web_app_info|'s shortcuts_menu_item_infos vector using the
// blink::Manifest's shortcuts vector.
void PopulateWebAppShortcutsMenuItemInfos(
const std::vector<blink::Manifest::ShortcutItem>& shortcuts,
WebAppInstallInfo* web_app_info) {
std::vector<WebAppShortcutsMenuItemInfo> web_app_shortcut_infos;
web_app_shortcut_infos.reserve(shortcuts.size());
int num_shortcut_icons = 0;
for (const auto& shortcut : shortcuts) {
if (web_app_shortcut_infos.size() >= kMaxApplicationDockMenuItems) {
DLOG(ERROR) << "Too many shortcuts";
break;
}
WebAppShortcutsMenuItemInfo shortcut_info;
shortcut_info.name = shortcut.name;
shortcut_info.url = shortcut.url;
for (IconPurpose purpose : kIconPurposes) {
std::vector<WebAppShortcutsMenuItemInfo::Icon> shortcut_icons;
for (const auto& icon : shortcut.icons) {
DCHECK(!icon.purpose.empty());
if (!base::Contains(icon.purpose, purpose))
continue;
WebAppShortcutsMenuItemInfo::Icon info;
if (base::Contains(icon.sizes, gfx::Size()) &&
icon.src.spec().find(".svg") != std::string::npos) {
web_app_info->icons_with_size_any.shortcut_menu_icons[purpose] =
icon.src;
}
// Filter out non-square or too large icons.
auto valid_size_it =
std::ranges::find_if(icon.sizes, [](const gfx::Size& size) {
return size.width() == size.height() &&
size.width() <= kMaxIconSize;
});
if (valid_size_it == icon.sizes.end())
continue;
// TODO(crbug.com/40126722): Take the declared icon density and
// sizes into account.
info.square_size_px = valid_size_it->width();
// Keep track of the sizes passed in via the manifest which will be
// later used to compute how many SVG icons of size:any we need to
// download.
if (!web_app_info->icons_with_size_any.shortcut_menu_icons.empty()) {
for (const auto& icon_size : icon.sizes) {
if (icon_size == gfx::Size()) {
continue;
}
web_app_info->icons_with_size_any.shortcut_menu_icons_provided_sizes
.emplace(icon_size);
}
}
DCHECK_LE(num_shortcut_icons, kMaxIcons);
if (num_shortcut_icons < kMaxIcons) {
info.url = icon.src;
shortcut_icons.push_back(std::move(info));
++num_shortcut_icons;
}
if (num_shortcut_icons == kMaxIcons)
break;
}
// If any icons are specified in the manifest, they take precedence over
// any we picked up from web_app_info.
if (!shortcut_icons.empty())
shortcut_info.SetShortcutIconInfosForPurpose(purpose,
std::move(shortcut_icons));
}
web_app_shortcut_infos.push_back(std::move(shortcut_info));
}
web_app_info->shortcuts_menu_item_infos = std::move(web_app_shortcut_infos);
}
std::vector<SquareSizePx> GetSquareSizePxs(
const std::map<SquareSizePx, SkBitmap>& icon_bitmaps) {
std::vector<SquareSizePx> sizes;
sizes.reserve(icon_bitmaps.size());
for (const std::pair<const SquareSizePx, SkBitmap>& item : icon_bitmaps)
sizes.push_back(item.first);
return sizes;
}
std::vector<SquareSizePx> GetSquareSizePxs(const IconBitmaps& icon_bitmaps,
IconPurpose purpose) {
switch (purpose) {
case IconPurpose::ANY:
return GetSquareSizePxs(icon_bitmaps.any);
case IconPurpose::MASKABLE:
return GetSquareSizePxs(icon_bitmaps.maskable);
case IconPurpose::MONOCHROME:
return GetSquareSizePxs(icon_bitmaps.monochrome);
}
}
// Returns a new vector of item infos with `downloaded_icon_sizes` set from
// `shortcuts_menu_icon_bitmaps` and other info copied from
// `shortcuts_menu_items`.
std::vector<WebAppShortcutsMenuItemInfo> GetShortcutsMenuInfoWithIconSizes(
const std::vector<WebAppShortcutsMenuItemInfo>& shortcuts_menu_items,
const ShortcutsMenuIconBitmaps& shortcuts_menu_icon_bitmaps) {
// Due to the bitmaps possibly being not populated (see
// https://crbug.com/1427444), we create empty bitmaps in that case. We
// continue to check to make sure that there aren't MORE bitmaps than
// items.
CHECK_LE(shortcuts_menu_icon_bitmaps.size(), shortcuts_menu_items.size());
std::vector<WebAppShortcutsMenuItemInfo> items_with_sizes;
items_with_sizes.reserve(shortcuts_menu_items.size());
IconBitmaps empty_icon_bitmaps;
for (size_t i = 0; i < shortcuts_menu_items.size(); ++i) {
const IconBitmaps* shortcut_icon_bitmaps;
if (i < shortcuts_menu_icon_bitmaps.size()) {
shortcut_icon_bitmaps = &shortcuts_menu_icon_bitmaps[i];
} else {
shortcut_icon_bitmaps = &empty_icon_bitmaps;
}
WebAppShortcutsMenuItemInfo item_info = shortcuts_menu_items[i];
for (IconPurpose purpose : kIconPurposes) {
item_info.downloaded_icon_sizes.SetSizesForPurpose(
purpose, GetSquareSizePxs(*shortcut_icon_bitmaps, purpose));
}
items_with_sizes.push_back(std::move(item_info));
}
return items_with_sizes;
}
apps::ShareTarget::Method ToAppsShareTargetMethod(
blink::mojom::ManifestShareTarget_Method method) {
switch (method) {
case blink::mojom::ManifestShareTarget_Method::kGet:
return apps::ShareTarget::Method::kGet;
case blink::mojom::ManifestShareTarget_Method::kPost:
return apps::ShareTarget::Method::kPost;
}
NOTREACHED();
}
apps::ShareTarget::Enctype ToAppsShareTargetEnctype(
blink::mojom::ManifestShareTarget_Enctype enctype) {
switch (enctype) {
case blink::mojom::ManifestShareTarget_Enctype::kFormUrlEncoded:
return apps::ShareTarget::Enctype::kFormUrlEncoded;
case blink::mojom::ManifestShareTarget_Enctype::kMultipartFormData:
return apps::ShareTarget::Enctype::kMultipartFormData;
}
NOTREACHED();
}
std::optional<apps::ShareTarget> ToWebAppShareTarget(
const std::optional<blink::Manifest::ShareTarget>& share_target) {
if (!share_target) {
return std::nullopt;
}
apps::ShareTarget apps_share_target;
apps_share_target.action = share_target->action;
apps_share_target.method = ToAppsShareTargetMethod(share_target->method);
apps_share_target.enctype = ToAppsShareTargetEnctype(share_target->enctype);
if (share_target->params.title.has_value()) {
apps_share_target.params.title =
base::UTF16ToUTF8(*share_target->params.title);
}
if (share_target->params.text.has_value()) {
apps_share_target.params.text =
base::UTF16ToUTF8(*share_target->params.text);
}
if (share_target->params.url.has_value()) {
apps_share_target.params.url = base::UTF16ToUTF8(*share_target->params.url);
}
for (const auto& file_filter : share_target->params.files) {
apps::ShareTarget::Files apps_share_target_files;
apps_share_target_files.name = base::UTF16ToUTF8(file_filter.name);
for (const auto& file_type : file_filter.accept) {
apps_share_target_files.accept.push_back(base::UTF16ToUTF8(file_type));
}
apps_share_target.params.files.push_back(
std::move(apps_share_target_files));
}
return std::move(apps_share_target);
}
ScopeExtensions ToWebAppScopeExtensions(
const std::vector<blink::mojom::ManifestScopeExtensionPtr>&
scope_extensions) {
ScopeExtensions apps_scope_extensions;
for (const auto& scope_extension : scope_extensions) {
DCHECK(scope_extension);
auto new_scope_extension = ScopeExtensionInfo::CreateForOrigin(
scope_extension->origin, scope_extension->has_origin_wildcard);
apps_scope_extensions.insert(std::move(new_scope_extension));
}
return apps_scope_extensions;
}
std::vector<apps::ProtocolHandlerInfo> ToWebAppProtocolHandlers(
const std::vector<blink::mojom::ManifestProtocolHandlerPtr>&
manifest_protocol_handlers) {
std::vector<apps::ProtocolHandlerInfo> protocol_handlers;
for (const auto& manifest_protocol_handler : manifest_protocol_handlers) {
apps::ProtocolHandlerInfo protocol_handler;
protocol_handler.protocol =
base::UTF16ToUTF8(manifest_protocol_handler->protocol);
protocol_handler.url = manifest_protocol_handler->url;
protocol_handlers.push_back(std::move(protocol_handler));
}
return protocol_handlers;
}
void PopulateShortcutItemIcons(WebAppInstallInfo* web_app_info,
const IconsMap& icons_map) {
web_app_info->shortcuts_menu_icon_bitmaps.clear();
for (auto& shortcut : web_app_info->shortcuts_menu_item_infos) {
IconBitmaps shortcut_icon_bitmaps;
for (IconPurpose purpose : kIconPurposes) {
std::map<SquareSizePx, SkBitmap> bitmaps;
for (const auto& icon :
shortcut.GetShortcutIconInfosForPurpose(purpose)) {
auto it = icons_map.find(icon.url);
// Resize bitmaps only if the icon size is non-zero. The alternative
// happens mostly for icons with a size of ANY passed in via the
// manifest, for which we do not need to resize since it is downloaded
// in all sizes..
if (it != icons_map.end()) {
if (icon.square_size_px != 0) {
std::set<SquareSizePx> sizes_to_generate;
sizes_to_generate.emplace(icon.square_size_px);
SizeToBitmap resized_bitmaps(
ConstrainBitmapsToSizes(it->second, sizes_to_generate));
// Don't overwrite as a shortcut item could have multiple icon urls.
bitmaps.insert(resized_bitmaps.begin(), resized_bitmaps.end());
} else {
// For icons that do not need resizing, pass in the bitmaps as it
// is, barring ones that have no intrinsic size.
for (const auto& bitmap : it->second) {
if (!bitmap.empty()) {
bitmaps[bitmap.width()] = bitmap;
}
}
}
}
}
shortcut_icon_bitmaps.SetBitmapsForPurpose(purpose, std::move(bitmaps));
}
web_app_info->shortcuts_menu_icon_bitmaps.emplace_back(
std::move(shortcut_icon_bitmaps));
}
CHECK_EQ(web_app_info->shortcuts_menu_icon_bitmaps.size(),
web_app_info->shortcuts_menu_item_infos.size());
}
// Reconcile the file handling icons that were specified in the manifest with
// the icons we were successfully able to download. Store the actual bitmaps and
// update the icon metadata in `web_app_info`.
void PopulateFileHandlingIcons(WebAppInstallInfo* web_app_info,
const IconsMap& icons_map,
IconsMap& other_icon_bitmaps) {
// Before starting, each `apps::IconInfo` in `web_app_info` has a source URL
// and a purpose, but no size. Replace with structs that copy the URL and
// purpose and set the size based on what is found in `icons_map`.
for (auto& file_handler : web_app_info->file_handlers) {
if (!WebAppFileHandlerManager::IconsEnabled()) {
DCHECK(file_handler.downloaded_icons.empty());
continue;
}
std::vector<apps::IconInfo> manifest_icons;
for (const auto& icon_info_without_size : file_handler.downloaded_icons) {
const GURL& src = icon_info_without_size.url;
// Only store bitmaps for this URL if it's the first time we've seen it.
bool bitmaps_already_saved_for_url =
other_icon_bitmaps.find(src) != other_icon_bitmaps.end();
const auto& downloaded_bitmaps_for_url = icons_map.find(src);
if (downloaded_bitmaps_for_url == icons_map.end())
continue;
for (const SkBitmap& bitmap : downloaded_bitmaps_for_url->second) {
// Filter out bitmaps that are empty, non-square or are too large.
if (bitmap.empty() || bitmap.width() != bitmap.height() ||
bitmap.width() > kMaxIconSize) {
continue;
}
// Add the size to the FileHandler icon metadata.
apps::IconInfo icon_info_with_size(icon_info_without_size);
icon_info_with_size.square_size_px = bitmap.width();
manifest_icons.push_back(std::move(icon_info_with_size));
// Add the bitmap to `other_icon_bitmaps`.
if (!bitmaps_already_saved_for_url)
other_icon_bitmaps[src].push_back(bitmap);
}
}
file_handler.downloaded_icons = std::move(manifest_icons);
}
}
// Reconcile the home tab icons that were specified in the manifest with
// the icons we were successfully able to download. Store the actual bitmaps and
// update the icon metadata in `web_app_info`.
void PopulateHomeTabIcons(WebAppInstallInfo* web_app_info,
const IconsMap& icons_map,
IconsMap& other_icon_bitmaps) {
if (!HomeTabIconsExistInTabStrip(*web_app_info)) {
return;
}
const auto& home_tab = std::get<blink::Manifest::HomeTabParams>(
web_app_info->tab_strip.value().home_tab);
for (const auto& icon : home_tab.icons) {
// An icon's purpose vector should never be empty (the manifest parser
// should have added ANY if there was no purpose specified in the manifest).
DCHECK(!icon.purpose.empty());
// Only store bitmaps for this URL if this is the first time we've seen it.
bool bitmaps_already_saved_for_url =
other_icon_bitmaps.find(icon.src) != other_icon_bitmaps.end();
const auto& downloaded_bitmaps_for_url = icons_map.find(icon.src);
if (downloaded_bitmaps_for_url == icons_map.end()) {
continue;
}
for (const SkBitmap& bitmap : downloaded_bitmaps_for_url->second) {
// Filter out bitmaps that are empty, non-square or are too large.
if (bitmap.empty() || bitmap.width() != bitmap.height() ||
bitmap.width() > kMaxIconSize) {
continue;
}
// Add the bitmap to 'other_icon_bitmaps'.
if (!bitmaps_already_saved_for_url) {
other_icon_bitmaps[icon.src].emplace_back(bitmap);
}
}
DCHECK(other_icon_bitmaps.size() <= kMaxIcons);
}
}
apps::FileHandler::LaunchType ToFileHandlerLaunchType(
blink::mojom::ManifestFileHandler::LaunchType launch_type) {
switch (launch_type) {
case blink::mojom::ManifestFileHandler::LaunchType::kSingleClient:
return apps::FileHandler::LaunchType::kSingleClient;
case blink::mojom::ManifestFileHandler::LaunchType::kMultipleClients:
return apps::FileHandler::LaunchType::kMultipleClients;
}
}
base::flat_map<std::string, blink::Manifest::TranslationItem>
ToWebAppTranslations(
const base::flat_map<std::u16string, blink::Manifest::TranslationItem>&
manifest_translations) {
std::vector<std::pair<std::string, blink::Manifest::TranslationItem>>
translations_vector;
translations_vector.reserve(manifest_translations.size());
for (const auto& it : manifest_translations) {
translations_vector.emplace_back(base::UTF16ToUTF8(it.first), it.second);
}
return base::flat_map<std::string, blink::Manifest::TranslationItem>(
std::move(translations_vector));
}
} // namespace
void PopulateFileHandlerInfoFromManifest(
const std::vector<blink::mojom::ManifestFileHandlerPtr>&
manifest_file_handlers,
const GURL& app_scope,
WebAppInstallInfo* web_app_info) {
apps::FileHandlers web_app_file_handlers;
for (const auto& manifest_file_handler : manifest_file_handlers) {
DCHECK(manifest_file_handler);
apps::FileHandler web_app_file_handler;
web_app_file_handler.action = manifest_file_handler->action;
web_app_file_handler.display_name = manifest_file_handler->name;
web_app_file_handler.launch_type =
ToFileHandlerLaunchType(manifest_file_handler->launch_type);
for (const auto& it : manifest_file_handler->accept) {
apps::FileHandler::AcceptEntry web_app_accept_entry;
web_app_accept_entry.mime_type = base::UTF16ToUTF8(it.first);
for (const auto& manifest_file_extension : it.second) {
web_app_accept_entry.file_extensions.insert(
base::UTF16ToUTF8(manifest_file_extension));
}
web_app_file_handler.accept.push_back(std::move(web_app_accept_entry));
}
if (WebAppFileHandlerManager::IconsEnabled()) {
for (const auto& image_resource : manifest_file_handler->icons) {
for (const auto manifest_purpose : image_resource.purpose) {
apps::IconInfo icon_info;
icon_info.url = image_resource.src;
icon_info.purpose =
ManifestPurposeToIconInfoPurpose(manifest_purpose);
if (base::Contains(image_resource.sizes, gfx::Size()) &&
image_resource.src.spec().find(".svg") != std::string::npos) {
web_app_info->icons_with_size_any
.file_handling_icons[manifest_purpose] = image_resource.src;
}
web_app_file_handler.downloaded_icons.push_back(std::move(icon_info));
// The list will be pruned and the sizes will be filled in when images
// are actually downloaded.
}
// Keep track of the sizes passed in via the manifest which will be
// later used to compute how many SVG icons of size:any we need to
// download.
if (!web_app_info->icons_with_size_any.file_handling_icons.empty()) {
for (const auto& icon_size : image_resource.sizes) {
if (icon_size == gfx::Size()) {
continue;
}
web_app_info->icons_with_size_any.file_handling_icon_provided_sizes
.emplace(icon_size);
}
}
}
}
web_app_file_handlers.push_back(std::move(web_app_file_handler));
}
web_app_info->file_handlers = std::move(web_app_file_handlers);
}
// Construct a list of icons from the parsed icons field of the manifest
// *outside* of |web_app_info|, and update the current web_app_info if found.
// If any icons are correctly specified in the manifest, they take precedence
// over any we picked up from web page metadata.
void UpdateWebAppInstallInfoIconsFromManifestIfNeeded(
const std::vector<blink::Manifest::ImageResource>& icons,
WebAppInstallInfo* web_app_info) {
std::vector<apps::IconInfo> web_app_icons;
for (const auto& icon : icons) {
// An icon's purpose vector should never be empty (the manifest parser
// should have added ANY if there was no purpose specified in the manifest).
DCHECK(!icon.purpose.empty());
for (IconPurpose purpose : icon.purpose) {
apps::IconInfo info;
if (!icon.sizes.empty()) {
if (base::Contains(icon.sizes, gfx::Size()) &&
icon.src.spec().find(".svg") != std::string::npos) {
web_app_info->icons_with_size_any.manifest_icons[purpose] = icon.src;
}
// Filter out non-square or too large icons.
auto valid_size =
std::ranges::find_if(icon.sizes, [](const gfx::Size& size) {
return size.width() == size.height() &&
size.width() <= kMaxIconSize;
});
if (valid_size == icon.sizes.end()) {
continue;
}
// TODO(crbug.com/40126722): Take the declared icon density and
// sizes into account.
info.square_size_px = valid_size->width();
}
info.url = icon.src;
info.purpose = ManifestPurposeToIconInfoPurpose(purpose);
web_app_icons.push_back(std::move(info));
// Limit the number of icons we store on the user's machine.
if (web_app_icons.size() == kMaxIcons) {
break;
}
}
// Keep track of the sizes passed in via the manifest which will be
// later used to compute how many SVG icons of size:any we need to
// download.
// This is handled outside the loop above to reduce the number of iterations
// so that purpose and size metadata is parsed sequentially one after the
// other.
if (!web_app_info->icons_with_size_any.manifest_icons.empty()) {
for (const auto& icon_size : icon.sizes) {
if (icon_size == gfx::Size()) {
continue;
}
web_app_info->icons_with_size_any.manifest_icon_provided_sizes.emplace(
icon_size);
}
}
if (web_app_icons.size() == kMaxIcons) {
break;
}
}
// If any icons have been found from the manifest, set them inside the
// |web_app_info|.
if (!web_app_icons.empty()) {
web_app_info->manifest_icons = std::move(web_app_icons);
}
}
// Create the WebAppInstallInfo icons list *outside* of |web_app_info|, so
// that we can decide later whether or not to replace the existing
// home tab icons.
// Icons are replaced if we filter out icons that are too large or non-square
// which limits the number of icons.
void PopulateHomeTabIconsFromHomeTabManifestParams(
WebAppInstallInfo* web_app_info) {
auto& home_tab = std::get<blink::Manifest::HomeTabParams>(
web_app_info->tab_strip->home_tab);
std::vector<blink::Manifest::ImageResource> home_tab_icons;
for (const auto& icon : home_tab.icons) {
// An icon's purpose vector should never be empty (the manifest parser
// should have added ANY if there was no purpose specified in the manifest).
DCHECK(!icon.purpose.empty());
if (!icon.sizes.empty()) {
if (base::Contains(icon.sizes, gfx::Size()) &&
icon.src.spec().find(".svg") != std::string::npos) {
for (const auto& purpose : icon.purpose) {
web_app_info->icons_with_size_any.home_tab_icons[purpose] = icon.src;
}
}
// Filter out non-square or too large icons.
auto valid_size =
std::ranges::find_if(icon.sizes, [](const gfx::Size& size) {
return size.width() == size.height() &&
size.width() <= kMaxIconSize;
});
if (valid_size == icon.sizes.end()) {
continue;
}
// Keep track of the sizes passed in via the manifest which will be
// later used to compute how many SVG icons of size:any we need to
// download.
if (!web_app_info->icons_with_size_any.home_tab_icons.empty()) {
for (const auto& icon_size : icon.sizes) {
if (icon_size == gfx::Size()) {
continue;
}
web_app_info->icons_with_size_any.home_tab_icon_provided_sizes
.emplace(icon_size);
}
}
}
home_tab_icons.push_back(std::move(icon));
// Limit the number of icons we store on the user's machine.
if (home_tab_icons.size() == kMaxIcons) {
break;
}
}
home_tab.icons = std::move(home_tab_icons);
web_app_info->tab_strip->home_tab = home_tab;
}
void UpdateWebAppInfoFromManifest(const blink::mojom::Manifest& manifest,
WebAppInstallInfo* web_app_info) {
// The manifest parser guarantees these are valid/invalid together and
// same-origin.
if (manifest.id.is_valid() && manifest.start_url.is_valid()) {
web_app_info->SetManifestIdAndStartUrl(manifest.id, manifest.start_url);
}
// Give the full length name priority if it's not empty.
std::u16string name = manifest.name.value_or(std::u16string());
if (!name.empty()) {
web_app_info->title = name;
} else if (manifest.short_name) {
web_app_info->title = *manifest.short_name;
}
if (manifest.scope.is_valid())
web_app_info->scope = manifest.scope;
// Ensure scope is derived if empty after processing manifest.
if (web_app_info->scope.is_empty()) {
web_app_info->scope = web_app_info->start_url().GetWithoutFilename();
}
CHECK(!web_app_info->scope.is_empty());
if (manifest.has_theme_color) {
web_app_info->theme_color =
SkColorSetA(static_cast<SkColor>(manifest.theme_color), SK_AlphaOPAQUE);
}
if (manifest.has_background_color) {
web_app_info->background_color = SkColorSetA(
static_cast<SkColor>(manifest.background_color), SK_AlphaOPAQUE);
}
if (manifest.display != DisplayMode::kUndefined)
web_app_info->display_mode = manifest.display;
if (!manifest.display_override.empty())
web_app_info->display_override = manifest.display_override;
UpdateWebAppInstallInfoIconsFromManifestIfNeeded(manifest.icons,
web_app_info);
// TODO(crbug.com/40185556): Confirm incoming icons to write to web_app_info.
PopulateFileHandlerInfoFromManifest(manifest.file_handlers,
web_app_info->scope, web_app_info);
web_app_info->share_target = ToWebAppShareTarget(manifest.share_target);
web_app_info->protocol_handlers =
ToWebAppProtocolHandlers(manifest.protocol_handlers);
web_app_info->scope_extensions =
ToWebAppScopeExtensions(manifest.scope_extensions);
GURL inferred_scope = web_app_info->scope.is_valid()
? web_app_info->scope
: web_app_info->start_url().GetWithoutFilename();
if (base::FeatureList::IsEnabled(
blink::features::kWebAppManifestLockScreen) &&
manifest.lock_screen && manifest.lock_screen->start_url.is_valid() &&
IsInScope(manifest.lock_screen->start_url, inferred_scope)) {
web_app_info->lock_screen_start_url = manifest.lock_screen->start_url;
}
if (manifest.note_taking && manifest.note_taking->new_note_url.is_valid() &&
IsInScope(manifest.note_taking->new_note_url, inferred_scope)) {
web_app_info->note_taking_new_note_url = manifest.note_taking->new_note_url;
}
DCHECK(web_app_info->shortcuts_menu_item_infos.empty());
PopulateWebAppShortcutsMenuItemInfos(manifest.shortcuts, web_app_info);
web_app_info->capture_links = manifest.capture_links;
if (manifest.manifest_url.is_valid()) {
web_app_info->manifest_url = manifest.manifest_url;
}
web_app_info->launch_handler = manifest.launch_handler;
if (manifest.description.has_value()) {
web_app_info->description = manifest.description.value();
}
web_app_info->translations = ToWebAppTranslations(manifest.translations);
web_app_info->permissions_policy.clear();
for (const auto& decl : manifest.permissions_policy) {
network::ParsedPermissionsPolicyDeclaration copy;
copy.feature = decl.feature;
copy.self_if_matches = decl.self_if_matches;
for (const auto& origin : decl.allowed_origins)
copy.allowed_origins.push_back(origin);
copy.matches_all_origins = decl.matches_all_origins;
copy.matches_opaque_src = decl.matches_opaque_src;
web_app_info->permissions_policy.push_back(std::move(copy));
}
web_app_info->tab_strip = manifest.tab_strip;
if (HomeTabIconsExistInTabStrip(*web_app_info)) {
PopulateHomeTabIconsFromHomeTabManifestParams(web_app_info);
}
web_app_info->related_applications = manifest.related_applications;
}
WebAppInstallInfo CreateWebAppInfoFromManifest(
const blink::mojom::Manifest& manifest) {
WebAppInstallInfo info(manifest.id, manifest.start_url);
UpdateWebAppInfoFromManifest(manifest, &info);
return info;
}
void PopulateOtherIcons(WebAppInstallInfo* web_app_info,
const IconsMap& icons_map) {
IconsMap& other_icon_bitmaps = web_app_info->other_icon_bitmaps;
other_icon_bitmaps.clear();
PopulateShortcutItemIcons(web_app_info, icons_map);
PopulateFileHandlingIcons(web_app_info, icons_map, other_icon_bitmaps);
PopulateHomeTabIcons(web_app_info, icons_map, other_icon_bitmaps);
}
void PopulateProductIcons(WebAppInstallInfo* web_app_info,
const IconsMap* icons_map) {
std::vector<apps::IconInfo> manifest_icons_any;
std::vector<apps::IconInfo> manifest_icons_maskable;
std::vector<apps::IconInfo> manifest_icons_monochrome;
for (apps::IconInfo& icon_info : web_app_info->manifest_icons) {
switch (icon_info.purpose) {
case apps::IconInfo::Purpose::kAny:
manifest_icons_any.push_back(icon_info);
break;
case apps::IconInfo::Purpose::kMaskable:
manifest_icons_maskable.push_back(icon_info);
break;
case apps::IconInfo::Purpose::kMonochrome:
manifest_icons_monochrome.push_back(icon_info);
break;
}
}
std::vector<SkBitmap> square_icons_any;
std::vector<SkBitmap> square_icons_maskable;
std::vector<SkBitmap> square_icons_monochrome;
if (icons_map) {
AddSquareIconsFromMapMatchingIconInfos(&square_icons_any,
manifest_icons_any, *icons_map);
AddSquareIconsFromMapMatchingIconInfos(&square_icons_maskable,
manifest_icons_maskable, *icons_map);
AddSquareIconsFromMapMatchingIconInfos(
&square_icons_monochrome, manifest_icons_monochrome, *icons_map);
// Fall back to using all icons from |icons_map| if none match
// manifest_icons.
if (square_icons_any.empty())
AddSquareIconsFromMap(&square_icons_any, *icons_map);
}
AddSquareIconsFromBitmaps(&square_icons_any, web_app_info->icon_bitmaps.any);
for (SkBitmap& bitmap : square_icons_maskable) {
// Retain any bitmaps provided as input to the installation.
if (web_app_info->icon_bitmaps.maskable.count(bitmap.width()) == 0)
web_app_info->icon_bitmaps.maskable[bitmap.width()] = std::move(bitmap);
}
for (SkBitmap& bitmap : square_icons_monochrome) {
// Retain any bitmaps provided as input to the installation.
if (web_app_info->icon_bitmaps.monochrome.count(bitmap.width()) == 0)
web_app_info->icon_bitmaps.monochrome[bitmap.width()] = std::move(bitmap);
}
std::u16string icon_letter =
web_app_info->title.empty()
? shortcuts::GenerateIconLetterFromUrl(web_app_info->start_url())
: shortcuts::GenerateIconLetterFromName(web_app_info->title);
// Ensure that all top-level icons that are in web_app_info with Purpose::ANY
// are present, by generating icons for any sizes that have failed to
// download. This ensures that the created manifest for the web app does not
// contain links to icons that are not actually created and linked on disk.
// TODO(crbug.com/40661228): Don't resize before writing to disk, it's
// not necessary and would simplify this code path to remove.
SizeToBitmap size_to_icons = ResizeIconsAndGenerateMissing(
square_icons_any, SizesToGenerate(), icon_letter,
&web_app_info->is_generated_icon);
for (auto& item : size_to_icons) {
// Retain any bitmaps provided as input to the installation.
if (web_app_info->icon_bitmaps.any.count(item.first) == 0)
web_app_info->icon_bitmaps.any[item.first] = std::move(item.second);
}
}
void RecordDownloadedIconsResultAndHttpStatusCodes(
IconsDownloadedResult result,
const DownloadedIconsHttpResults& icons_http_results) {
RecordDownloadedIconsHttpResultsCodeClass(
"WebApp.Icon.HttpStatusCodeClassOnCreate", result, icons_http_results);
base::UmaHistogramEnumeration("WebApp.Icon.DownloadedResultOnCreate", result);
RecordDownloadedIconHttpStatusCodes(
"WebApp.Icon.DownloadedHttpStatusCodeOnCreate", icons_http_results);
}
void RecordDownloadedIconsHttpResultsCodeClass(
std::string_view histogram_name,
IconsDownloadedResult result,
const DownloadedIconsHttpResults& icons_http_results) {
if (result != IconsDownloadedResult::kCompleted)
return;
for (const auto& url_and_http_status_code : icons_http_results) {
int http_status_code = url_and_http_status_code.second;
if (http_status_code != 0) {
DCHECK_LE(100, http_status_code);
DCHECK_GT(600, http_status_code);
base::UmaHistogramExactLinear(histogram_name.data(),
http_status_code / 100, 5);
}
}
}
void RecordDownloadedIconHttpStatusCodes(
std::string_view histogram_name,
const DownloadedIconsHttpResults& icons_http_results) {
if (icons_http_results.empty())
return;
// Do not use UMA_HISTOGRAM_... macros here, as it caches the Histogram
// instance and thus only works if |histogram_name| is constant.
base::HistogramBase* counter = base::CustomHistogram::FactoryGet(
histogram_name.data(), net::HttpUtil::GetStatusCodesForHistogram(),
base::HistogramBase::kUmaTargetedHistogramFlag);
// A web app may contain arbitrary number of icons. The histogram assumes that
// most of them fail with same http status codes and counts each http status
// code only once.
std::vector<int> http_status_codes;
http_status_codes.reserve(icons_http_results.size());
for (const auto& url_and_http_status_code : icons_http_results)
http_status_codes.push_back(url_and_http_status_code.second);
base::flat_set<int> unique_http_status_codes{std::move(http_status_codes)};
for (int http_status_code : unique_http_status_codes)
counter->Add(net::HttpUtil::MapStatusCodeForHistogram(http_status_code));
}
WebAppManagement::Type ConvertExternalInstallSourceToSource(
ExternalInstallSource external_install_source) {
return ConvertInstallSurfaceToWebAppSource(
ConvertExternalInstallSourceToInstallSource(external_install_source));
}
webapps::WebappInstallSource ConvertExternalInstallSourceToInstallSource(
ExternalInstallSource external_install_source) {
switch (external_install_source) {
case ExternalInstallSource::kInternalDefault:
return webapps::WebappInstallSource::INTERNAL_DEFAULT;
case ExternalInstallSource::kExternalDefault:
return webapps::WebappInstallSource::EXTERNAL_DEFAULT;
case ExternalInstallSource::kExternalPolicy:
return webapps::WebappInstallSource::EXTERNAL_POLICY;
case ExternalInstallSource::kSystemInstalled:
return webapps::WebappInstallSource::SYSTEM_DEFAULT;
case ExternalInstallSource::kKiosk:
return webapps::WebappInstallSource::KIOSK;
case ExternalInstallSource::kExternalLockScreen:
return webapps::WebappInstallSource::EXTERNAL_LOCK_SCREEN;
case ExternalInstallSource::kInternalMicrosoft365Setup:
return webapps::WebappInstallSource::MICROSOFT_365_SETUP;
}
}
webapps::WebappUninstallSource ConvertExternalInstallSourceToUninstallSource(
ExternalInstallSource external_install_source) {
switch (external_install_source) {
case ExternalInstallSource::kInternalDefault:
return webapps::WebappUninstallSource::kInternalPreinstalled;
case ExternalInstallSource::kExternalDefault:
return webapps::WebappUninstallSource::kExternalPreinstalled;
case ExternalInstallSource::kExternalPolicy:
return webapps::WebappUninstallSource::kExternalPolicy;
case ExternalInstallSource::kSystemInstalled:
return webapps::WebappUninstallSource::kSystemPreinstalled;
case ExternalInstallSource::kKiosk:
NOTREACHED() << "Kiosk apps should not be uninstalled";
case ExternalInstallSource::kExternalLockScreen:
return webapps::WebappUninstallSource::kExternalLockScreen;
case ExternalInstallSource::kInternalMicrosoft365Setup:
NOTREACHED() << "Microsoft 365 apps should not be uninstalled externally";
}
}
WebAppManagement::Type ConvertInstallSurfaceToWebAppSource(
webapps::WebappInstallSource install_source) {
switch (install_source) {
case webapps::WebappInstallSource::SYNC:
return WebAppManagement::kSync;
case webapps::WebappInstallSource::MENU_BROWSER_TAB:
case webapps::WebappInstallSource::MENU_CUSTOM_TAB:
case webapps::WebappInstallSource::AUTOMATIC_PROMPT_BROWSER_TAB:
case webapps::WebappInstallSource::AUTOMATIC_PROMPT_CUSTOM_TAB:
case webapps::WebappInstallSource::API_BROWSER_TAB:
case webapps::WebappInstallSource::API_CUSTOM_TAB:
case webapps::WebappInstallSource::DEVTOOLS:
case webapps::WebappInstallSource::MANAGEMENT_API:
case webapps::WebappInstallSource::AMBIENT_BADGE_BROWSER_TAB:
case webapps::WebappInstallSource::AMBIENT_BADGE_CUSTOM_TAB:
case webapps::WebappInstallSource::RICH_INSTALL_UI_WEBLAYER:
case webapps::WebappInstallSource::ML_PROMOTION:
case webapps::WebappInstallSource::OMNIBOX_INSTALL_ICON:
case webapps::WebappInstallSource::MENU_CREATE_SHORTCUT:
case webapps::WebappInstallSource::CHROME_SERVICE:
case webapps::WebappInstallSource::PROFILE_MENU:
case webapps::WebappInstallSource::ALMANAC_INSTALL_APP_URI:
case webapps::WebappInstallSource::WEBAPK_RESTORE:
case webapps::WebappInstallSource::OOBE_APP_RECOMMENDATIONS:
case webapps::WebappInstallSource::WEB_INSTALL:
case webapps::WebappInstallSource::CHROMEOS_HELP_APP:
return WebAppManagement::kUserInstalled;
case webapps::WebappInstallSource::IWA_GRAPHICAL_INSTALLER:
case webapps::WebappInstallSource::IWA_DEV_UI:
case webapps::WebappInstallSource::IWA_DEV_COMMAND_LINE:
return WebAppManagement::kIwaUserInstalled;
case webapps::WebappInstallSource::INTERNAL_DEFAULT:
case webapps::WebappInstallSource::EXTERNAL_DEFAULT:
return WebAppManagement::kDefault;
case webapps::WebappInstallSource::PRELOADED_DEFAULT:
return WebAppManagement::kApsDefault;
case webapps::WebappInstallSource::PRELOADED_OEM:
return WebAppManagement::kOem;
case webapps::WebappInstallSource::IWA_SHIMLESS_RMA:
return WebAppManagement::kIwaShimlessRma;
case webapps::WebappInstallSource::EXTERNAL_POLICY:
return WebAppManagement::kPolicy;
case webapps::WebappInstallSource::IWA_EXTERNAL_POLICY:
return WebAppManagement::kIwaPolicy;
case webapps::WebappInstallSource::KIOSK:
return WebAppManagement::kKiosk;
case webapps::WebappInstallSource::EXTERNAL_LOCK_SCREEN:
case webapps::WebappInstallSource::SYSTEM_DEFAULT:
return WebAppManagement::kSystem;
case webapps::WebappInstallSource::ARC:
return WebAppManagement::kWebAppStore;
case webapps::WebappInstallSource::SUB_APP:
return WebAppManagement::kSubApp;
case webapps::WebappInstallSource::MICROSOFT_365_SETUP:
return WebAppManagement::kOneDriveIntegration;
}
}
void CreateWebAppInstallTabHelpers(content::WebContents* web_contents) {
webapps::InstallableManager::CreateForWebContents(web_contents);
ChromeSecurityStateTabHelper::CreateForWebContents(web_contents);
favicon::CreateContentFaviconDriverForWebContents(web_contents);
webapps::PreRedirectionURLObserver::CreateForWebContents(web_contents);
}
void SetWebAppManifestFields(const WebAppInstallInfo& web_app_info,
WebApp& web_app,
bool skip_icons_on_download_failure) {
// TODO(crbug.com/344718166): ManifestId should already be set the same,
// otherwise setting it here would be changing the app's ID. This should be a
// CHECK_EQ instead of a set.
web_app.SetManifestId(web_app_info.manifest_id());
DCHECK(!web_app_info.title.empty());
web_app.SetName(base::UTF16ToUTF8(web_app_info.title));
web_app.SetStartUrl(web_app_info.start_url());
web_app.SetDisplayMode(web_app_info.display_mode);
web_app.SetDisplayModeOverride(web_app_info.display_override);
web_app.SetDescription(base::UTF16ToUTF8(web_app_info.description));
web_app.SetLaunchQueryParams(web_app_info.launch_query_params);
if (web_app_info.scope.is_valid()) {
web_app.SetScope(web_app_info.scope);
} else {
web_app.SetScope(web_app_info.start_url().GetWithoutFilename());
}
CHECK(!web_app.scope().is_empty());
DCHECK(!web_app_info.theme_color.has_value() ||
SkColorGetA(*web_app_info.theme_color) == SK_AlphaOPAQUE);
web_app.SetThemeColor(web_app_info.theme_color);
DCHECK(!web_app_info.dark_mode_theme_color.has_value() ||
SkColorGetA(*web_app_info.dark_mode_theme_color) == SK_AlphaOPAQUE);
web_app.SetDarkModeThemeColor(web_app_info.dark_mode_theme_color);
DCHECK(!web_app_info.background_color.has_value() ||
SkColorGetA(*web_app_info.background_color) == SK_AlphaOPAQUE);
web_app.SetBackgroundColor(web_app_info.background_color);
DCHECK(!web_app_info.dark_mode_background_color.has_value() ||
SkColorGetA(*web_app_info.dark_mode_background_color) ==
SK_AlphaOPAQUE);
web_app.SetDarkModeBackgroundColor(web_app_info.dark_mode_background_color);
sync_pb::WebAppSpecifics sync_proto = web_app.sync_proto();
// Sync proto has already been initialized by setting the start_url and/or
// manifest_id above.
CHECK(sync_proto.has_start_url());
CHECK(sync_proto.has_relative_manifest_id());
sync_proto.set_name(base::UTF16ToUTF8(web_app_info.title));
sync_proto.clear_theme_color();
if (web_app_info.theme_color.has_value()) {
sync_proto.set_theme_color(web_app_info.theme_color.value());
}
sync_proto.clear_scope();
if (web_app_info.scope.is_valid()) {
sync_proto.set_scope(web_app_info.scope.spec());
}
sync_proto.clear_icon_infos();
for (const apps::IconInfo& icon_info : web_app_info.manifest_icons) {
*(sync_proto.add_icon_infos()) = AppIconInfoToSyncProto(icon_info);
}
web_app.SetSyncProto(std::move(sync_proto));
if (!skip_icons_on_download_failure) {
SetWebAppProductIconFields(web_app_info, web_app);
web_app.SetShortcutsMenuInfo(GetShortcutsMenuInfoWithIconSizes(
web_app_info.shortcuts_menu_item_infos,
web_app_info.shortcuts_menu_icon_bitmaps));
}
web_app.SetPermissionsPolicy(web_app_info.permissions_policy);
if (web_app.file_handler_approval_state() == ApiApprovalState::kAllowed &&
!AreNewFileHandlersASubsetOfOld(web_app.file_handlers(),
web_app_info.file_handlers)) {
web_app.SetFileHandlerApprovalState(ApiApprovalState::kRequiresPrompt);
}
web_app.SetFileHandlers(web_app_info.file_handlers);
web_app.SetShareTarget(web_app_info.share_target);
web_app.SetProtocolHandlers(web_app_info.protocol_handlers);
web_app.SetScopeExtensions(web_app_info.scope_extensions);
if (base::FeatureList::IsEnabled(features::kWebLockScreenApi))
web_app.SetLockScreenStartUrl(web_app_info.lock_screen_start_url);
web_app.SetNoteTakingNewNoteUrl(web_app_info.note_taking_new_note_url);
web_app.SetCaptureLinks(web_app_info.capture_links);
web_app.SetManifestUrl(web_app_info.manifest_url);
web_app.SetLaunchHandler(web_app_info.launch_handler);
web_app.SetTabStrip(web_app_info.tab_strip);
if (web_app_info.validated_scope_extensions.has_value()) {
web_app.SetValidatedScopeExtensions(
web_app_info.validated_scope_extensions.value());
}
web_app.SetIsDiyApp(web_app_info.is_diy_app);
web_app.SetRelatedApplications(web_app_info.related_applications);
}
void SetWebAppProductIconFields(const WebAppInstallInfo& web_app_info,
WebApp& web_app) {
web_app.SetManifestIcons(web_app_info.manifest_icons);
for (IconPurpose purpose : kIconPurposes) {
web_app.SetDownloadedIconSizes(
purpose, GetSquareSizePxs(web_app_info.icon_bitmaps, purpose));
}
web_app.SetIsGeneratedIcon(web_app_info.is_generated_icon);
}
bool CanWebAppUpdateIdentity(const WebApp* web_app) {
if (web_app->IsPolicyInstalledApp() &&
base::FeatureList::IsEnabled(
features::kWebAppManifestPolicyAppIdentityUpdate)) {
return true;
}
// WebAppChromeOsData::oem_installed is not included in this statement as
// we would like to keep WebAppManagement::kOem and
// WebAppChromeOsData::oem_installed separate.
// WebAppChromeOsData::oem_installed will be migrated to
// WebAppManagement::kOem eventually.
return web_app->IsPreinstalledApp() || web_app->IsKioskInstalledApp() ||
web_app->GetSources().HasAny(
{WebAppManagement::kOem, WebAppManagement::kApsDefault});
}
void ApplyParamsToWebAppInstallInfo(const WebAppInstallParams& install_params,
WebAppInstallInfo& web_app_info) {
if (install_params.user_display_mode.has_value())
web_app_info.user_display_mode = install_params.user_display_mode;
// If `additional_search_terms` was a manifest property, it would be
// sanitized while parsing the manifest. Since it's not, we sanitize it
// here.
for (const std::string& search_term :
install_params.additional_search_terms) {
if (!search_term.empty())
web_app_info.additional_search_terms.push_back(search_term);
}
if (install_params.launch_query_params)
web_app_info.launch_query_params = install_params.launch_query_params;
if (install_params.install_url.is_valid())
web_app_info.install_url = install_params.install_url;
}
void ApplyParamsToFinalizeOptions(
const WebAppInstallParams& install_params,
WebAppInstallFinalizer::FinalizeOptions& options) {
if (IsChromeOsDataMandatory()) {
options.chromeos_data.emplace();
options.chromeos_data->show_in_launcher =
install_params.add_to_applications_menu;
options.chromeos_data->show_in_search_and_shelf =
install_params.add_to_search;
options.chromeos_data->show_in_management =
install_params.add_to_management;
options.chromeos_data->is_disabled = install_params.is_disabled;
options.chromeos_data->oem_installed = install_params.oem_installed;
options.chromeos_data->handles_file_open_intents =
install_params.handles_file_open_intents;
}
options.install_state = install_params.install_state;
options.add_to_applications_menu = install_params.add_to_applications_menu;
options.add_to_desktop = install_params.add_to_desktop;
options.add_to_quick_launch_bar = install_params.add_to_quick_launch_bar;
options.skip_origin_association_validation =
install_params.skip_origin_association_validation;
#if BUILDFLAG(IS_CHROMEOS)
if (install_params.system_app_type.has_value()) {
options.system_web_app_data.emplace();
options.system_web_app_data->system_app_type =
install_params.system_app_type.value();
}
#endif
}
bool HomeTabIconsExistInTabStrip(const WebAppInstallInfo& web_app_info) {
if (!web_app_info.tab_strip.has_value()) {
return false;
}
if (!std::holds_alternative<blink::Manifest::HomeTabParams>(
web_app_info.tab_strip.value().home_tab)) {
return false;
}
const auto& home_tab = std::get<blink::Manifest::HomeTabParams>(
web_app_info.tab_strip.value().home_tab);
if (home_tab.icons.empty()) {
return false;
}
return true;
}
bool IsSyncEnabledForApps(Profile* profile) {
if (!SyncServiceFactory::HasSyncService(profile)) {
return false;
}
syncer::SyncService* sync_service =
SyncServiceFactory::GetForProfile(profile);
#if BUILDFLAG(IS_CHROMEOS)
return sync_service->GetUserSettings()->GetSelectedOsTypes().Has(
syncer::UserSelectableOsType::kOsApps);
#else
return sync_service->GetUserSettings()->GetSelectedTypes().Has(
syncer::UserSelectableType::kApps);
#endif
}
} // namespace web_app
|