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 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/modules/manifest/manifest_parser.h"
#include <string>
#include "base/compiler_specific.h"
#include "base/feature_list.h"
#include "base/metrics/histogram_functions.h"
#include "net/base/mime_util.h"
#include "net/base/registry_controlled_domains/registry_controlled_domain.h"
#include "services/network/public/cpp/permissions_policy/origin_with_possible_wildcards.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/common/manifest/manifest_util.h"
#include "third_party/blink/public/common/mime_util/mime_util.h"
#include "third_party/blink/public/common/safe_url_pattern.h"
#include "third_party/blink/public/common/security/protocol_handler_security_level.h"
#include "third_party/blink/public/mojom/manifest/manifest.mojom-blink-forward.h"
#include "third_party/blink/public/mojom/manifest/manifest.mojom-blink.h"
#include "third_party/blink/public/mojom/use_counter/metrics/web_feature.mojom-shared.h"
#include "third_party/blink/public/mojom/use_counter/metrics/webdx_feature.mojom-shared.h"
#include "third_party/blink/public/platform/url_conversion.h"
#include "third_party/blink/public/platform/web_icon_sizes_parser.h"
#include "third_party/blink/public/platform/web_string.h"
#include "third_party/blink/renderer/core/css/media_list.h"
#include "third_party/blink/renderer/core/css/media_query_evaluator.h"
#include "third_party/blink/renderer/core/css/media_values.h"
#include "third_party/blink/renderer/core/css/media_values_cached.h"
#include "third_party/blink/renderer/core/css/parser/css_parser.h"
#include "third_party/blink/renderer/core/css_value_keywords.h"
#include "third_party/blink/renderer/core/permissions_policy/permissions_policy_parser.h"
#include "third_party/blink/renderer/modules/navigatorcontentutils/navigator_content_utils.h"
#include "third_party/blink/renderer/platform/json/json_parser.h"
#include "third_party/blink/renderer/platform/json/json_values.h"
#include "third_party/blink/renderer/platform/runtime_enabled_features.h"
#include "third_party/blink/renderer/platform/weborigin/kurl.h"
#include "third_party/blink/renderer/platform/weborigin/security_origin.h"
#include "third_party/blink/renderer/platform/wtf/text/string_utf8_adaptor.h"
#include "third_party/blink/renderer/platform/wtf/text/string_view.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "third_party/liburlpattern/parse.h"
#include "third_party/liburlpattern/pattern.h"
#include "third_party/liburlpattern/utils.h"
#include "url/gurl.h"
#include "url/url_constants.h"
#include "url/url_util.h"
namespace blink {
namespace {
static constexpr char kScopeExtensionsMissingKeysErrorMessage[] =
"scope_extensions entry ignored, required properties 'type' and 'origin' "
"are missing.";
static constexpr char kScopeExtensionsTypeKey[] = "type";
static constexpr char kScopeExtensionsOriginKey[] = "origin";
static constexpr char kOriginWildcardPrefix[] = "%2A.";
// Keep in sync with web_app_origin_association_task.cc.
static wtf_size_t kMaxScopeExtensionsSize = 10;
static wtf_size_t kMaxShortcutsSize = 10;
static wtf_size_t kMaxOriginLength = 2000;
// The max number of file extensions an app can handle via the File Handling
// API.
const int kFileHandlerExtensionLimit = 300;
int g_file_handler_extension_limit_for_testing = 0;
bool IsValidMimeType(const String& mime_type) {
if (mime_type.StartsWith('.')) {
return true;
}
return net::ParseMimeTypeWithoutParameter(mime_type.Utf8(), nullptr, nullptr);
}
bool VerifyFiles(const Vector<mojom::blink::ManifestFileFilterPtr>& files) {
for (const auto& file : files) {
for (const auto& accept_type : file->accept) {
if (!IsValidMimeType(accept_type.LowerASCII())) {
return false;
}
}
}
return true;
}
// Determines whether |url| is within scope of |scope|.
bool URLIsWithinScope(const KURL& url, const KURL& scope) {
return SecurityOrigin::AreSameOrigin(url, scope) &&
url.GetPath().ToString().StartsWith(scope.GetPath());
}
bool IsHostValidForScopeExtension(String host) {
if (url::HostIsIPAddress(host.Utf8())) {
return true;
}
const size_t registry_length =
net::registry_controlled_domains::PermissiveGetHostRegistryLength(
host.Utf8(),
// Reject unknown registries (registries that don't have any matches
// in effective TLD names).
net::registry_controlled_domains::EXCLUDE_UNKNOWN_REGISTRIES,
// Skip matching private registries that allow external users to
// specify sub-domains, e.g. glitch.me, as this is allowed.
net::registry_controlled_domains::EXCLUDE_PRIVATE_REGISTRIES);
// Host cannot be a TLD or invalid.
if (registry_length == 0 || registry_length == std::string::npos ||
registry_length >= host.length()) {
return false;
}
return true;
}
static bool IsCrLfOrTabChar(UChar c) {
return c == '\n' || c == '\r' || c == '\t';
}
std::optional<mojom::blink::ManifestFileHandler::LaunchType>
FileHandlerLaunchTypeFromString(const std::string& launch_type) {
if (WTF::EqualIgnoringASCIICase(String(launch_type), "single-client")) {
return mojom::blink::ManifestFileHandler::LaunchType::kSingleClient;
}
if (WTF::EqualIgnoringASCIICase(String(launch_type), "multiple-clients")) {
return mojom::blink::ManifestFileHandler::LaunchType::kMultipleClients;
}
return std::nullopt;
}
bool IsDefaultManifest(const mojom::blink::Manifest& manifest,
const KURL& document_url) {
if (manifest.has_custom_id || manifest.has_valid_specified_start_url) {
return false;
}
auto default_manifest = mojom::blink::Manifest::New();
default_manifest->start_url = document_url;
KURL default_id = document_url;
default_id.RemoveFragmentIdentifier();
default_manifest->id = default_id;
default_manifest->scope = KURL(document_url.BaseAsString().ToString());
return manifest == *default_manifest;
}
static const char kUMAIdParseResult[] = "Manifest.ParseIdResult";
// Record that the Manifest was successfully parsed. If it is a default
// Manifest, it will recorded as so and nothing will happen. Otherwise, the
// presence of each properties will be recorded.
void ParseSucceeded(const mojom::blink::ManifestPtr& manifest,
const KURL& document_url) {
if (IsDefaultManifest(*manifest, document_url)) {
return;
}
base::UmaHistogramBoolean("Manifest.HasProperty.name",
!manifest->name.empty());
base::UmaHistogramBoolean("Manifest.HasProperty.short_name",
!manifest->short_name.empty());
base::UmaHistogramBoolean("Manifest.HasProperty.description",
!manifest->description.empty());
base::UmaHistogramBoolean("Manifest.HasProperty.start_url",
!manifest->start_url.IsEmpty());
base::UmaHistogramBoolean(
"Manifest.HasProperty.display",
manifest->display != blink::mojom::DisplayMode::kUndefined);
base::UmaHistogramBoolean(
"Manifest.HasProperty.orientation",
manifest->orientation !=
device::mojom::blink::ScreenOrientationLockType::DEFAULT);
base::UmaHistogramBoolean("Manifest.HasProperty.icons",
!manifest->icons.empty());
base::UmaHistogramBoolean("Manifest.HasProperty.screenshots",
!manifest->screenshots.empty());
base::UmaHistogramBoolean("Manifest.HasProperty.share_target",
manifest->share_target.get());
base::UmaHistogramBoolean("Manifest.HasProperty.protocol_handlers",
!manifest->protocol_handlers.empty());
base::UmaHistogramBoolean("Manifest.HasProperty.gcm_sender_id",
!manifest->gcm_sender_id.empty());
}
// Returns a liburlpattern::Part list obtained from running
// liburlpattern::Parse on a UrlPatternInit field. The list will be empty if the
// field is empty. Returns std::nullopt if the field should be rejected or the
// parse failed, e.g. if it contains custom (or ill-formed) regex.
std::optional<std::vector<liburlpattern::Part>> ParsePatternInitField(
const std::optional<String>& field,
const String default_field_value) {
const String value = field.has_value() ? field.value() : default_field_value;
if (value.empty()) {
return std::vector<liburlpattern::Part>();
}
StringUTF8Adaptor utf8(value);
auto parse_result = liburlpattern::Parse(
utf8.AsStringView(),
[](std::string_view input) { return std::string(input); });
if (parse_result.has_value()) {
std::vector<liburlpattern::Part> part_list;
for (auto& part : parse_result.value().PartList()) {
// We don't allow custom regex for security reasons as this will be
// used in the browser process.
if (part.type == liburlpattern::PartType::kRegex) {
return std::nullopt;
}
part_list.push_back(std::move(part));
}
return part_list;
}
return std::nullopt;
}
String EscapePatternString(const StringView& input) {
std::string result;
result.reserve(input.length());
StringUTF8Adaptor utf8(input);
liburlpattern::EscapePatternStringAndAppend(utf8.AsStringView(), result);
return String(result);
}
// Utility function to determine if a pathname is absolute or not. We do some
// additional checking for escaped or grouped slashes.
//
// Note: This is partially copied from
// third_party/blink/renderer/core/url_pattern/url_pattern.cc
bool IsAbsolutePathname(String pathname) {
if (pathname.empty()) {
return false;
}
if (pathname[0] == '/') {
return true;
}
if (pathname.length() < 2) {
return false;
}
// Patterns treat escaped slashes and slashes within an explicit grouping as
// valid leading slashes. For example, "\/foo" or "{/foo}". Patterns do
// not consider slashes within a custom regexp group as valid for the leading
// pathname slash for now. To support that we would need to be able to
// detect things like ":name_123(/foo)" as a valid leading group in a pattern,
// but that is considered too complex for now.
if ((pathname[0] == '\\' || pathname[0] == '{') && pathname[1] == '/') {
return true;
}
return false;
}
String ResolveRelativePathnamePattern(const KURL& base_url, String pathname) {
if (base_url.IsStandard() && !IsAbsolutePathname(pathname)) {
String base_path = EscapePatternString(base_url.GetPath());
auto slash_index = base_path.ReverseFind('/');
if (slash_index != WTF::kNotFound) {
// Extract the base_url path up to and including the last slash. Append
// the relative pathname to it.
base_path.Truncate(slash_index + 1);
base_path = base_path + pathname;
return base_path;
}
}
return pathname;
}
} // anonymous namespace
ManifestParser::ManifestParser(const String& data,
const KURL& manifest_url,
const KURL& document_url,
ExecutionContext* execution_context)
: data_(data),
manifest_url_(manifest_url),
document_url_(document_url),
execution_context_(execution_context),
failed_(false) {}
ManifestParser::~ManifestParser() {}
// static
void ManifestParser::SetFileHandlerExtensionLimitForTesting(int limit) {
g_file_handler_extension_limit_for_testing = limit;
}
bool ManifestParser::Parse() {
DCHECK(!manifest_);
// TODO(crbug.com/1264024): Deprecate JSON comments here, if possible.
JSONParseError error;
bool has_comments = false;
std::unique_ptr<JSONValue> root =
ParseJSONWithCommentsDeprecated(data_, &error, &has_comments);
manifest_ = mojom::blink::Manifest::New();
if (!root) {
AddErrorInfo(error.message, true, error.line, error.column);
failed_ = true;
return false;
}
std::unique_ptr<JSONObject> root_object = JSONObject::From(std::move(root));
if (!root_object) {
AddErrorInfo("root element must be a valid JSON object.", true);
failed_ = true;
return false;
}
manifest_->manifest_url = manifest_url_;
manifest_->dir = ParseDir(root_object.get());
manifest_->name = ParseName(root_object.get());
manifest_->short_name = ParseShortName(root_object.get());
manifest_->description = ParseDescription(root_object.get());
const auto& [start_url, start_url_parse_result] =
ParseStartURL(root_object.get(), document_url_);
manifest_->start_url = start_url;
manifest_->has_valid_specified_start_url =
start_url_parse_result == ParseStartUrlResult::kParsedFromJson;
const auto& [id, id_parse_result] =
ParseId(root_object.get(), manifest_->start_url);
manifest_->id = id;
manifest_->has_custom_id = id_parse_result == ParseIdResultType::kSucceed;
manifest_->update_token =
ParseUpdateToken(root_object.get(), manifest_->has_custom_id);
if (!manifest_->update_token.IsNull()) {
UseCounter::CountWebDXFeature(execution_context_,
WebDXFeature::kWebAppManifestUpdateToken);
}
manifest_->scope = ParseScope(root_object.get(), manifest_->start_url);
manifest_->display = ParseDisplay(root_object.get());
if (manifest_->display != mojom::blink::DisplayMode::kUndefined) {
UseCounter::Count(execution_context_, WebFeature::kWebAppManifestDisplay);
switch (manifest_->display) {
case blink::mojom::DisplayMode::kBrowser:
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestDisplayBrowser);
break;
case blink::mojom::DisplayMode::kMinimalUi:
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestDisplayMinimalUI);
break;
case blink::mojom::DisplayMode::kFullscreen:
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestDisplayFullscreen);
break;
case blink::mojom::DisplayMode::kStandalone:
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestDisplayStandalone);
break;
default:
break;
}
}
manifest_->display_override = ParseDisplayOverride(root_object.get());
for (const mojom::blink::DisplayMode& display_override :
manifest_->display_override) {
if (display_override == mojom::blink::DisplayMode::kWindowControlsOverlay) {
UseCounter::Count(execution_context_,
WebFeature::kWebAppWindowControlsOverlay);
} else if (display_override == mojom::blink::DisplayMode::kBorderless) {
UseCounter::Count(execution_context_, WebFeature::kWebAppBorderless);
} else if (display_override == mojom::blink::DisplayMode::kTabbed) {
UseCounter::Count(execution_context_, WebFeature::kWebAppTabbed);
}
}
manifest_->orientation = ParseOrientation(root_object.get());
manifest_->icons = ParseIcons(root_object.get());
if (!manifest_->icons.empty()) {
UseCounter::Count(execution_context_, WebFeature::kWebAppManifestIcons);
}
manifest_->screenshots = ParseScreenshots(root_object.get());
if (!manifest_->screenshots.empty()) {
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestScreenshots);
}
auto share_target = ParseShareTarget(root_object.get());
if (share_target.has_value()) {
manifest_->share_target = std::move(*share_target);
UseCounter::CountWebDXFeature(execution_context_,
WebDXFeature::kAppShareTargets);
}
manifest_->file_handlers = ParseFileHandlers(root_object.get());
manifest_->protocol_handlers = ParseProtocolHandlers(root_object.get());
if (!manifest_->protocol_handlers.empty()) {
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestProtocolHandlers);
}
manifest_->scope_extensions = ParseScopeExtensions(root_object.get());
if (!manifest_->scope_extensions.empty()) {
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestScopeExtensions);
}
manifest_->lock_screen = ParseLockScreen(root_object.get());
if (!manifest_->lock_screen.is_null()) {
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestLockScreen);
}
manifest_->note_taking = ParseNoteTaking(root_object.get());
if (!manifest_->note_taking.is_null()) {
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestNoteTaking);
}
manifest_->related_applications = ParseRelatedApplications(root_object.get());
if (!manifest_->related_applications.empty()) {
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestRelated_Applications);
}
manifest_->prefer_related_applications =
ParsePreferRelatedApplications(root_object.get());
if (manifest_->prefer_related_applications) {
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestPrefer_Related_Applications);
}
std::optional<RGBA32> theme_color = ParseThemeColor(root_object.get());
manifest_->has_theme_color = theme_color.has_value();
if (manifest_->has_theme_color) {
manifest_->theme_color = *theme_color;
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestThemeColor);
}
std::optional<RGBA32> background_color =
ParseBackgroundColor(root_object.get());
manifest_->has_background_color = background_color.has_value();
if (manifest_->has_background_color) {
manifest_->background_color = *background_color;
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestBackgroundColor);
}
manifest_->gcm_sender_id = ParseGCMSenderID(root_object.get());
manifest_->shortcuts = ParseShortcuts(root_object.get());
if (!manifest_->shortcuts.empty()) {
UseCounter::CountWebDXFeature(execution_context_,
WebDXFeature::kAppShortcuts);
}
manifest_->permissions_policy =
ParseIsolatedAppPermissions(root_object.get());
if (!manifest_->permissions_policy.empty()) {
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestPermissionsPolicy);
}
manifest_->launch_handler = ParseLaunchHandler(root_object.get());
if (!manifest_->launch_handler.is_null()) {
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestLaunchHandler);
}
if (RuntimeEnabledFeatures::WebAppTranslationsEnabled(execution_context_)) {
manifest_->translations = ParseTranslations(root_object.get());
if (!manifest_->translations.empty()) {
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestTranslations);
}
}
if (RuntimeEnabledFeatures::WebAppTabStripCustomizationsEnabled(
execution_context_)) {
manifest_->tab_strip = ParseTabStrip(root_object.get());
if (!manifest_->tab_strip.is_null()) {
UseCounter::Count(execution_context_,
WebFeature::kWebAppManifestTabStrip);
}
}
manifest_->version = ParseVersion(root_object.get());
if (!manifest_->version.empty()) {
UseCounter::Count(execution_context_, WebFeature::kWebAppManifestVersion);
}
ParseSucceeded(manifest_, document_url_);
base::UmaHistogramEnumeration(kUMAIdParseResult, id_parse_result);
return has_comments;
}
mojom::blink::ManifestPtr ManifestParser::TakeManifest() {
return std::move(manifest_);
}
void ManifestParser::TakeErrors(
Vector<mojom::blink::ManifestErrorPtr>* errors) {
errors->clear();
errors->swap(errors_);
}
bool ManifestParser::failed() const {
return failed_;
}
ManifestParser::PatternInit::PatternInit(std::optional<String> protocol,
std::optional<String> username,
std::optional<String> password,
std::optional<String> hostname,
std::optional<String> port,
std::optional<String> pathname,
std::optional<String> search,
std::optional<String> hash,
KURL base_url)
: protocol(std::move(protocol)),
username(std::move(username)),
password(std::move(password)),
hostname(std::move(hostname)),
port(std::move(port)),
pathname(std::move(pathname)),
search(std::move(search)),
hash(std::move(hash)),
base_url(base_url) {}
ManifestParser::PatternInit::~PatternInit() = default;
ManifestParser::PatternInit::PatternInit(PatternInit&&) = default;
ManifestParser::PatternInit& ManifestParser::PatternInit::operator=(
PatternInit&&) = default;
bool ManifestParser::PatternInit::IsAbsolute() const {
return protocol.has_value() || hostname.has_value() || port.has_value();
}
bool ManifestParser::ParseBoolean(const JSONObject* object,
const String& key,
bool default_value) {
JSONValue* json_value = object->Get(key);
if (!json_value) {
return default_value;
}
bool value;
if (!json_value->AsBoolean(&value)) {
AddErrorInfo("property '" + key + "' ignored, type " + "boolean expected.");
return default_value;
}
return value;
}
std::optional<String> ManifestParser::ParseString(const JSONObject* object,
const String& key,
Trim trim) {
JSONValue* json_value = object->Get(key);
if (!json_value) {
return std::nullopt;
}
String value;
if (!json_value->AsString(&value) || value.IsNull()) {
AddErrorInfo("property '" + key + "' ignored, type " + "string expected.");
return std::nullopt;
}
if (trim) {
value = value.StripWhiteSpace();
}
return value;
}
std::optional<String> ManifestParser::ParseStringForMember(
const JSONObject* object,
const String& member_name,
const String& key,
bool required,
Trim trim) {
JSONValue* json_value = object->Get(key);
if (!json_value) {
if (required) {
AddErrorInfo("property '" + key + "' of '" + member_name +
"' not present.");
}
return std::nullopt;
}
String value;
if (!json_value->AsString(&value)) {
AddErrorInfo("property '" + key + "' of '" + member_name +
"' ignored, type string expected.");
return std::nullopt;
}
if (trim) {
value = value.StripWhiteSpace();
}
if (value == "") {
AddErrorInfo("property '" + key + "' of '" + member_name +
"' is an empty string.");
if (required) {
return std::nullopt;
}
}
return value;
}
std::optional<RGBA32> ManifestParser::ParseColor(const JSONObject* object,
const String& key) {
std::optional<String> parsed_color = ParseString(object, key, Trim(true));
if (!parsed_color.has_value()) {
return std::nullopt;
}
Color color;
if (!CSSParser::ParseColor(color, *parsed_color)) {
AddErrorInfo("property '" + key + "' ignored, '" + *parsed_color +
"' is not a " + "valid color.");
return std::nullopt;
}
return color.Rgb();
}
KURL ManifestParser::ParseURL(const JSONObject* object,
const String& key,
const KURL& base_url,
ParseURLRestrictions origin_restriction,
bool ignore_empty_string) {
std::optional<String> url_str = ParseString(object, key, Trim(false));
if (!url_str.has_value()) {
return KURL();
}
if (ignore_empty_string && url_str.value() == "") {
return KURL();
}
KURL resolved = KURL(base_url, *url_str);
if (!resolved.IsValid()) {
AddErrorInfo("property '" + key + "' ignored, URL is invalid.");
return KURL();
}
switch (origin_restriction) {
case ParseURLRestrictions::kNoRestrictions:
return resolved;
case ParseURLRestrictions::kSameOriginOnly:
if (!SecurityOrigin::AreSameOrigin(resolved, document_url_)) {
AddErrorInfo("property '" + key +
"' ignored, should be same origin as document.");
return KURL();
}
return resolved;
case ParseURLRestrictions::kWithinScope:
if (!URLIsWithinScope(resolved, manifest_->scope)) {
AddErrorInfo("property '" + key +
"' ignored, should be within scope of the manifest.");
return KURL();
}
// Within scope implies same origin as document URL.
DCHECK(SecurityOrigin::AreSameOrigin(resolved, document_url_));
return resolved;
}
NOTREACHED();
}
template <typename Enum>
Enum ManifestParser::ParseFirstValidEnum(const JSONObject* object,
const String& key,
Enum (*parse_enum)(const std::string&),
Enum invalid_value) {
const JSONValue* value = object->Get(key);
if (!value) {
return invalid_value;
}
String string_value;
if (value->AsString(&string_value)) {
Enum enum_value = parse_enum(string_value.Utf8());
if (enum_value == invalid_value) {
AddErrorInfo(key + " value '" + string_value +
"' ignored, unknown value.");
}
return enum_value;
}
const JSONArray* list = JSONArray::Cast(value);
if (!list) {
AddErrorInfo("property '" + key +
"' ignored, type string or array of strings expected.");
return invalid_value;
}
for (wtf_size_t i = 0; i < list->size(); ++i) {
const JSONValue* item = list->at(i);
if (!item->AsString(&string_value)) {
AddErrorInfo(key + " value '" + item->ToJSONString() +
"' ignored, string expected.");
continue;
}
Enum enum_value = parse_enum(string_value.Utf8());
if (enum_value != invalid_value) {
return enum_value;
}
AddErrorInfo(key + " value '" + string_value + "' ignored, unknown value.");
}
return invalid_value;
}
mojom::blink::Manifest::TextDirection ManifestParser::ParseDir(
const JSONObject* object) {
using TextDirection = mojom::blink::Manifest::TextDirection;
std::optional<String> dir = ParseString(object, "dir", Trim(true));
if (!dir.has_value()) {
return TextDirection::kAuto;
}
std::optional<TextDirection> textDirection =
TextDirectionFromString(dir->Utf8());
if (!textDirection.has_value()) {
AddErrorInfo("unknown 'dir' value ignored.");
return TextDirection::kAuto;
}
return *textDirection;
}
String ManifestParser::ParseName(const JSONObject* object) {
std::optional<String> name = ParseString(object, "name", Trim(true));
if (name.has_value()) {
name = name->RemoveCharacters(IsCrLfOrTabChar);
if (name->length() == 0) {
name = std::nullopt;
}
}
return name.has_value() ? *name : String();
}
String ManifestParser::ParseShortName(const JSONObject* object) {
std::optional<String> short_name =
ParseString(object, "short_name", Trim(true));
if (short_name.has_value()) {
short_name = short_name->RemoveCharacters(IsCrLfOrTabChar);
if (short_name->length() == 0) {
short_name = std::nullopt;
}
}
return short_name.has_value() ? *short_name : String();
}
String ManifestParser::ParseDescription(const JSONObject* object) {
std::optional<String> description =
ParseString(object, "description", Trim(true));
return description.has_value() ? *description : String();
}
std::pair<KURL, ManifestParser::ParseIdResultType> ManifestParser::ParseId(
const JSONObject* object,
const KURL& start_url) {
if (!start_url.IsValid()) {
return {KURL(), ParseIdResultType::kInvalidStartUrl};
}
KURL start_url_origin = KURL(SecurityOrigin::Create(start_url)->ToString());
KURL id = ParseURL(object, "id", start_url_origin,
ParseURLRestrictions::kSameOriginOnly,
/*ignore_empty_string=*/true);
ParseIdResultType parse_result;
if (id.IsValid()) {
parse_result = ParseIdResultType::kSucceed;
UseCounter::Count(execution_context_, WebFeature::kWebAppManifestIdField);
} else {
// If id is not specified, sets to start_url
parse_result = ParseIdResultType::kDefaultToStartUrl;
id = start_url;
}
id.RemoveFragmentIdentifier();
return {id, parse_result};
}
std::pair<KURL, ManifestParser::ParseStartUrlResult>
ManifestParser::ParseStartURL(const JSONObject* object,
const KURL& document_url) {
KURL start_url = ParseURL(object, "start_url", manifest_url_,
ParseURLRestrictions::kSameOriginOnly);
if (start_url.IsEmpty()) {
return std::make_pair(document_url,
ParseStartUrlResult::kDefaultDocumentUrl);
}
UseCounter::Count(execution_context_, WebFeature::kWebAppManifestStartUrl);
return std::make_pair(start_url, ParseStartUrlResult::kParsedFromJson);
}
KURL ManifestParser::ParseScope(const JSONObject* object,
const KURL& start_url) {
KURL scope = ParseURL(object, "scope", manifest_url_,
ParseURLRestrictions::kNoRestrictions);
const KURL& default_value = start_url;
DCHECK(default_value.IsValid());
if (scope.IsEmpty()) {
return KURL(default_value.BaseAsString().ToString());
}
if (!URLIsWithinScope(default_value, scope)) {
AddErrorInfo(
"property 'scope' ignored. Start url should be within scope "
"of scope URL.");
return KURL(default_value.BaseAsString().ToString());
}
scope.RemoveFragmentIdentifier();
scope.SetQuery(String());
DCHECK(scope.IsValid());
DCHECK(SecurityOrigin::AreSameOrigin(scope, document_url_));
UseCounter::Count(execution_context_, WebFeature::kWebAppManifestScope);
return scope;
}
blink::mojom::DisplayMode ManifestParser::ParseDisplay(
const JSONObject* object) {
std::optional<String> display = ParseString(object, "display", Trim(true));
if (!display.has_value()) {
return blink::mojom::DisplayMode::kUndefined;
}
blink::mojom::DisplayMode display_enum =
DisplayModeFromString(display->Utf8());
if (display_enum == mojom::blink::DisplayMode::kUndefined) {
AddErrorInfo("unknown 'display' value ignored.");
return display_enum;
}
// Ignore "enhanced" display modes.
if (!IsBasicDisplayMode(display_enum)) {
display_enum = mojom::blink::DisplayMode::kUndefined;
AddErrorInfo("inapplicable 'display' value ignored.");
}
return display_enum;
}
Vector<mojom::blink::DisplayMode> ManifestParser::ParseDisplayOverride(
const JSONObject* object) {
Vector<mojom::blink::DisplayMode> display_override;
JSONValue* json_value = object->Get("display_override");
if (!json_value) {
return display_override;
}
JSONArray* display_override_list = object->GetArray("display_override");
if (!display_override_list) {
AddErrorInfo("property 'display_override' ignored, type array expected.");
return display_override;
}
for (wtf_size_t i = 0; i < display_override_list->size(); ++i) {
String display_enum_string;
// AsString will return an empty string if a type error occurs,
// which will cause DisplayModeFromString to return kUndefined,
// resulting in this entry being ignored.
display_override_list->at(i)->AsString(&display_enum_string);
display_enum_string = display_enum_string.StripWhiteSpace();
mojom::blink::DisplayMode display_enum =
DisplayModeFromString(display_enum_string.Utf8());
if (!RuntimeEnabledFeatures::WebAppTabStripEnabled(execution_context_) &&
display_enum == mojom::blink::DisplayMode::kTabbed) {
display_enum = mojom::blink::DisplayMode::kUndefined;
}
if (!base::FeatureList::IsEnabled(blink::features::kWebAppBorderless) &&
display_enum == mojom::blink::DisplayMode::kBorderless) {
display_enum = mojom::blink::DisplayMode::kUndefined;
}
if (display_enum != mojom::blink::DisplayMode::kUndefined) {
display_override.push_back(display_enum);
}
}
return display_override;
}
device::mojom::blink::ScreenOrientationLockType
ManifestParser::ParseOrientation(const JSONObject* object) {
std::optional<String> orientation =
ParseString(object, "orientation", Trim(true));
if (!orientation.has_value()) {
return device::mojom::blink::ScreenOrientationLockType::DEFAULT;
}
device::mojom::blink::ScreenOrientationLockType orientation_enum =
WebScreenOrientationLockTypeFromString(orientation->Utf8());
if (orientation_enum ==
device::mojom::blink::ScreenOrientationLockType::DEFAULT) {
AddErrorInfo("unknown 'orientation' value ignored.");
}
return orientation_enum;
}
KURL ManifestParser::ParseIconSrc(const JSONObject* icon) {
return ParseURL(icon, "src", manifest_url_,
ParseURLRestrictions::kNoRestrictions);
}
String ManifestParser::ParseIconType(const JSONObject* icon) {
std::optional<String> type = ParseString(icon, "type", Trim(true));
return type.value_or(g_empty_string);
}
Vector<gfx::Size> ManifestParser::ParseIconSizes(const JSONObject* icon) {
std::optional<String> sizes_str = ParseString(icon, "sizes", Trim(false));
if (!sizes_str.has_value()) {
return Vector<gfx::Size>();
}
std::vector<gfx::Size> web_sizes =
WebIconSizesParser::ParseIconSizes(WebString(*sizes_str));
Vector<gfx::Size> sizes;
for (auto& size : web_sizes) {
sizes.push_back(size);
}
if (sizes.empty()) {
AddErrorInfo("found icon with no valid size.");
}
return sizes;
}
std::optional<Vector<mojom::blink::ManifestImageResource::Purpose>>
ManifestParser::ParseIconPurpose(const JSONObject* icon) {
std::optional<String> purpose_str = ParseString(icon, "purpose", Trim(false));
Vector<mojom::blink::ManifestImageResource::Purpose> purposes;
if (!purpose_str.has_value()) {
purposes.push_back(mojom::blink::ManifestImageResource::Purpose::ANY);
return purposes;
}
Vector<String> keywords;
purpose_str.value().Split(/*separator=*/" ", /*allow_empty_entries=*/false,
keywords);
// "any" is the default if there are no other keywords.
if (keywords.empty()) {
purposes.push_back(mojom::blink::ManifestImageResource::Purpose::ANY);
return purposes;
}
bool unrecognised_purpose = false;
for (auto& keyword : keywords) {
keyword = keyword.StripWhiteSpace();
if (keyword.empty()) {
continue;
}
if (EqualIgnoringASCIICase(keyword, "any")) {
purposes.push_back(mojom::blink::ManifestImageResource::Purpose::ANY);
} else if (EqualIgnoringASCIICase(keyword, "monochrome")) {
purposes.push_back(
mojom::blink::ManifestImageResource::Purpose::MONOCHROME);
} else if (EqualIgnoringASCIICase(keyword, "maskable")) {
purposes.push_back(
mojom::blink::ManifestImageResource::Purpose::MASKABLE);
} else {
unrecognised_purpose = true;
}
}
// This implies there was at least one purpose given, but none recognised.
// Instead of defaulting to "any" (which would not be future proof),
// invalidate the whole icon.
if (purposes.empty()) {
AddErrorInfo("found icon with no valid purpose; ignoring it.");
return std::nullopt;
}
if (unrecognised_purpose) {
AddErrorInfo(
"found icon with one or more invalid purposes; those purposes are "
"ignored.");
}
return purposes;
}
mojom::blink::ManifestScreenshot::FormFactor
ManifestParser::ParseScreenshotFormFactor(const JSONObject* screenshot) {
std::optional<String> form_factor_str =
ParseString(screenshot, "form_factor", Trim(false));
if (!form_factor_str.has_value()) {
return mojom::blink::ManifestScreenshot::FormFactor::kUnknown;
}
String form_factor = form_factor_str.value();
if (EqualIgnoringASCIICase(form_factor, "wide")) {
return mojom::blink::ManifestScreenshot::FormFactor::kWide;
} else if (EqualIgnoringASCIICase(form_factor, "narrow")) {
return mojom::blink::ManifestScreenshot::FormFactor::kNarrow;
}
AddErrorInfo(
"property 'form_factor' on screenshots has an invalid value, ignoring "
"it.");
return mojom::blink::ManifestScreenshot::FormFactor::kUnknown;
}
String ManifestParser::ParseScreenshotLabel(const JSONObject* object) {
std::optional<String> label = ParseString(object, "label", Trim(true));
return label.has_value() ? *label : String();
}
Vector<mojom::blink::ManifestImageResourcePtr> ManifestParser::ParseIcons(
const JSONObject* object) {
return ParseImageResourceArray("icons", object);
}
Vector<mojom::blink::ManifestScreenshotPtr> ManifestParser::ParseScreenshots(
const JSONObject* object) {
Vector<mojom::blink::ManifestScreenshotPtr> screenshots;
JSONValue* json_value = object->Get("screenshots");
if (!json_value) {
return screenshots;
}
JSONArray* screenshots_list = object->GetArray("screenshots");
if (!screenshots_list) {
AddErrorInfo("property 'screenshots' ignored, type array expected.");
return screenshots;
}
for (wtf_size_t i = 0; i < screenshots_list->size(); ++i) {
JSONObject* screenshot_object = JSONObject::Cast(screenshots_list->at(i));
if (!screenshot_object) {
continue;
}
auto screenshot = mojom::blink::ManifestScreenshot::New();
auto image = ParseImageResource(screenshot_object);
if (!image.has_value()) {
continue;
}
screenshot->image = std::move(*image);
screenshot->form_factor = ParseScreenshotFormFactor(screenshot_object);
screenshot->label = ParseScreenshotLabel(screenshot_object);
screenshots.push_back(std::move(screenshot));
}
return screenshots;
}
Vector<mojom::blink::ManifestImageResourcePtr>
ManifestParser::ParseImageResourceArray(const String& key,
const JSONObject* object) {
Vector<mojom::blink::ManifestImageResourcePtr> icons;
JSONValue* json_value = object->Get(key);
if (!json_value) {
return icons;
}
JSONArray* icons_list = object->GetArray(key);
if (!icons_list) {
AddErrorInfo("property '" + key + "' ignored, type array expected.");
return icons;
}
for (wtf_size_t i = 0; i < icons_list->size(); ++i) {
auto icon = ParseImageResource(icons_list->at(i));
if (icon.has_value()) {
icons.push_back(std::move(*icon));
}
}
return icons;
}
std::optional<mojom::blink::ManifestImageResourcePtr>
ManifestParser::ParseImageResource(const JSONValue* object) {
const JSONObject* icon_object = JSONObject::Cast(object);
if (!icon_object) {
return std::nullopt;
}
auto icon = mojom::blink::ManifestImageResource::New();
icon->src = ParseIconSrc(icon_object);
// An icon MUST have a valid src. If it does not, it MUST be ignored.
if (!icon->src.IsValid()) {
return std::nullopt;
}
icon->type = ParseIconType(icon_object);
icon->sizes = ParseIconSizes(icon_object);
auto purpose = ParseIconPurpose(icon_object);
if (!purpose) {
return std::nullopt;
}
icon->purpose = std::move(*purpose);
return icon;
}
String ManifestParser::ParseShortcutName(const JSONObject* shortcut) {
std::optional<String> name =
ParseStringForMember(shortcut, "shortcut", "name", true, Trim(true));
return name.has_value() ? *name : String();
}
String ManifestParser::ParseShortcutShortName(const JSONObject* shortcut) {
std::optional<String> short_name = ParseStringForMember(
shortcut, "shortcut", "short_name", false, Trim(true));
return short_name.has_value() ? *short_name : String();
}
String ManifestParser::ParseShortcutDescription(const JSONObject* shortcut) {
std::optional<String> description = ParseStringForMember(
shortcut, "shortcut", "description", false, Trim(true));
return description.has_value() ? *description : String();
}
KURL ManifestParser::ParseShortcutUrl(const JSONObject* shortcut) {
KURL shortcut_url = ParseURL(shortcut, "url", manifest_url_,
ParseURLRestrictions::kWithinScope);
if (shortcut_url.IsNull()) {
AddErrorInfo("property 'url' of 'shortcut' not present.");
}
return shortcut_url;
}
Vector<mojom::blink::ManifestShortcutItemPtr> ManifestParser::ParseShortcuts(
const JSONObject* object) {
Vector<mojom::blink::ManifestShortcutItemPtr> shortcuts;
JSONValue* json_value = object->Get("shortcuts");
if (!json_value) {
return shortcuts;
}
JSONArray* shortcuts_list = object->GetArray("shortcuts");
if (!shortcuts_list) {
AddErrorInfo("property 'shortcuts' ignored, type array expected.");
return shortcuts;
}
for (wtf_size_t i = 0; i < shortcuts_list->size(); ++i) {
if (i == kMaxShortcutsSize) {
AddErrorInfo("property 'shortcuts' contains more than " +
String::Number(kMaxShortcutsSize) +
" valid elements, only the first " +
String::Number(kMaxShortcutsSize) + " are parsed.");
break;
}
JSONObject* shortcut_object = JSONObject::Cast(shortcuts_list->at(i));
if (!shortcut_object) {
continue;
}
auto shortcut = mojom::blink::ManifestShortcutItem::New();
shortcut->url = ParseShortcutUrl(shortcut_object);
// A shortcut MUST have a valid url. If it does not, it MUST be ignored.
if (!shortcut->url.IsValid()) {
continue;
}
// A shortcut MUST have a valid name. If it does not, it MUST be ignored.
shortcut->name = ParseShortcutName(shortcut_object);
if (shortcut->name == String()) {
continue;
}
shortcut->short_name = ParseShortcutShortName(shortcut_object);
shortcut->description = ParseShortcutDescription(shortcut_object);
auto icons = ParseIcons(shortcut_object);
if (!icons.empty()) {
shortcut->icons = std::move(icons);
}
shortcuts.push_back(std::move(shortcut));
}
return shortcuts;
}
String ManifestParser::ParseFileFilterName(const JSONObject* file) {
if (!file->Get("name")) {
AddErrorInfo("property 'name' missing.");
return g_empty_string;
}
String value;
if (!file->GetString("name", &value)) {
AddErrorInfo("property 'name' ignored, type string expected.");
return g_empty_string;
}
return value;
}
Vector<String> ManifestParser::ParseFileFilterAccept(const JSONObject* object) {
Vector<String> accept_types;
if (!object->Get("accept")) {
return accept_types;
}
String accept_str;
if (object->GetString("accept", &accept_str)) {
accept_types.push_back(accept_str);
return accept_types;
}
JSONArray* accept_list = object->GetArray("accept");
if (!accept_list) {
// 'accept' property is the wrong type. Returning an empty vector here
// causes the 'files' entry to be discarded.
AddErrorInfo("property 'accept' ignored, type array or string expected.");
return accept_types;
}
for (wtf_size_t i = 0; i < accept_list->size(); ++i) {
JSONValue* accept_value = accept_list->at(i);
String accept_string;
if (!accept_value || !accept_value->AsString(&accept_string)) {
// A particular 'accept' entry is invalid - just drop that one entry.
AddErrorInfo("'accept' entry ignored, expected to be of type string.");
continue;
}
accept_types.push_back(accept_string);
}
return accept_types;
}
Vector<mojom::blink::ManifestFileFilterPtr> ManifestParser::ParseTargetFiles(
const String& key,
const JSONObject* from) {
Vector<mojom::blink::ManifestFileFilterPtr> files;
if (!from->Get(key)) {
return files;
}
JSONArray* file_list = from->GetArray(key);
if (!file_list) {
// https://wicg.github.io/web-share-target/level-2/#share_target-member
// step 5 indicates that the 'files' attribute is allowed to be a single
// (non-array) FileFilter.
const JSONObject* file_object = from->GetJSONObject(key);
if (!file_object) {
AddErrorInfo(
"property 'files' ignored, type array or FileFilter expected.");
return files;
}
ParseFileFilter(file_object, &files);
return files;
}
for (wtf_size_t i = 0; i < file_list->size(); ++i) {
const JSONObject* file_object = JSONObject::Cast(file_list->at(i));
if (!file_object) {
AddErrorInfo("files must be a sequence of non-empty file entries.");
continue;
}
ParseFileFilter(file_object, &files);
}
return files;
}
void ManifestParser::ParseFileFilter(
const JSONObject* file_object,
Vector<mojom::blink::ManifestFileFilterPtr>* files) {
auto file = mojom::blink::ManifestFileFilter::New();
file->name = ParseFileFilterName(file_object);
if (file->name.empty()) {
// https://wicg.github.io/web-share-target/level-2/#share_target-member
// step 7.1 requires that we invalidate this FileFilter if 'name' is an
// empty string. We also invalidate if 'name' is undefined or not a
// string.
return;
}
file->accept = ParseFileFilterAccept(file_object);
if (file->accept.empty()) {
return;
}
files->push_back(std::move(file));
}
std::optional<mojom::blink::ManifestShareTarget::Method>
ManifestParser::ParseShareTargetMethod(const JSONObject* share_target_object) {
if (!share_target_object->Get("method")) {
AddErrorInfo(
"Method should be set to either GET or POST. It currently defaults to "
"GET.");
return mojom::blink::ManifestShareTarget::Method::kGet;
}
String value;
if (!share_target_object->GetString("method", &value)) {
return std::nullopt;
}
String method = value.UpperASCII();
if (method == "GET") {
return mojom::blink::ManifestShareTarget::Method::kGet;
}
if (method == "POST") {
return mojom::blink::ManifestShareTarget::Method::kPost;
}
return std::nullopt;
}
std::optional<mojom::blink::ManifestShareTarget::Enctype>
ManifestParser::ParseShareTargetEnctype(const JSONObject* share_target_object) {
if (!share_target_object->Get("enctype")) {
AddErrorInfo(
"Enctype should be set to either application/x-www-form-urlencoded or "
"multipart/form-data. It currently defaults to "
"application/x-www-form-urlencoded");
return mojom::blink::ManifestShareTarget::Enctype::kFormUrlEncoded;
}
String value;
if (!share_target_object->GetString("enctype", &value)) {
return std::nullopt;
}
String enctype = value.LowerASCII();
if (enctype == "application/x-www-form-urlencoded") {
return mojom::blink::ManifestShareTarget::Enctype::kFormUrlEncoded;
}
if (enctype == "multipart/form-data") {
return mojom::blink::ManifestShareTarget::Enctype::kMultipartFormData;
}
return std::nullopt;
}
mojom::blink::ManifestShareTargetParamsPtr
ManifestParser::ParseShareTargetParams(const JSONObject* share_target_params) {
auto params = mojom::blink::ManifestShareTargetParams::New();
// NOTE: These are key names for query parameters, which are filled with share
// data. As such, |params.url| is just a string.
std::optional<String> text =
ParseString(share_target_params, "text", Trim(true));
params->text = text.has_value() ? *text : String();
std::optional<String> title =
ParseString(share_target_params, "title", Trim(true));
params->title = title.has_value() ? *title : String();
std::optional<String> url =
ParseString(share_target_params, "url", Trim(true));
params->url = url.has_value() ? *url : String();
auto files = ParseTargetFiles("files", share_target_params);
if (!files.empty()) {
params->files = std::move(files);
}
return params;
}
std::optional<mojom::blink::ManifestShareTargetPtr>
ManifestParser::ParseShareTarget(const JSONObject* object) {
const JSONObject* share_target_object = object->GetJSONObject("share_target");
if (!share_target_object) {
return std::nullopt;
}
auto share_target = mojom::blink::ManifestShareTarget::New();
share_target->action = ParseURL(share_target_object, "action", manifest_url_,
ParseURLRestrictions::kWithinScope);
if (!share_target->action.IsValid()) {
AddErrorInfo(
"property 'share_target' ignored. Property 'action' is "
"invalid.");
return std::nullopt;
}
auto method = ParseShareTargetMethod(share_target_object);
auto enctype = ParseShareTargetEnctype(share_target_object);
const JSONObject* share_target_params_object =
share_target_object->GetJSONObject("params");
if (!share_target_params_object) {
AddErrorInfo(
"property 'share_target' ignored. Property 'params' type "
"dictionary expected.");
return std::nullopt;
}
share_target->params = ParseShareTargetParams(share_target_params_object);
if (!method.has_value()) {
AddErrorInfo(
"invalid method. Allowed methods are:"
"GET and POST.");
return std::nullopt;
}
share_target->method = method.value();
if (!enctype.has_value()) {
AddErrorInfo(
"invalid enctype. Allowed enctypes are:"
"application/x-www-form-urlencoded and multipart/form-data.");
return std::nullopt;
}
share_target->enctype = enctype.value();
if (share_target->method == mojom::blink::ManifestShareTarget::Method::kGet) {
if (share_target->enctype ==
mojom::blink::ManifestShareTarget::Enctype::kMultipartFormData) {
AddErrorInfo(
"invalid enctype for GET method. Only "
"application/x-www-form-urlencoded is allowed.");
return std::nullopt;
}
}
if (share_target->params->files.has_value()) {
if (share_target->method !=
mojom::blink::ManifestShareTarget::Method::kPost ||
share_target->enctype !=
mojom::blink::ManifestShareTarget::Enctype::kMultipartFormData) {
AddErrorInfo("files are only supported with multipart/form-data POST.");
return std::nullopt;
}
}
if (share_target->params->files.has_value() &&
!VerifyFiles(*share_target->params->files)) {
AddErrorInfo("invalid mime type inside files.");
return std::nullopt;
}
return share_target;
}
Vector<mojom::blink::ManifestFileHandlerPtr> ManifestParser::ParseFileHandlers(
const JSONObject* object) {
if (!object->Get("file_handlers")) {
return {};
}
JSONArray* entry_array = object->GetArray("file_handlers");
if (!entry_array) {
AddErrorInfo("property 'file_handlers' ignored, type array expected.");
return {};
}
Vector<mojom::blink::ManifestFileHandlerPtr> result;
for (wtf_size_t i = 0; i < entry_array->size(); ++i) {
JSONObject* json_entry = JSONObject::Cast(entry_array->at(i));
if (!json_entry) {
AddErrorInfo("FileHandler ignored, type object expected.");
continue;
}
std::optional<mojom::blink::ManifestFileHandlerPtr> entry =
ParseFileHandler(json_entry);
if (!entry) {
continue;
}
result.push_back(std::move(entry.value()));
}
return result;
}
std::optional<mojom::blink::ManifestFileHandlerPtr>
ManifestParser::ParseFileHandler(const JSONObject* file_handler) {
mojom::blink::ManifestFileHandlerPtr entry =
mojom::blink::ManifestFileHandler::New();
entry->action = ParseURL(file_handler, "action", manifest_url_,
ParseURLRestrictions::kWithinScope);
if (!entry->action.IsValid()) {
AddErrorInfo("FileHandler ignored. Property 'action' is invalid.");
return std::nullopt;
}
entry->name = ParseString(file_handler, "name", Trim(true)).value_or("");
const bool feature_enabled =
base::FeatureList::IsEnabled(blink::features::kFileHandlingIcons) ||
RuntimeEnabledFeatures::FileHandlingIconsEnabled(execution_context_);
if (feature_enabled) {
entry->icons = ParseIcons(file_handler);
}
entry->accept = ParseFileHandlerAccept(file_handler->GetJSONObject("accept"));
if (entry->accept.empty()) {
AddErrorInfo("FileHandler ignored. Property 'accept' is invalid.");
return std::nullopt;
}
entry->launch_type =
ParseFirstValidEnum<
std::optional<mojom::blink::ManifestFileHandler::LaunchType>>(
file_handler, "launch_type", &FileHandlerLaunchTypeFromString,
/*invalid_value=*/std::nullopt)
.value_or(
mojom::blink::ManifestFileHandler::LaunchType::kSingleClient);
return entry;
}
HashMap<String, Vector<String>> ManifestParser::ParseFileHandlerAccept(
const JSONObject* accept) {
HashMap<String, Vector<String>> result;
if (!accept) {
return result;
}
const int kExtensionLimit = g_file_handler_extension_limit_for_testing > 0
? g_file_handler_extension_limit_for_testing
: kFileHandlerExtensionLimit;
if (total_file_handler_extension_count_ > kExtensionLimit) {
return result;
}
for (wtf_size_t i = 0; i < accept->size(); ++i) {
JSONObject::Entry entry = accept->at(i);
// Validate the MIME type.
String& mimetype = entry.first;
std::string top_level_mime_type;
if (!net::ParseMimeTypeWithoutParameter(mimetype.Utf8(),
&top_level_mime_type, nullptr) ||
!net::IsValidTopLevelMimeType(top_level_mime_type)) {
AddErrorInfo("invalid MIME type: " + mimetype);
continue;
}
Vector<String> extensions;
String extension;
JSONArray* extensions_array = JSONArray::Cast(entry.second);
if (extensions_array) {
for (wtf_size_t j = 0; j < extensions_array->size(); ++j) {
JSONValue* value = extensions_array->at(j);
if (!value->AsString(&extension)) {
AddErrorInfo(
"property 'accept' file extension ignored, type string "
"expected.");
continue;
}
if (!ParseFileHandlerAcceptExtension(value, &extension)) {
// Errors are added by ParseFileHandlerAcceptExtension.
continue;
}
extensions.push_back(extension);
}
} else if (ParseFileHandlerAcceptExtension(entry.second, &extension)) {
extensions.push_back(extension);
} else {
// Parsing errors will already have been added.
continue;
}
total_file_handler_extension_count_ += extensions.size();
int extension_overflow =
total_file_handler_extension_count_ - kExtensionLimit;
if (extension_overflow > 0) {
auto erase_iter = UNSAFE_TODO(extensions.end() - extension_overflow);
AddErrorInfo(
"property 'accept': too many total file extensions, ignoring "
"extensions starting from \"" +
*erase_iter + "\"");
extensions.erase(erase_iter, extensions.end());
}
if (!extensions.empty()) {
result.Set(mimetype, std::move(extensions));
}
if (extension_overflow > 0) {
break;
}
}
return result;
}
bool ManifestParser::ParseFileHandlerAcceptExtension(const JSONValue* extension,
String* output) {
if (!extension->AsString(output)) {
AddErrorInfo(
"property 'accept' type ignored. File extensions must be type array or "
"type string.");
return false;
}
if (!output->StartsWith(".")) {
AddErrorInfo(
"property 'accept' file extension ignored, must start with a '.'.");
return false;
}
return true;
}
Vector<mojom::blink::ManifestProtocolHandlerPtr>
ManifestParser::ParseProtocolHandlers(const JSONObject* from) {
Vector<mojom::blink::ManifestProtocolHandlerPtr> protocols;
if (!from->Get("protocol_handlers")) {
return protocols;
}
JSONArray* protocol_list = from->GetArray("protocol_handlers");
if (!protocol_list) {
AddErrorInfo("property 'protocol_handlers' ignored, type array expected.");
return protocols;
}
for (wtf_size_t i = 0; i < protocol_list->size(); ++i) {
const JSONObject* protocol_object = JSONObject::Cast(protocol_list->at(i));
if (!protocol_object) {
AddErrorInfo("protocol_handlers entry ignored, type object expected.");
continue;
}
std::optional<mojom::blink::ManifestProtocolHandlerPtr> protocol =
ParseProtocolHandler(protocol_object);
if (!protocol) {
continue;
}
protocols.push_back(std::move(protocol.value()));
}
return protocols;
}
std::optional<mojom::blink::ManifestProtocolHandlerPtr>
ManifestParser::ParseProtocolHandler(const JSONObject* object) {
if (!object->Get("protocol")) {
AddErrorInfo(
"protocol_handlers entry ignored, required property 'protocol' is "
"missing.");
return std::nullopt;
}
auto protocol_handler = mojom::blink::ManifestProtocolHandler::New();
std::optional<String> protocol = ParseString(object, "protocol", Trim(true));
String error_message;
bool is_valid_protocol = protocol.has_value();
if (is_valid_protocol &&
!VerifyCustomHandlerScheme(protocol.value(), error_message,
ProtocolHandlerSecurityLevel::kStrict)) {
AddErrorInfo(error_message);
is_valid_protocol = false;
}
if (!is_valid_protocol) {
AddErrorInfo(
"protocol_handlers entry ignored, required property 'protocol' is "
"invalid.");
return std::nullopt;
}
protocol_handler->protocol = protocol.value();
if (!object->Get("url")) {
AddErrorInfo(
"protocol_handlers entry ignored, required property 'url' is missing.");
return std::nullopt;
}
protocol_handler->url = ParseURL(object, "url", manifest_url_,
ParseURLRestrictions::kWithinScope);
bool is_valid_url = protocol_handler->url.IsValid();
if (is_valid_url) {
const char kToken[] = "%s";
String user_url = protocol_handler->url.GetString();
String tokenless_url = protocol_handler->url.GetString();
tokenless_url.Remove(user_url.Find(kToken), std::size(kToken) - 1);
KURL full_url(manifest_url_, tokenless_url);
if (!VerifyCustomHandlerURLSyntax(full_url, manifest_url_, user_url,
error_message)) {
AddErrorInfo(error_message);
is_valid_url = false;
}
}
if (!is_valid_url) {
AddErrorInfo(
"protocol_handlers entry ignored, required property 'url' is invalid.");
return std::nullopt;
}
return std::move(protocol_handler);
}
Vector<mojom::blink::ManifestScopeExtensionPtr>
ManifestParser::ParseScopeExtensions(const JSONObject* from) {
Vector<mojom::blink::ManifestScopeExtensionPtr> scope_extensions;
const bool feature_enabled =
base::FeatureList::IsEnabled(
blink::features::kWebAppEnableScopeExtensions) ||
RuntimeEnabledFeatures::WebAppScopeExtensionsEnabled(execution_context_);
if (!feature_enabled || !from->Get("scope_extensions")) {
return scope_extensions;
}
JSONArray* extensions_list = from->GetArray("scope_extensions");
if (!extensions_list) {
AddErrorInfo("property 'scope_extensions' ignored, type array expected.");
return scope_extensions;
}
for (wtf_size_t i = 0; i < extensions_list->size(); ++i) {
if (i == kMaxScopeExtensionsSize) {
AddErrorInfo("property 'scope_extensions' contains more than " +
String::Number(kMaxScopeExtensionsSize) +
" valid elements, only the first " +
String::Number(kMaxScopeExtensionsSize) + " are parsed.");
break;
}
const JSONValue* extensions_entry = extensions_list->at(i);
if (!extensions_entry) {
AddErrorInfo("scope_extensions entry ignored, entry is null.");
continue;
}
JSONValue::ValueType entry_type = extensions_entry->GetType();
if (entry_type != JSONValue::kTypeObject) {
AddErrorInfo("scope_extensions entry ignored, type object expected.");
continue;
}
std::optional<mojom::blink::ManifestScopeExtensionPtr> scope_extension =
std::nullopt;
const JSONObject* extension_object = JSONObject::Cast(extensions_entry);
if (!extension_object) {
AddErrorInfo("scope_extensions entry ignored, type object expected.");
continue;
}
scope_extension = ParseScopeExtension(extension_object);
if (!scope_extension) {
continue;
}
scope_extensions.push_back(std::move(scope_extension.value()));
}
return scope_extensions;
}
std::optional<mojom::blink::ManifestScopeExtensionPtr>
ManifestParser::ParseScopeExtension(const JSONObject* object) {
DCHECK(
base::FeatureList::IsEnabled(
blink::features::kWebAppEnableScopeExtensions) ||
RuntimeEnabledFeatures::WebAppScopeExtensionsEnabled(execution_context_));
if (!object->Get(kScopeExtensionsTypeKey) ||
!object->Get(kScopeExtensionsOriginKey)) {
AddErrorInfo(kScopeExtensionsMissingKeysErrorMessage);
return std::nullopt;
}
const std::optional<String> scope_extension_type =
ParseString(object, kScopeExtensionsTypeKey, Trim(true));
if (!scope_extension_type.has_value()) {
AddErrorInfo("Scope extension 'type' invalid.");
return std::nullopt;
}
if (scope_extension_type.value() ==
ScopeExtensionTypeMap[static_cast<int>(ScopeExtensionType::kOrigin)]) {
const std::optional<String> origin_string =
ParseString(object, kScopeExtensionsOriginKey, Trim(true));
if (!origin_string.has_value()) {
AddErrorInfo("Scope extension 'origin' invalid.");
return std::nullopt;
}
return ParseScopeExtensionOrigin(*origin_string);
} else {
AddErrorInfo("Scope extension 'type' invalid.");
return std::nullopt;
}
}
std::optional<mojom::blink::ManifestScopeExtensionPtr>
ManifestParser::ParseScopeExtensionOrigin(const String& origin_string) {
DCHECK(
base::FeatureList::IsEnabled(
blink::features::kWebAppEnableScopeExtensions) ||
RuntimeEnabledFeatures::WebAppScopeExtensionsEnabled(execution_context_));
// TODO(crbug.com/1250011): pre-process for input without scheme.
// (eg. example.com instead of https://example.com) because we can always
// assume the use of https for scope extensions. Remove this TODO if we decide
// to require fully specified https scheme in this origin input.
if (origin_string.length() > kMaxOriginLength) {
AddErrorInfo(
"scope_extensions entry ignored, 'origin' exceeds maximum character "
"length of " +
String::Number(kMaxOriginLength) + " .");
return std::nullopt;
}
auto origin = SecurityOrigin::CreateFromString(origin_string);
if (!origin || origin->IsOpaque()) {
AddErrorInfo(
"scope_extensions entry ignored, required property 'origin' is "
"invalid.");
return std::nullopt;
}
if (origin->Protocol() != url::kHttpsScheme) {
AddErrorInfo(
"scope_extensions entry ignored, required property 'origin' must use "
"the https scheme.");
return std::nullopt;
}
String host = origin->Host();
auto scope_extension = mojom::blink::ManifestScopeExtension::New();
// Check for wildcard *.
if (base::FeatureList::IsEnabled(
blink::features::kWebAppEnableScopeExtensions) &&
host.StartsWith(kOriginWildcardPrefix)) {
scope_extension->has_origin_wildcard = true;
// Trim the wildcard prefix to get the effective host. Minus one to exclude
// the length of the null terminator.
host = host.Substring(sizeof(kOriginWildcardPrefix) - 1);
} else {
scope_extension->has_origin_wildcard = false;
}
bool host_valid = IsHostValidForScopeExtension(host);
if (!host_valid) {
AddErrorInfo(
"scope_extensions entry ignored, domain of required property 'origin' "
"is invalid.");
return std::nullopt;
}
if (scope_extension->has_origin_wildcard) {
origin = SecurityOrigin::CreateFromValidTuple(origin->Protocol(), host,
origin->Port());
if (!origin) {
AddErrorInfo(
"scope_extensions entry ignored, required property 'origin' is "
"invalid.");
return std::nullopt;
}
}
scope_extension->origin = origin;
return std::move(scope_extension);
}
KURL ManifestParser::ParseLockScreenStartUrl(const JSONObject* lock_screen) {
if (!lock_screen->Get("start_url")) {
return KURL();
}
KURL start_url = ParseURL(lock_screen, "start_url", manifest_url_,
ParseURLRestrictions::kWithinScope);
if (!start_url.IsValid()) {
// Error already reported by ParseURL.
return KURL();
}
return start_url;
}
mojom::blink::ManifestLockScreenPtr ManifestParser::ParseLockScreen(
const JSONObject* manifest) {
if (!manifest->Get("lock_screen")) {
return nullptr;
}
const JSONObject* lock_screen_object = manifest->GetJSONObject("lock_screen");
if (!lock_screen_object) {
AddErrorInfo("property 'lock_screen' ignored, type object expected.");
return nullptr;
}
auto lock_screen = mojom::blink::ManifestLockScreen::New();
lock_screen->start_url = ParseLockScreenStartUrl(lock_screen_object);
return lock_screen;
}
KURL ManifestParser::ParseNoteTakingNewNoteUrl(const JSONObject* note_taking) {
if (!note_taking->Get("new_note_url")) {
return KURL();
}
KURL new_note_url = ParseURL(note_taking, "new_note_url", manifest_url_,
ParseURLRestrictions::kWithinScope);
if (!new_note_url.IsValid()) {
// Error already reported by ParseURL.
return KURL();
}
return new_note_url;
}
mojom::blink::ManifestNoteTakingPtr ManifestParser::ParseNoteTaking(
const JSONObject* manifest) {
if (!manifest->Get("note_taking")) {
return nullptr;
}
const JSONObject* note_taking_object = manifest->GetJSONObject("note_taking");
if (!note_taking_object) {
AddErrorInfo("property 'note_taking' ignored, type object expected.");
return nullptr;
}
auto note_taking = mojom::blink::ManifestNoteTaking::New();
note_taking->new_note_url = ParseNoteTakingNewNoteUrl(note_taking_object);
return note_taking;
}
String ManifestParser::ParseRelatedApplicationPlatform(
const JSONObject* application) {
std::optional<String> platform =
ParseString(application, "platform", Trim(true));
return platform.has_value() ? *platform : String();
}
std::optional<KURL> ManifestParser::ParseRelatedApplicationURL(
const JSONObject* application) {
return ParseURL(application, "url", manifest_url_,
ParseURLRestrictions::kNoRestrictions);
}
String ManifestParser::ParseRelatedApplicationId(
const JSONObject* application) {
std::optional<String> id = ParseString(application, "id", Trim(true));
return id.has_value() ? *id : String();
}
Vector<mojom::blink::ManifestRelatedApplicationPtr>
ManifestParser::ParseRelatedApplications(const JSONObject* object) {
Vector<mojom::blink::ManifestRelatedApplicationPtr> applications;
JSONValue* value = object->Get("related_applications");
if (!value) {
return applications;
}
JSONArray* applications_list = object->GetArray("related_applications");
if (!applications_list) {
AddErrorInfo(
"property 'related_applications' ignored,"
" type array expected.");
return applications;
}
for (wtf_size_t i = 0; i < applications_list->size(); ++i) {
const JSONObject* application_object =
JSONObject::Cast(applications_list->at(i));
if (!application_object) {
continue;
}
auto application = mojom::blink::ManifestRelatedApplication::New();
application->platform = ParseRelatedApplicationPlatform(application_object);
// "If platform is undefined, move onto the next item if any are left."
if (application->platform.empty()) {
AddErrorInfo(
"'platform' is a required field, related application"
" ignored.");
continue;
}
application->id = ParseRelatedApplicationId(application_object);
application->url = ParseRelatedApplicationURL(application_object);
// "If both id and url are undefined, move onto the next item if any are
// left."
if ((!application->url.has_value() || !application->url->IsValid()) &&
application->id.empty()) {
AddErrorInfo(
"one of 'url' or 'id' is required, related application"
" ignored.");
continue;
}
applications.push_back(std::move(application));
}
return applications;
}
bool ManifestParser::ParsePreferRelatedApplications(const JSONObject* object) {
return ParseBoolean(object, "prefer_related_applications", false);
}
std::optional<RGBA32> ManifestParser::ParseThemeColor(
const JSONObject* object) {
return ParseColor(object, "theme_color");
}
std::optional<RGBA32> ManifestParser::ParseBackgroundColor(
const JSONObject* object) {
return ParseColor(object, "background_color");
}
String ManifestParser::ParseGCMSenderID(const JSONObject* object) {
std::optional<String> gcm_sender_id =
ParseString(object, "gcm_sender_id", Trim(true));
return gcm_sender_id.has_value() ? *gcm_sender_id : String();
}
Vector<network::ParsedPermissionsPolicyDeclaration>
ManifestParser::ParseIsolatedAppPermissions(const JSONObject* object) {
PermissionsPolicyParser::Node policy{
network::OriginWithPossibleWildcards::NodeType::kHeader};
JSONValue* json_value = object->Get("permissions_policy");
if (!json_value) {
return Vector<network::ParsedPermissionsPolicyDeclaration>();
}
JSONObject* permissions_dict = object->GetJSONObject("permissions_policy");
if (!permissions_dict) {
AddErrorInfo(
"property 'permissions_policy' ignored, type object expected.");
return Vector<network::ParsedPermissionsPolicyDeclaration>();
}
for (wtf_size_t i = 0; i < permissions_dict->size(); ++i) {
const JSONObject::Entry& entry = permissions_dict->at(i);
String feature(entry.first);
JSONArray* origin_allowlist = JSONArray::Cast(entry.second);
if (!origin_allowlist) {
AddErrorInfo("permission '" + feature +
"' ignored, invalid allowlist: type array expected.");
continue;
}
Vector<String> allowlist = ParseOriginAllowlist(origin_allowlist, feature);
if (!allowlist.size()) {
continue;
}
PermissionsPolicyParser::Declaration new_policy;
new_policy.feature_name = feature;
for (const auto& origin : allowlist) {
// PermissionsPolicyParser expects 4 types of origin strings:
// - "self": wrapped in single quotes (as in a header)
// - "none": wrapped in single quotes (as in a header)
// - "*" (asterisk): not wrapped
// - "<origin>": actual origin names should not be wrapped in single
// quotes
// The "src" origin string type can be ignored here as it's only used in
// the iframe "allow" attribute.
//
// Sidenote: Actual origin names ("<origin>") are parsed using
// OriginWithPossibleWildcards::Parse() which fails if the origin string
// contains any non-alphanumeric characters, such as a single quote. For
// this reason, actual origin names must not be wrapped since the parser
// will just drop them as being improperly formatted (i.e. they would be
// the equivalent to some manifest containing an origin wrapped in single
// quotes, which is invalid).
String wrapped_origin = origin;
if (EqualIgnoringASCIICase(origin, "self") ||
EqualIgnoringASCIICase(origin, "none")) {
wrapped_origin = "'" + origin + "'";
}
new_policy.allowlist.push_back(wrapped_origin);
}
policy.declarations.push_back(new_policy);
}
PolicyParserMessageBuffer logger(
"Error with permissions_policy manifest field: ");
network::ParsedPermissionsPolicy parsed_policy =
PermissionsPolicyParser::ParsePolicyFromNode(
policy, SecurityOrigin::Create(manifest_url_), logger,
execution_context_);
Vector<network::ParsedPermissionsPolicyDeclaration> out;
for (const auto& decl : parsed_policy) {
out.push_back(std::move(decl));
}
return out;
}
Vector<String> ManifestParser::ParseOriginAllowlist(
const JSONArray* json_allowlist,
const String& feature) {
Vector<String> out;
for (wtf_size_t i = 0; i < json_allowlist->size(); ++i) {
JSONValue* json_value = json_allowlist->at(i);
if (!json_value) {
AddErrorInfo(
"permissions_policy entry ignored, required property 'origin' is "
"invalid.");
return Vector<String>();
}
String origin_string;
if (!json_value->AsString(&origin_string) || origin_string.IsNull()) {
AddErrorInfo(
"permissions_policy entry ignored, required property 'origin' "
"contains "
"an invalid element: type string expected.");
return Vector<String>();
}
if (!origin_string.length()) {
AddErrorInfo(
"permissions_policy entry ignored, required property 'origin' is "
"contains an empty string.");
return Vector<String>();
}
if (origin_string.length() > kMaxOriginLength) {
AddErrorInfo(
"permissions_policy entry ignored, 'origin' exceeds maximum "
"character length "
"of " +
String::Number(kMaxOriginLength) + " .");
return Vector<String>();
}
out.push_back(origin_string);
}
return out;
}
mojom::blink::ManifestLaunchHandlerPtr ManifestParser::ParseLaunchHandler(
const JSONObject* object) {
const JSONValue* launch_handler_value = object->Get("launch_handler");
if (!launch_handler_value) {
return nullptr;
}
const JSONObject* launch_handler_object =
JSONObject::Cast(launch_handler_value);
if (!launch_handler_object) {
AddErrorInfo("launch_handler value ignored, object expected.");
return nullptr;
}
using ClientMode = mojom::blink::ManifestLaunchHandler::ClientMode;
return mojom::blink::ManifestLaunchHandler::New(
ParseFirstValidEnum<std::optional<ClientMode>>(
launch_handler_object, "client_mode", &ClientModeFromString,
/*invalid_value=*/std::nullopt));
}
HashMap<String, mojom::blink::ManifestTranslationItemPtr>
ManifestParser::ParseTranslations(const JSONObject* object) {
HashMap<String, mojom::blink::ManifestTranslationItemPtr> result;
if (!object->Get("translations")) {
return result;
}
JSONObject* translations_map = object->GetJSONObject("translations");
if (!translations_map) {
AddErrorInfo("property 'translations' ignored, object expected.");
return result;
}
for (wtf_size_t i = 0; i < translations_map->size(); ++i) {
JSONObject::Entry entry = translations_map->at(i);
String locale = entry.first;
if (locale == "") {
AddErrorInfo("skipping translation, non-empty locale string expected.");
continue;
}
JSONObject* translation = JSONObject::Cast(entry.second);
if (!translation) {
AddErrorInfo("skipping translation, object expected.");
continue;
}
auto translation_item = mojom::blink::ManifestTranslationItem::New();
std::optional<String> name = ParseStringForMember(
translation, "translations", "name", false, Trim(true));
translation_item->name =
name.has_value() && name->length() != 0 ? *name : String();
std::optional<String> short_name = ParseStringForMember(
translation, "translations", "short_name", false, Trim(true));
translation_item->short_name =
short_name.has_value() && short_name->length() != 0 ? *short_name
: String();
std::optional<String> description = ParseStringForMember(
translation, "translations", "description", false, Trim(true));
translation_item->description =
description.has_value() && description->length() != 0 ? *description
: String();
// A translation may be specified for any combination of translatable fields
// in the manifest. If no translations are supplied, we skip this item.
if (!translation_item->name && !translation_item->short_name &&
!translation_item->description) {
continue;
}
result.Set(locale, std::move(translation_item));
}
return result;
}
mojom::blink::ManifestTabStripPtr ManifestParser::ParseTabStrip(
const JSONObject* object) {
if (!object->Get("tab_strip")) {
return nullptr;
}
JSONObject* tab_strip_object = object->GetJSONObject("tab_strip");
if (!tab_strip_object) {
AddErrorInfo("property 'tab_strip' ignored, object expected.");
return nullptr;
}
auto result = mojom::blink::ManifestTabStrip::New();
JSONValue* home_tab_value = tab_strip_object->Get("home_tab");
if (home_tab_value && home_tab_value->GetType() == JSONValue::kTypeObject) {
JSONObject* home_tab_object = tab_strip_object->GetJSONObject("home_tab");
auto home_tab_params = mojom::blink::HomeTabParams::New();
JSONValue* home_tab_icons = home_tab_object->Get("icons");
String string_value;
if (home_tab_icons && !(home_tab_icons->AsString(&string_value) &&
EqualIgnoringASCIICase(string_value, "auto"))) {
home_tab_params->icons = ParseIcons(home_tab_object);
}
home_tab_params->scope_patterns = ParseScopePatterns(home_tab_object);
result->home_tab =
mojom::blink::HomeTabUnion::NewParams(std::move(home_tab_params));
} else {
result->home_tab = mojom::blink::HomeTabUnion::NewVisibility(
ParseTabStripMemberVisibility(home_tab_value));
}
auto new_tab_button_params = mojom::blink::NewTabButtonParams::New();
JSONObject* new_tab_button_object =
tab_strip_object->GetJSONObject("new_tab_button");
if (new_tab_button_object) {
JSONValue* new_tab_button_url = new_tab_button_object->Get("url");
String string_value;
if (new_tab_button_url && !(new_tab_button_url->AsString(&string_value) &&
EqualIgnoringASCIICase(string_value, "auto"))) {
KURL url = ParseURL(new_tab_button_object, "url", manifest_url_,
ParseURLRestrictions::kWithinScope);
if (!url.IsNull()) {
new_tab_button_params->url = url;
}
}
}
result->new_tab_button = std::move(new_tab_button_params);
return result;
}
mojom::blink::TabStripMemberVisibility
ManifestParser::ParseTabStripMemberVisibility(const JSONValue* json_value) {
if (!json_value) {
return mojom::blink::TabStripMemberVisibility::kAuto;
}
String string_value;
if (json_value->AsString(&string_value) &&
EqualIgnoringASCIICase(string_value, "absent")) {
return mojom::blink::TabStripMemberVisibility::kAbsent;
}
return mojom::blink::TabStripMemberVisibility::kAuto;
}
Vector<SafeUrlPattern> ManifestParser::ParseScopePatterns(
const JSONObject* object) {
Vector<SafeUrlPattern> result;
if (!object->Get("scope_patterns")) {
return result;
}
JSONArray* scope_patterns_list = object->GetArray("scope_patterns");
if (!scope_patterns_list) {
return result;
}
for (wtf_size_t i = 0; i < scope_patterns_list->size(); ++i) {
// TODO(b/330640840): allow strings to be passed through here and parsed via
// liburlpattern::ConstructorStringParser. The result of the parse can then
// be used to create a PatternInit object for the rest of the process.
JSONObject* pattern_object = JSONObject::Cast(scope_patterns_list->at(i));
if (!pattern_object) {
continue;
}
std::optional<PatternInit> init = MaybeCreatePatternInit(pattern_object);
if (init.has_value()) {
auto base_url = init->base_url.IsValid() ? init->base_url : manifest_url_;
std::optional<SafeUrlPattern> pattern =
ParseScopePattern(init.value(), base_url);
if (pattern.has_value()) {
result.push_back(std::move(pattern.value()));
}
}
}
return result;
}
std::optional<SafeUrlPattern> ManifestParser::ParseScopePattern(
const PatternInit& init,
const KURL& base_url) {
auto url_pattern = std::make_optional<SafeUrlPattern>();
{
// https://urlpattern.spec.whatwg.org/#process-a-urlpatterninit
// Always fall back to baseURL protocol if init does not contain protocol.
std::optional<std::vector<liburlpattern::Part>> part_list =
ParsePatternInitField(init.protocol, base_url.Protocol());
if (!part_list.has_value()) {
AddErrorInfo(
"property 'protocol in home tab scope pattern could not be parsed or "
"contains banned regex.");
return std::nullopt;
}
url_pattern->protocol = std::move(part_list.value());
}
{
// https://urlpattern.spec.whatwg.org/#process-a-urlpatterninit
// Only fall back to baseURL username if init does not contain any of
// protocol, hostname, or port.
String default_username;
if (!init.IsAbsolute()) {
default_username = base_url.User().ToString();
}
std::optional<std::vector<liburlpattern::Part>> part_list =
ParsePatternInitField(init.username, default_username);
if (!part_list.has_value()) {
AddErrorInfo(
"property 'username'in home tab scope pattern could not be parsed or "
"contains banned regex.");
return std::nullopt;
}
url_pattern->username = std::move(part_list.value());
}
{
// https://urlpattern.spec.whatwg.org/#process-a-urlpatterninit
// Only fall back to baseURL password if init does not contain any of
// protocol, hostname, port, or username.
String default_password;
if (!init.IsAbsolute() && !init.username.has_value()) {
default_password = base_url.Pass().ToString();
}
std::optional<std::vector<liburlpattern::Part>> part_list =
ParsePatternInitField(init.password, default_password);
if (!part_list.has_value()) {
AddErrorInfo(
"property 'password' in home tab scope pattern could not be parsed "
"or contains banned regex.");
return std::nullopt;
}
url_pattern->password = std::move(part_list.value());
}
{
// https://urlpattern.spec.whatwg.org/#process-a-urlpatterninit
// Only fall back to baseURL hostname if init does not contain protocol.
String default_hostname;
if (!init.protocol.has_value()) {
default_hostname = base_url.Host().ToString();
}
std::optional<std::vector<liburlpattern::Part>> part_list =
ParsePatternInitField(init.hostname, default_hostname);
if (!part_list.has_value()) {
AddErrorInfo(
"property 'hostname' in home tab scope pattern could not be parsed "
"or contains banned regex.");
return std::nullopt;
}
url_pattern->hostname = std::move(part_list.value());
}
{
// https://urlpattern.spec.whatwg.org/#process-a-urlpatterninit
// Only fall back to baseURL port if init does not contain any of
// protocol, hostname, or port, and the baseURL port exists.
String default_port;
if (!init.IsAbsolute() && base_url.HasPort()) {
default_port = String::Number(base_url.Port());
}
std::optional<std::vector<liburlpattern::Part>> part_list =
ParsePatternInitField(init.port, default_port);
if (!part_list.has_value()) {
AddErrorInfo(
"property 'port'in home tab scope pattern could not be parsed or "
"contains banned regex.");
return std::nullopt;
}
url_pattern->port = std::move(part_list.value());
}
{
String default_path;
if (init.pathname.has_value()) {
// A possibly-relative path is given; resolve it against base URL's path.
default_path =
ResolveRelativePathnamePattern(base_url, init.pathname.value());
} else if (!init.IsAbsolute()) {
// No path, protocol, host or port is given; use the base URL's path.
default_path = EscapePatternString(base_url.GetPath());
}
// else: no path, but a protocol, host or port was given, making this
// pattern absolute, so treat the path as empty.
std::optional<std::vector<liburlpattern::Part>> part_list =
ParsePatternInitField(std::nullopt, default_path);
if (!part_list.has_value()) {
AddErrorInfo(
"property 'pathname'in home tab scope pattern could not be parsed or "
"contains banned regex.");
return std::nullopt;
}
url_pattern->pathname = std::move(part_list.value());
}
{
// https://urlpattern.spec.whatwg.org/#process-a-urlpatterninit
// Only fall back to baseURL search if init does not contain any of
// protocol, hostname, port, or pathname.
String default_search;
if (!init.IsAbsolute() && !init.pathname.has_value()) {
default_search = base_url.Query().ToString();
}
std::optional<std::vector<liburlpattern::Part>> part_list =
ParsePatternInitField(init.search, default_search);
if (!part_list.has_value()) {
AddErrorInfo(
"property 'search' in home tab scope pattern could not be parsed "
"or contains banned regex.");
return std::nullopt;
}
url_pattern->search = std::move(part_list.value());
}
{
// https://urlpattern.spec.whatwg.org/#process-a-urlpatterninit
// Only fall back to baseURL hash if init does not contain any of
// protocol, hostname, port, pathname, or search.
String default_hash;
if (!init.IsAbsolute() && !init.pathname.has_value() &&
!init.search.has_value()) {
default_hash = base_url.FragmentIdentifier().ToString();
}
std::optional<std::vector<liburlpattern::Part>> part_list =
ParsePatternInitField(init.hash, default_hash);
if (!part_list.has_value()) {
AddErrorInfo(
"property 'hash' in home tab scope pattern could not be parsed "
"or contains banned regex.");
return std::nullopt;
}
url_pattern->hash = std::move(part_list.value());
}
return url_pattern;
}
std::optional<ManifestParser::PatternInit>
ManifestParser::MaybeCreatePatternInit(const JSONObject* pattern_object) {
std::optional<String> protocol = ParseStringForMember(
pattern_object, "scope_patterns", "protocol", false, Trim(true));
std::optional<String> username = ParseStringForMember(
pattern_object, "scope_patterns", "username", false, Trim(true));
std::optional<String> password = ParseStringForMember(
pattern_object, "scope_patterns", "password", false, Trim(true));
std::optional<String> hostname = ParseStringForMember(
pattern_object, "scope_patterns", "hostname", false, Trim(true));
std::optional<String> port = ParseStringForMember(
pattern_object, "scope_patterns", "port", false, Trim(true));
std::optional<String> pathname = ParseStringForMember(
pattern_object, "scope_patterns", "pathname", false, Trim(true));
std::optional<String> search = ParseStringForMember(
pattern_object, "scope_patterns", "search", false, Trim(true));
std::optional<String> hash = ParseStringForMember(
pattern_object, "scope_patterns", "hash", false, Trim(true));
KURL base_url;
if (pattern_object->Get("baseURL")) {
base_url = ParseURL(pattern_object, "baseURL", KURL(),
ParseURLRestrictions::kNoRestrictions);
if (!base_url.IsValid()) {
return std::nullopt;
}
}
return std::make_optional<PatternInit>(
std::move(protocol), std::move(username), std::move(password),
std::move(hostname), std::move(port), std::move(pathname),
std::move(search), std::move(hash), base_url);
}
String ManifestParser::ParseVersion(const JSONObject* object) {
return ParseString(object, "version", Trim(false)).value_or(String());
}
String ManifestParser::ParseUpdateToken(const JSONObject* object,
bool has_id_in_manifest) {
return has_id_in_manifest ? ParseString(object, "update_token", Trim(false))
.value_or(String())
: String();
}
void ManifestParser::AddErrorInfo(const String& error_msg,
bool critical,
int error_line,
int error_column) {
mojom::blink::ManifestErrorPtr error = mojom::blink::ManifestError::New(
error_msg, critical, error_line, error_column);
errors_.push_back(std::move(error));
}
} // namespace blink
|