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
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
"""The passive components to version discovery.
The Discover object in discover.py contains functions that can create objects
on your behalf. These functions are not usable from within the keystoneauth1
library because you will get dependency resolution issues.
The Discover object in this file provides the querying components of Discovery.
This includes functions like url_for which allow you to retrieve URLs and the
raw data specified in version discovery responses.
"""
import collections.abc
import copy
import re
import typing as ty
import urllib
import os_service_types
from keystoneauth1 import _utils as utils
from keystoneauth1 import exceptions
if ty.TYPE_CHECKING:
from keystoneauth1 import session as ks_session
_LOGGER = utils.get_logger(__name__)
LATEST = float('inf')
_SERVICE_TYPES = os_service_types.ServiceTypes()
_RAW_VERSION_T = str | int | float | ty.Iterable[str | int | float]
_PARSED_VERSION_T = tuple[int | float, ...]
def _str_or_latest(val: str | int | float) -> str:
"""Convert val to a string, handling LATEST => 'latest'.
:param val: An int or the special value LATEST.
:return: A string representation of val. If val was LATEST, the return is
'latest'.
"""
return 'latest' if val == LATEST else str(val)
def _int_or_latest(val: str | float) -> int | float:
"""Convert val to an int or the special value LATEST.
:param val: An int()-able, or the string 'latest', or the special value
LATEST.
:return: An int, or the special value LATEST
"""
return LATEST if val == 'latest' or val == LATEST else int(val)
def get_version_data(
session: 'ks_session.Session',
url: str,
authenticated: bool | None = None,
version_header: str | None = None,
) -> list[dict[str, ty.Any]]:
"""Retrieve raw version data from a url.
The return is a list of dicts of the form::
[
{
'status': 'STABLE',
'id': 'v2.3',
'links': [
{'href': 'http://network.example.com/v2.3', 'rel': 'self'},
{'href': 'http://network.example.com/', 'rel': 'collection'},
],
'min_version': '2.0',
'max_version': '2.7',
},
...,
]
Note:
The maximum microversion may be specified by `max_version` or `version`,
the former superseding the latter.
All `*version` keys are optional.
Other keys and 'links' entries are permitted, but ignored.
:param session: A Session object that can be used for communication.
:type session: keystoneauth1.session.Session
:param string url: Endpoint or discovery URL from which to retrieve data.
:param bool authenticated: Include a token in the discovery call.
(optional) Defaults to None.
:param string version_header: provide the OpenStack-API-Version header
for services which don't return version information without it, for
backward compatibility.
:return: A list of dicts containing version information.
:rtype: list(dict)
"""
headers = {'Accept': 'application/json'}
if version_header:
headers['OpenStack-API-Version'] = version_header
try:
resp = session.get(url, headers=headers, authenticated=authenticated)
except exceptions.Unauthorized:
resp = session.get(url, headers=headers, authenticated=True)
try:
body_resp = resp.json()
except ValueError:
pass
else:
# Swift returns the list of containers for an account on an
# authenticated GET from /, not a version document. To our knowledge
# it's the only thing returning a [] here - and that's ok.
if isinstance(body_resp, list):
raise exceptions.DiscoveryFailure(
'Invalid Response - List returned instead of dict'
)
# In the event of querying a root URL we will get back a list of
# available versions.
try:
return ty.cast(
list[dict[str, ty.Any]], body_resp['versions']['values']
)
except (KeyError, TypeError):
pass
# Most servers don't have a 'values' element so accept a simple
# versions dict if available.
try:
return ty.cast(list[dict[str, ty.Any]], body_resp['versions'])
except KeyError:
pass
# Otherwise if we query an endpoint like /v2.0 then we will get back
# just the one available version.
try:
return [ty.cast(dict[str, ty.Any], body_resp['version'])]
except KeyError:
pass
# Older Ironic does not actually return a discovery document for the
# single version discovery endpoint, which confuses the single-version
# fallback logic. While there are no known other services returning
# min/max ranges using headers instead of body, this is done in a
# non-Ironic specific manner just in case.
# The existence of this support should not be an indication to any
# OpenStack services that they should ADD this.
if 'id' in body_resp:
body_resp['status'] = Status.CURRENT
for header in resp.headers:
# We lose the case-insensitive quality here
header = header.lower()
if not header.startswith('x-openstack'):
continue
# Once the body starts having these values, stop overriding
# with the header values
if header.endswith('api-minimum-version'):
body_resp.setdefault('min_version', resp.headers[header])
if header.endswith('api-maximum-version'):
body_resp.setdefault('version', resp.headers[header])
return [body_resp]
err_text = resp.text[:50] + '...' if len(resp.text) > 50 else resp.text
raise exceptions.DiscoveryFailure(
f'Invalid Response - Bad version data returned: {err_text}'
)
def normalize_version_number(version: _RAW_VERSION_T) -> _PARSED_VERSION_T:
"""Turn a version representation into a tuple.
Examples:
The following all produce a return value of (1, 0)::
1, '1', 'v1', [1], (1,), ['1'], 1.0, '1.0', 'v1.0', (1, 0)
The following all produce a return value of (1, 20, 3)::
'v1.20.3', '1.20.3', (1, 20, 3), ['1', '20', '3']
The following all produce a return value of (LATEST, LATEST)::
'latest', 'vlatest', ('latest', 'latest'), (LATEST, LATEST)
The following all produce a return value of (2, LATEST)::
'2.latest', 'v2.latest', (2, LATEST), ('2', 'latest')
:param version: A version specifier in any of the following forms:
String, possibly prefixed with 'v', containing one or more numbers
*or* the string 'latest', separated by periods. Examples: 'v1',
'v1.2', '1.2.3', '123', 'latest', '1.latest', 'v1.latest'.
Integer. This will be assumed to be the major version, with a minor
version of 0.
Float. The integer part is assumed to be the major version; the
decimal part the minor version.
Non-string iterable comprising integers, integer strings, the string
'latest', or the special value LATEST.
Examples: (1,), [1, 2], ('12', '34', '56'), (LATEST,), (2, 'latest')
:return: A tuple of len >= 2 comprising integers and/or LATEST.
:raises TypeError: If the input version cannot be interpreted.
""" # noqa: D412
# Copy the input var so the error presents the original value
ver = version
# First, attempt to convert the value to a normalized string
# If it's a numeric or an integer as a string then normalize it to a
# float string. This ensures 1 decimal point.
# If it's a float as a string, don't do that, the split/map below will do
# what we want. (Otherwise, we wind up with 3.20 -> (3, 2))
if isinstance(ver, str):
# trim the v from a 'v2.0' or similar
ver = ver.lstrip('v')
# If version is a pure int, like '1' or '200', then we've got a major
# version and need to append a minor version
if ver.isdigit():
ver = f'{ver}.0'
# If it's an int or float, turn it into a float string
elif isinstance(ver, int | float):
ver = _str_or_latest(float(ver))
# If it's a non-string iterable, turn it into a string for subsequent
# processing. This ensures at least 1 decimal point if e.g. [1] is given.
elif isinstance(ver, collections.abc.Iterable):
ver = '.'.join(_str_or_latest(x) for x in ver)
# If it's anything else, error out early
else:
raise TypeError(f'Invalid version specified: {version}')
# At this point, we have a string that should contains numbers with
# at least one decimal point, or something decidedly else.
ver = tuple(ver.split('.'))
# Handle special case variants of just 'latest'
if ver == ('latest',):
return (LATEST, LATEST)
if len(ver) == 1:
ver += (0,)
try:
return tuple(_int_or_latest(x) for x in ver)
except (TypeError, ValueError):
raise TypeError(f'Invalid version specified: {version}')
def _normalize_version_args(
version: _RAW_VERSION_T | None,
min_version: _RAW_VERSION_T | None,
max_version: _RAW_VERSION_T | None,
service_type: str | None = None,
) -> tuple[_PARSED_VERSION_T | None, _PARSED_VERSION_T | None]:
normalized_min_version: _PARSED_VERSION_T | None
normalized_max_version: _PARSED_VERSION_T | None
# The sins of our fathers become the blood on our hands.
# If a user requests an old-style service type such as volumev2, then they
# are inherently requesting the major API version 2. It's not a good
# interface, but it's the one that was imposed on the world years ago
# because the client libraries all hid the version discovery document.
# In order to be able to ensure that a user who requests volumev2 does not
# get a block-storage endpoint that only provides v3 of the block-storage
# service, we need to pull the version out of the service_type. The
# service-types-authority will prevent the growth of new monstrosities such
# as this, but in order to move forward without breaking people, we have
# to just cry in the corner while striking ourselves with thorned branches.
# That said, for sure only do this hack for officially known service_types.
if (
service_type
and _SERVICE_TYPES.is_known(service_type)
and service_type[-1].isdigit()
and service_type[-2] == 'v'
):
implied_version = normalize_version_number(service_type[-1])
else:
implied_version = None
if version and (min_version or max_version):
raise ValueError(
"version is mutually exclusive with min_version and max_version"
)
if version:
# Explode this into min_version and max_version
normalized_min_version = normalize_version_number(version)
normalized_max_version = (normalized_min_version[0], LATEST)
if implied_version:
assert service_type is not None # nosec B101
if normalized_min_version[0] != implied_version[0]:
raise exceptions.ImpliedVersionMismatch(
service_type=service_type,
implied=implied_version,
given=version_to_string(normalized_min_version),
)
return normalized_min_version, normalized_max_version
if min_version == 'latest':
if max_version not in (None, 'latest'):
raise ValueError(
f"min_version is 'latest' and max_version is {max_version}"
" but is only allowed to be 'latest' or None"
)
max_version = 'latest'
if min_version and not max_version:
max_version = 'latest'
# Normalize e.g. empty string to None
min_version = min_version or None
max_version = max_version or None
normalized_min_version = None
normalized_max_version = None
if min_version:
normalized_min_version = normalize_version_number(min_version)
# NOTE(efried): We should be doing this instead:
# max_version = normalize_version_number(max_version or 'latest')
# However, see first NOTE(jamielennox) in EndpointData._set_version_info.
if max_version:
normalized_max_version = normalize_version_number(max_version)
if (
normalized_min_version is not None
and normalized_max_version is not None
and normalized_max_version < normalized_min_version
):
raise ValueError("min_version cannot be greater than max_version")
if implied_version:
assert service_type is not None # nosec B101
if normalized_min_version:
if normalized_min_version[0] != implied_version[0]:
raise exceptions.ImpliedMinVersionMismatch(
service_type=service_type,
implied=implied_version,
given=version_to_string(normalized_min_version),
)
else:
normalized_min_version = implied_version
# If 'latest' is provided with a versioned service-type like
# volumev2 - the user wants the latest of volumev2, not the latest
# of block-storage.
if normalized_max_version and normalized_max_version[0] != LATEST:
if normalized_max_version[0] != implied_version[0]:
raise exceptions.ImpliedMaxVersionMismatch(
service_type=service_type,
implied=implied_version,
given=version_to_string(normalized_max_version),
)
else:
normalized_max_version = (implied_version[0], LATEST)
return normalized_min_version, normalized_max_version
def version_to_string(version: _PARSED_VERSION_T) -> str:
"""Turn a version tuple into a string.
:param tuple version: A version represented as a tuple of ints. As a
special case, a tuple member may be LATEST, which
translates to 'latest'.
:return: A version represented as a period-delimited string.
"""
# Special case
if all(ver == LATEST for ver in version):
return 'latest'
return ".".join(_str_or_latest(x) for x in version)
def version_between(
min_version: _RAW_VERSION_T | None,
max_version: _RAW_VERSION_T | None,
candidate: _RAW_VERSION_T,
) -> bool:
"""Determine whether a candidate version is within a specified range.
:param min_version: The minimum version that is acceptable.
None/empty indicates no lower bound.
:param max_version: The maximum version that is acceptable.
None/empty indicates no upper bound.
:param candidate: Candidate version to test. May not be None/empty.
:return: True if candidate is between min_version and max_version; False
otherwise.
:raises ValueError: If candidate is None.
:raises TypeError: If any input cannot be normalized.
"""
if not candidate:
raise ValueError("candidate is required.")
normalized_candidate = normalize_version_number(candidate)
# Normalize up front to validate any malformed inputs
normalized_min_version = None
normalized_max_version = None
if min_version:
normalized_min_version = normalize_version_number(min_version)
if max_version:
normalized_max_version = normalize_version_number(max_version)
# If the candidate is less than the min_version, it's not a match.
# No min_version means no lower bound.
if (
normalized_min_version
and normalized_candidate < normalized_min_version
):
return False
# If the candidate is higher than the max_version, it's not a match.
# No max_version means no upper bound.
if (
normalized_max_version
and normalized_candidate > normalized_max_version
):
return False
return True
def version_match(
required: _PARSED_VERSION_T, candidate: _PARSED_VERSION_T
) -> bool:
"""Test that an available version satisfies the required version.
To be suitable a version must be of the same major version as required
and be at least a match in minor/patch level.
eg. 3.3 is a match for a required 3.1 but 4.1 is not.
:param tuple required: the version that must be met.
:param tuple candidate: the version to test against required.
:returns: True if candidate is suitable False otherwise.
:rtype: bool
"""
# major versions must be the same (e.g. even though v2 is a lower
# version than v3 we can't use it if v2 was requested)
if candidate[0] != required[0]:
return False
# prevent selecting a minor version less than what is required
if candidate < required:
return False
return True
def _latest_soft_match(
required: _PARSED_VERSION_T | None, candidate: _PARSED_VERSION_T
) -> bool:
if not required:
return False
if LATEST not in required:
return False
if all(part == LATEST for part in required):
return True
if required[0] == candidate[0] and required[1] == LATEST:
return True
# TODO(efried): Do we need to handle >2-part version numbers here?
return False
def _combine_relative_url(discovery_url: str, version_url: str) -> str:
# NOTE(jamielennox): urllib.parse.urljoin allows the url to be relative
# or even protocol-less. The additional trailing '/' makes urljoin respect
# the current path as canonical even if the url doesn't include it. for
# example a "v2" path from http://host/admin should resolve as
# http://host/admin/v2 where it would otherwise be host/v2. This has no
# effect on absolute urls.
url = urllib.parse.urljoin(discovery_url.rstrip('/') + '/', version_url)
# Sadly version discovery documents are common with the scheme
# and netloc broken.
parsed_version_url = urllib.parse.urlparse(url)
parsed_discovery_url = urllib.parse.urlparse(discovery_url)
# The services can override the version_url with some config options.(for
# example, In Keystone, Cinder and Glance, the option is "public_endpoint",
# and "compute_link_prefix", "network_link_prefix" in Nova and Neutron.
# In this case, it's hard to distinguish which part in version_url is
# useful for discovery_url , so here we just get the version from
# version_url and then add it into the discovery_url if needed.
path = parsed_version_url.path
if parsed_discovery_url.netloc != parsed_version_url.netloc:
version = version_url.rstrip('/').split('/')[-1]
url_path = parsed_discovery_url.path.rstrip('/')
if not url_path.endswith(version):
path = url_path + '/' + version
if version_url.endswith('/'):
# add '/' back to keep backward compatibility.
path = path + '/'
else:
path = parsed_discovery_url.path
return urllib.parse.ParseResult(
parsed_discovery_url.scheme,
parsed_discovery_url.netloc,
path,
parsed_version_url.params,
parsed_version_url.query,
parsed_version_url.fragment,
).geturl()
def _version_from_url(url: str | None) -> _PARSED_VERSION_T | None:
if not url:
return None
for part in reversed(urllib.parse.urlparse(url).path.split('/')):
try:
# All integer project ids can parse as valid versions. In URLs
# all known instances of versions start with a v. So check to make
# sure the url part starts with 'v', then check that it parses
# as a valid version.
if part[0] != 'v':
continue
return normalize_version_number(part)
except Exception:
pass
return None
# TODO(stephenfin): Make this an enum?
class Status:
CURRENT = 'CURRENT'
SUPPORTED = 'SUPPORTED'
DEPRECATED = 'DEPRECATED'
EXPERIMENTAL = 'EXPERIMENTAL'
UNKNOWN = 'UNKNOWN'
KNOWN = (CURRENT, SUPPORTED, DEPRECATED, EXPERIMENTAL)
@classmethod
def normalize(cls, raw_status: str) -> str:
"""Turn a status into a canonical status value.
If the status from the version discovery document does not match one
of the known values, it will be set to 'UNKNOWN'.
:param str raw_status: Status value from a discovery document.
:returns: A canonicalized version of the status. Valid values
are CURRENT, SUPPORTED, DEPRECATED, EXPERIMENTAL and UNKNOWN
:rtype: str
"""
status = raw_status.upper()
if status == 'STABLE':
status = cls.CURRENT
if status not in cls.KNOWN:
status = cls.UNKNOWN
return status
class Discover:
CURRENT_STATUSES = ('stable', 'current', 'supported')
DEPRECATED_STATUSES = ('deprecated',)
EXPERIMENTAL_STATUSES = ('experimental',)
def __init__(
self,
session: 'ks_session.Session',
url: str,
authenticated: bool | None = None,
):
self._url = url
self._data = get_version_data(
session, url, authenticated=authenticated
)
def raw_version_data(
self,
allow_experimental: bool = False,
allow_deprecated: bool = True,
allow_unknown: bool = False,
) -> list[dict[str, ty.Any]]:
"""Get raw version information from URL.
Raw data indicates that only minimal validation processing is performed
on the data, so what is returned here will be the data in the same
format it was received from the endpoint.
:param bool allow_experimental: Allow experimental version endpoints.
:param bool allow_deprecated: Allow deprecated version endpoints.
:param bool allow_unknown: Allow endpoints with an unrecognised status.
:returns: The endpoints returned from the server that match the
criteria.
:rtype: list
"""
versions = []
for v in self._data:
try:
status = v['status']
except KeyError:
_LOGGER.warning(
'Skipping over invalid version data. '
'No stability status in version.'
)
continue
status = status.lower()
if status in self.CURRENT_STATUSES:
versions.append(v)
elif status in self.DEPRECATED_STATUSES:
if allow_deprecated:
versions.append(v)
elif status in self.EXPERIMENTAL_STATUSES:
if allow_experimental:
versions.append(v)
elif allow_unknown:
versions.append(v)
return versions
def version_data(
self,
reverse: bool = False,
*,
allow_experimental: bool = False,
allow_deprecated: bool = True,
allow_unknown: bool = False,
) -> list['VersionData']:
"""Get normalized version data.
Return version data in a structured way.
:param bool reverse: Reverse the list. reverse=true will mean the
returned list is sorted from newest to oldest
version.
:returns: A list of :class:`VersionData` sorted by version number.
:rtype: list(VersionData)
"""
data = self.raw_version_data(
allow_experimental=allow_experimental,
allow_deprecated=allow_deprecated,
allow_unknown=allow_unknown,
)
versions = []
for v in data:
try:
version_str = v['id']
except KeyError:
_LOGGER.info('Skipping invalid version data. Missing ID.')
continue
try:
links = v['links']
except KeyError:
_LOGGER.info('Skipping invalid version data. Missing links')
continue
version_number = normalize_version_number(version_str)
# collect microversion information
# NOTE(efried): Some existing discovery documents (e.g. from nova
# v2.0 in the pike release) include *version keys with "" (empty
# string) values, expecting them to be treated the same as if the
# keys were absent.
min_microversion = v.get('min_version') or None
if min_microversion:
min_microversion = normalize_version_number(min_microversion)
max_microversion = v.get('max_version')
if not max_microversion:
max_microversion = v.get('version') or None
if max_microversion:
max_microversion = normalize_version_number(max_microversion)
next_min_version = v.get('next_min_version') or None
if next_min_version:
next_min_version = normalize_version_number(next_min_version)
not_before = v.get('not_before') or None
self_url = None
collection_url = None
for link in links:
try:
rel = link['rel']
url = _combine_relative_url(self._url, link['href'])
except (KeyError, TypeError):
_LOGGER.info(
'Skipping invalid version link. '
'Missing link URL or relationship.'
)
continue
if rel.lower() == 'self':
self_url = url
elif rel.lower() == 'collection':
collection_url = url
if not self_url:
_LOGGER.info(
'Skipping invalid version data. Missing link to endpoint.'
)
continue
versions.append(
VersionData(
version=version_number,
url=self_url,
collection=collection_url,
min_microversion=min_microversion,
max_microversion=max_microversion,
next_min_version=next_min_version,
not_before=not_before,
status=Status.normalize(v['status']),
raw_status=v['status'],
)
)
versions.sort(key=lambda v: v['version'], reverse=reverse)
return versions
def version_string_data(
self,
reverse: bool = False,
*,
allow_experimental: bool = False,
allow_deprecated: bool = True,
allow_unknown: bool = False,
) -> list['VersionData']:
"""Get normalized version data with versions as strings.
Return version data in a structured way.
:param bool reverse: Reverse the list. reverse=true will mean the
returned list is sorted from newest to oldest
version.
:returns: A list of :class:`VersionData` sorted by version number.
:rtype: list(VersionData)
"""
version_data = self.version_data(
reverse=reverse,
allow_experimental=allow_experimental,
allow_deprecated=allow_deprecated,
allow_unknown=allow_unknown,
)
for version in version_data:
for key in ('version', 'min_microversion', 'max_microversion'):
if version[key]:
version[key] = version_to_string(version[key])
return version_data
def data_for(
self,
version: _RAW_VERSION_T,
*,
allow_experimental: bool = False,
allow_deprecated: bool = True,
allow_unknown: bool = False,
) -> ty.Optional['VersionData']:
"""Return endpoint data for a version.
NOTE: This method raises a TypeError if version is None. It is
kept for backwards compatability. New code should use
versioned_data_for instead.
:param tuple version: The version is always a minimum version in the
same major release as there should be no compatibility issues with
using a version newer than the one asked for.
:returns: the endpoint data for a URL that matches the required version
(the format is described in version_data) or None if no
match.
:rtype: dict
"""
normalized_version = normalize_version_number(version)
for data in self.version_data(
reverse=True,
allow_experimental=allow_experimental,
allow_deprecated=allow_deprecated,
allow_unknown=allow_unknown,
):
# Since the data is reversed, the latest version is first. If
# latest was requested, return it.
if _latest_soft_match(normalized_version, data['version']):
return data
if version_match(normalized_version, data['version']):
return data
return None
def url_for(
self,
version: _RAW_VERSION_T,
*,
allow_experimental: bool = False,
allow_deprecated: bool = True,
allow_unknown: bool = False,
) -> str | None:
"""Get the endpoint url for a version.
NOTE: This method raises a TypeError if version is None. It is
kept for backwards compatability. New code should use
versioned_url_for instead.
:param tuple version: The version is always a minimum version in the
same major release as there should be no compatibility issues with
using a version newer than the one asked for.
:returns: The url for the specified version or None if no match.
:rtype: str
"""
data = self.data_for(
version,
allow_experimental=allow_experimental,
allow_deprecated=allow_deprecated,
allow_unknown=allow_unknown,
)
return data['url'] if data else None
def versioned_data_for(
self,
url: str | None = None,
min_version: str
| int
| float
| ty.Iterable[str | int | float]
| None = None,
max_version: str
| int
| float
| ty.Iterable[str | int | float]
| None = None,
*,
allow_experimental: bool = False,
allow_deprecated: bool = True,
allow_unknown: bool = False,
) -> ty.Optional['VersionData']:
"""Return endpoint data for the service at a url.
min_version and max_version can be given either as strings or tuples.
:param string url: If url is given, the data will be returned for the
endpoint data that has a self link matching the url.
:param min_version: The minimum endpoint version that is acceptable. If
min_version is given with no max_version it is as if max version is
'latest'. If min_version is 'latest', max_version may only be
'latest' or None.
:param max_version: The maximum endpoint version that is acceptable. If
min_version is given with no max_version it is as if max version is
'latest'. If min_version is 'latest', max_version may only be
'latest' or None.
:returns: the endpoint data for a URL that matches the required version
(the format is described in version_data) or None if no
match.
:rtype: dict
"""
normalized_min_version, normalized_max_version = (
_normalize_version_args(None, min_version, max_version)
)
no_version = not normalized_max_version and not normalized_min_version
version_data = self.version_data(
reverse=True,
allow_experimental=allow_experimental,
allow_deprecated=allow_deprecated,
allow_unknown=allow_unknown,
)
# If we don't have to check a normalized_min_version, we can short
# circuit anything else
if normalized_max_version == (LATEST, LATEST) and (
not normalized_min_version
or normalized_min_version == (LATEST, LATEST)
):
# because we reverse we can just take the first entry
return version_data[0]
if url:
url = url.rstrip('/') + '/'
if no_version and not url:
# because we reverse we can just take the first entry
return version_data[0]
# Version data is in order from highest to lowest, so we return
# the first matching entry
for data in version_data:
if url and data['url'] and data['url'].rstrip('/') + '/' == url:
return data
if _latest_soft_match(normalized_min_version, data['version']):
return data
# Only validate version bounds if versions were specified
if (
normalized_min_version
and normalized_max_version
and version_between(
normalized_min_version,
normalized_max_version,
data['version'],
)
):
return data
# If there is no version requested and we could not find a matching
# url in the discovery doc, that means we've got an unversioned
# endpoint in the catalog and the user is requesting version data
# so that they know what version they got. We can return the first
# entry from version_data, because the user hasn't requested anything
# different.
if no_version and url and len(version_data) > 0:
return version_data[0]
# We couldn't find a match.
return None
def versioned_url_for(
self,
min_version: str
| int
| float
| ty.Iterable[str | int | float]
| None = None,
max_version: str
| int
| float
| ty.Iterable[str | int | float]
| None = None,
*,
allow_experimental: bool = False,
allow_deprecated: bool = True,
allow_unknown: bool = False,
) -> str | None:
"""Get the endpoint url for a version.
min_version and max_version can be given either as strings or tuples.
:param min_version: The minimum version that is acceptable. If
min_version is given with no max_version it is as if max version
is 'latest'.
:param max_version: The maximum version that is acceptable. If
min_version is given with no max_version it is as if max version is
'latest'.
:returns: The url for the specified version or None if no match.
:rtype: str
"""
data = self.versioned_data_for(
min_version=min_version,
max_version=max_version,
allow_experimental=allow_experimental,
allow_deprecated=allow_deprecated,
allow_unknown=allow_unknown,
)
return data['url'] if data else None
# TODO(stephenfin): Make this normal class or dataclass to avoid all the casts
class VersionData(dict[str, ty.Any]):
"""Normalized Version Data about an endpoint."""
def __init__(
self,
version: _PARSED_VERSION_T | str | None,
url: str,
collection: str | None = None,
max_microversion: _PARSED_VERSION_T | str | None = None,
min_microversion: _PARSED_VERSION_T | str | None = None,
next_min_version: _PARSED_VERSION_T | str | None = None,
not_before: str | None = None,
status: str = 'CURRENT',
raw_status: str | None = None,
):
super().__init__()
self['version'] = version
self['url'] = url
self['collection'] = collection
self['max_microversion'] = max_microversion
self['min_microversion'] = min_microversion
self['next_min_version'] = next_min_version
self['not_before'] = not_before
self['status'] = status
self['raw_status'] = raw_status
@property
def version(self) -> _PARSED_VERSION_T | None:
"""The normalized version of the endpoint."""
return ty.cast(_PARSED_VERSION_T | None, self.get('version'))
@property
def url(self) -> str:
"""The url for the endpoint."""
return ty.cast(str, self.get('url'))
@property
def collection(self) -> str | None:
"""The URL for the discovery document.
May be None.
"""
return ty.cast(str | None, self.get('collection'))
@property
def min_microversion(self) -> _PARSED_VERSION_T | None:
"""The minimum microversion supported by the endpoint.
May be None.
"""
return ty.cast(_PARSED_VERSION_T | None, self.get('min_microversion'))
@property
def max_microversion(self) -> _PARSED_VERSION_T | None:
"""The maximum microversion supported by the endpoint.
May be None.
"""
return ty.cast(_PARSED_VERSION_T | None, self.get('max_microversion'))
# TODO(stephenfin): Use enum
@property
def status(self) -> str:
"""A canonicalized version of the status.
Valid values are CURRENT, SUPPORTED, DEPRECATED and EXPERIMENTAL.
"""
return ty.cast(str, self.get('status'))
@property
def raw_status(self) -> str | None:
"""The status as provided by the server."""
return ty.cast(str | None, self.get('raw_status'))
class EndpointData:
"""Normalized information about a discovered endpoint.
Contains url, version, microversion, interface and region information.
This is essentially the data contained in the catalog and the version
discovery documents about an endpoint that is used to select the endpoint
desired by the user. It is returned so that a user can know which qualities
a discovered endpoint had, in case their request allowed for a range of
possibilities.
Refer to the microversion specification for more information.
https://specs.openstack.org/openstack/api-wg/guidelines/microversion_specification.html
"""
# TODO(stephenfin): The 'major_version', 'next_min_version' and
# 'not_before' attributes are documented in the microversion spec but no
# one appears to use them. Should we remove support? If not, we currently
# do not normalize these. Should we?
def __init__(
self,
catalog_url: str | None = None,
service_url: str | None = None,
service_type: str | None = None,
service_name: str | None = None,
service_id: str | None = None,
region_name: str | None = None,
interface: str | None = None,
endpoint_id: str | None = None,
raw_endpoint: str | None = None,
api_version: _PARSED_VERSION_T | None = None,
major_version: str | None = None,
min_microversion: _PARSED_VERSION_T | None = None,
max_microversion: _PARSED_VERSION_T | None = None,
next_min_version: str | None = None,
not_before: str | None = None,
status: str | None = None,
):
self.catalog_url = catalog_url
self.service_url = service_url
self.service_type = service_type
self.service_name = service_name
self.service_id = service_id
self.interface = interface
self.region_name = region_name
self.endpoint_id = endpoint_id
self.raw_endpoint = raw_endpoint
self.major_version = major_version
self.min_microversion = min_microversion
self.max_microversion = max_microversion
self.next_min_version = next_min_version
self.not_before = not_before
self.status = status
self.api_version = api_version or _version_from_url(self.url)
self._saved_project_id: str | None = None
self._catalog_matches_version = False
self._catalog_matches_exactly: bool = False
self._disc: Discover | None = None
def __copy__(self) -> 'EndpointData':
"""Return a new EndpointData based on this one."""
new_data = EndpointData(
catalog_url=self.catalog_url,
service_url=self.service_url,
service_type=self.service_type,
service_name=self.service_name,
service_id=self.service_id,
region_name=self.region_name,
interface=self.interface,
endpoint_id=self.endpoint_id,
raw_endpoint=self.raw_endpoint,
api_version=self.api_version,
major_version=self.major_version,
min_microversion=self.min_microversion,
max_microversion=self.max_microversion,
next_min_version=self.next_min_version,
not_before=self.not_before,
status=self.status,
)
# Save cached discovery object - but we don't want to
# actually provide a constructor argument
new_data._disc = self._disc
new_data._saved_project_id = self._saved_project_id
return new_data
def __str__(self) -> str:
"""Produce a string like EndpointData{key=val, ...}, for debugging."""
str_attrs = (
'api_version',
'catalog_url',
'endpoint_id',
'interface',
'major_version',
'max_microversion',
'min_microversion',
'next_min_version',
'not_before',
'raw_endpoint',
'region_name',
'service_id',
'service_name',
'service_type',
'service_url',
'url',
)
return "{}{{{}}}".format(
self.__class__.__name__,
', '.join([f"{attr}={getattr(self, attr)}" for attr in str_attrs]),
)
@property
def url(self) -> str | None:
return self.service_url or self.catalog_url
def get_current_versioned_data(
self,
session: 'ks_session.Session',
allow: dict[str, ty.Any] | None = None,
cache: dict[str, Discover] | None = None,
project_id: str | None = None,
) -> 'EndpointData':
"""Run version discovery on the current endpoint.
A simplified version of get_versioned_data, get_current_versioned_data
runs discovery but only on the endpoint that has been found already.
It can be useful in some workflows where the user wants version
information about the endpoint they have.
:param session: A session object that can be used for communication.
:type session: keystoneauth1.session.Session
:param dict allow: Extra filters to pass when discovering API
versions. (optional)
:param dict cache: A dict to be used for caching results in
addition to caching them on the Session.
(optional)
:param string project_id: ID of the currently scoped project. Used for
removing project_id components of URLs from
the catalog. (optional)
:returns: A new EndpointData with the requested versioned data.
:rtype: :py:class:`keystoneauth1.discover.EndpointData`
:raises keystoneauth1.exceptions.discovery.DiscoveryFailure: If the
appropriate versioned data
could not be discovered.
"""
min_version, max_version = _normalize_version_args(
self.api_version, None, None
)
return self.get_versioned_data(
session=session,
allow=allow,
cache=cache,
allow_version_hack=True,
discover_versions=True,
min_version=min_version,
max_version=max_version,
)
def get_versioned_data(
self,
session: 'ks_session.Session',
allow: dict[str, ty.Any] | None = None,
cache: dict[str, ty.Any] | None = None,
allow_version_hack: bool = True,
project_id: str | None = None,
discover_versions: bool = True,
min_version: str
| int
| float
| ty.Iterable[str | int | float]
| None = None,
max_version: str
| int
| float
| ty.Iterable[str | int | float]
| None = None,
) -> 'EndpointData':
"""Run version discovery for the service described.
Performs Version Discovery and returns a new EndpointData object with
information found.
min_version and max_version can be given either as strings or tuples.
:param session: A session object that can be used for communication.
:type session: keystoneauth1.session.Session
:param dict allow: Extra filters to pass when discovering API
versions. (optional)
:param dict cache: A dict to be used for caching results in
addition to caching them on the Session.
(optional)
:param bool allow_version_hack: Allow keystoneauth to hack up catalog
URLS to support older schemes.
(optional, default True)
:param string project_id: ID of the currently scoped project. Used for
removing project_id components of URLs from
the catalog. (optional)
:param bool discover_versions: Whether to get version metadata from
the version discovery document even
if it's not neccessary to fulfill the
major version request. (optional,
defaults to True)
:param min_version: The minimum version that is acceptable. If
min_version is given with no max_version it is as
if max version is 'latest'.
:param max_version: The maximum version that is acceptable. If
min_version is given with no max_version it is as
if max version is 'latest'.
:returns: A new EndpointData with the requested versioned data.
:rtype: :py:class:`keystoneauth1.discover.EndpointData`
:raises keystoneauth1.exceptions.discovery.DiscoveryFailure: If the
appropriate versioned data
could not be discovered.
"""
normalized_min_version, normalized_max_version = (
_normalize_version_args(None, min_version, max_version)
)
if not allow:
allow = {}
# This method should always return a new EndpointData
new_data = copy.copy(self)
new_data._set_version_info(
session=session,
allow=allow,
cache=cache,
allow_version_hack=allow_version_hack,
project_id=project_id,
discover_versions=discover_versions,
min_version=normalized_min_version,
max_version=normalized_max_version,
)
return new_data
def get_all_version_string_data(
self, session: 'ks_session.Session', project_id: str | None = None
) -> list['VersionData']:
"""Return version data for all versions discovery can find.
:param string project_id: ID of the currently scoped project. Used for
removing project_id components of URLs from
the catalog. (optional)
:returns: A list of :class:`VersionData` sorted by version number.
:rtype: list(VersionData)
"""
versions = []
for vers_url in self._get_discovery_url_choices(project_id=project_id):
try:
d = get_discovery(session, vers_url)
except Exception as e:
# Ignore errors here - we're just searching for one of the
# URLs that will give us data.
_LOGGER.debug(
"Failed attempt at discovery on %s: %s", vers_url, str(e)
)
continue
for version in d.version_string_data():
versions.append(version)
break
return versions or self._infer_version_data(project_id)
def _infer_version_data(
self, project_id: str | None = None
) -> list['VersionData']:
"""Return version data dict for when discovery fails.
:param string project_id: ID of the currently scoped project. Used for
removing project_id components of URLs from
the catalog. (optional)
:returns: A list of :class:`VersionData` sorted by version number.
:rtype: list(VersionData)
"""
assert self.url is not None # nosec B101
version = None
if self.api_version:
version = version_to_string(self.api_version)
url = self.url.rstrip("/")
if project_id and url.endswith(project_id):
url, _ = self.url.rsplit('/', 1)
url += "/"
return [VersionData(url=url, version=version)]
def _set_version_info(
self,
session: 'ks_session.Session',
allow: dict[str, ty.Any],
cache: dict[str, Discover] | None,
allow_version_hack: bool,
project_id: str | None,
discover_versions: bool,
min_version: _PARSED_VERSION_T | None,
max_version: _PARSED_VERSION_T | None,
) -> None:
match_url = None
no_version = not max_version and not min_version
if no_version and not discover_versions:
# NOTE(jamielennox): This may not be the best thing to default to
# but is here for backwards compatibility. It may be worth
# defaulting to the most recent version.
return
elif no_version and discover_versions:
# We want to run discovery, but we don't want to find different
# endpoints than what's in the catalog
allow_version_hack = False
match_url = self.url
if project_id:
self.project_id = project_id
discovered_data = None
# Maybe we've run discovery in the past and have a document that can
# satisfy the request without further work
if self._disc:
discovered_data = self._disc.versioned_data_for(
min_version=min_version,
max_version=max_version,
url=match_url,
**allow,
)
if not discovered_data:
self._run_discovery(
session=session,
cache=cache,
min_version=min_version,
max_version=max_version,
project_id=project_id,
allow_version_hack=allow_version_hack,
discover_versions=discover_versions,
)
if not self._disc:
return
discovered_data = self._disc.versioned_data_for(
min_version=min_version,
max_version=max_version,
url=match_url,
**allow,
)
# hint for mypy: we would have returned early if this wasn't set
assert self._disc is not None # nosec B101
if not discovered_data:
if min_version and not max_version:
raise exceptions.DiscoveryFailure(
f"Minimum version {version_to_string(min_version)} was not found"
)
elif max_version and not min_version:
raise exceptions.DiscoveryFailure(
f"Maximum version {version_to_string(max_version)} was not found"
)
elif min_version and max_version:
raise exceptions.DiscoveryFailure(
f"No version found between {version_to_string(min_version)}"
f" and {version_to_string(max_version)}"
)
else:
raise exceptions.DiscoveryFailure(
"No version data found remotely at all"
)
self.min_microversion = discovered_data['min_microversion']
self.max_microversion = discovered_data['max_microversion']
self.next_min_version = discovered_data['next_min_version']
self.not_before = discovered_data['not_before']
self.api_version = discovered_data['version']
self.status = discovered_data['status']
# TODO(mordred): these next two things should be done by Discover
# in versioned_data_for.
discovered_url = discovered_data['url']
# NOTE(jamielennox): urljoin allows the url to be relative or even
# protocol-less. The additional trailing '/' make urljoin respect
# the current path as canonical even if the url doesn't include it.
# for example a "v2" path from http://host/admin should resolve as
# http://host/admin/v2 where it would otherwise be host/v2.
# This has no effect on absolute urls returned from url_for.
url = urllib.parse.urljoin(
self._disc._url.rstrip('/') + '/', discovered_url
)
# If we had to pop a project_id from the catalog_url, put it back on
if self._saved_project_id:
url = urllib.parse.urljoin(
url.rstrip('/') + '/', self._saved_project_id
)
self.service_url = url
def _run_discovery(
self,
session: 'ks_session.Session',
cache: dict[str, Discover] | None,
min_version: _PARSED_VERSION_T | None,
max_version: _PARSED_VERSION_T | None,
project_id: str | None,
allow_version_hack: bool,
discover_versions: bool,
) -> None:
tried = set()
for vers_url in self._get_discovery_url_choices(
project_id=project_id,
allow_version_hack=allow_version_hack,
min_version=min_version,
max_version=max_version,
):
if self._catalog_matches_exactly and not discover_versions:
# The version we started with is correct, and we don't want
# new data
return
if vers_url in tried:
continue
tried.add(vers_url)
try:
self._disc = get_discovery(
session, vers_url, cache=cache, authenticated=False
)
break
except (
exceptions.DiscoveryFailure,
exceptions.HttpError,
exceptions.ConnectionError,
) as exc:
_LOGGER.debug('No version document at %s: %s', vers_url, exc)
continue
if not self._disc:
# We couldn't find a version discovery document anywhere.
if self._catalog_matches_version:
# But - the version in the catalog is fine.
self.service_url = self.catalog_url
return
# NOTE(jamielennox): The logic here is required for backwards
# compatibility. By itself it is not ideal.
if allow_version_hack:
# NOTE(jamielennox): If we can't contact the server we
# fall back to just returning the URL from the catalog. This
# is backwards compatible behaviour and used when there is no
# other choice. Realistically if you have provided a version
# you should be able to rely on that version being returned or
# the request failing.
_LOGGER.warning(
'Failed to contact the endpoint at %s for '
'discovery. Fallback to using that endpoint as '
'the base url.',
self.url,
)
return
else:
# NOTE(jamielennox): If you've said no to allow_version_hack
# and we can't determine the actual URL this is a failure
# because we are specifying that the deployment must be up to
# date enough to properly specify a version and keystoneauth
# can't deliver.
raise exceptions.DiscoveryFailure(
"Unable to find a version discovery document at {}, "
"the service is unavailable or misconfigured. "
"Required version range ({} - {}), version hack disabled.".format(
self.url, min_version or "any", max_version or "any"
)
)
def _get_discovery_url_choices(
self,
project_id: str | None,
allow_version_hack: bool = True,
min_version: _PARSED_VERSION_T | None = None,
max_version: _PARSED_VERSION_T | None = None,
) -> ty.Generator[str, None, None]:
"""Find potential locations for version discovery URLs.
min_version and max_version are already normalized, so will either be
None or a tuple.
"""
assert self.url is not None # nosec B101
url = urllib.parse.urlparse(self.url.rstrip('/'))
url_parts = url.path.split('/')
# First, check to see if the catalog url ends with a project id
# We need to remove it and save it for later if it does
if project_id and (url_parts[-1] == project_id):
self._saved_project_id = url_parts.pop()
elif not project_id:
# Peek to see if -2 is a version. If so, -1 is a project_id,
# even if we don't know that at this point in the call stack
try:
normalize_version_number(url_parts[-2])
self._saved_project_id = url_parts.pop()
except (IndexError, TypeError):
pass
catalog_discovery = versioned_discovery = None
# Next, check to see if the url indicates a version and if that
# version either matches our version request or is within the
# range requested. If so, we can start by trying the given url
# as it has a high potential for success.
try:
url_version = normalize_version_number(url_parts[-1])
versioned_discovery = urllib.parse.ParseResult(
url.scheme,
url.netloc,
'/'.join(url_parts),
url.params,
url.query,
url.fragment,
).geturl()
except TypeError:
pass
else:
# `is_between` means version bounds were specified *and* the URL
# version is between them.
is_between = (
min_version
and max_version
and version_between(min_version, max_version, url_version)
)
exact_match = bool(
is_between and max_version and max_version[0] == url_version[0]
)
high_match = (
is_between
and max_version
and max_version[1] != LATEST
and version_match(max_version, url_version)
)
if exact_match or is_between:
self._catalog_matches_version = True
self._catalog_matches_exactly = exact_match
# The endpoint from the catalog matches the version request
# We construct a URL minus any project_id, but we don't
# return it just yet. It's a good option, but unless we
# have an exact match or match the max requested, we want
# to try for an unversioned endpoint first.
catalog_discovery = (
urllib.parse.ParseResult(
url.scheme,
url.netloc,
'/'.join(url_parts),
url.params,
url.query,
url.fragment,
)
.geturl()
.rstrip('/')
+ '/'
)
# If we found a viable catalog endpoint and it's
# an exact match or matches the max, go ahead and give
# it a go.
if catalog_discovery and (high_match or exact_match):
yield catalog_discovery
catalog_discovery = None
url_parts.pop()
if allow_version_hack:
# If there were projects or versions in the url they are now gone.
# That means we're left with what should be the unversioned url.
hacked_url = urllib.parse.ParseResult(
url.scheme,
url.netloc,
'/'.join(url_parts),
url.params,
url.query,
url.fragment,
).geturl()
# Since this is potentially us constructing a base URL from the
# versioned URL - we need to make sure it has a trailing /. But
# we only want to do that if we have built a new URL - not if
# we're using the one from the catalog
if hacked_url != self.catalog_url:
hacked_url = hacked_url.strip('/') + '/'
yield hacked_url
# If we have a catalog discovery url, it either means we didn't
# return it earlier because it wasn't an exact enough match, or
# that we did and it failed. We don't double-request things when
# consuming this, so it's safe to return it here in case we didn't
# already return it.
if catalog_discovery:
yield catalog_discovery
# NOTE(mordred): For backwards compatibility people might have
# added version hacks using the version hack system. The logic
# above should handle most cases, so by the time we get here it's
# most likely to be a no-op
yield self._get_catalog_discover_hack()
elif versioned_discovery and self._saved_project_id:
# We popped a project_id but are either avoiding version hacks
# or we didn't request a version. That means we still want to fetch
# the document from the "catalog url" - but the catalog url is has
# a project_id suffix so is likely not going to work for us. Try
# fetching from the project-less versioned endpoint.
yield versioned_discovery
# As a final fallthrough case, return the actual unmodified url from
# the catalog.
if self.catalog_url:
yield self.catalog_url
def _get_catalog_discover_hack(self) -> str:
"""Apply the catalog hacks and figure out an unversioned endpoint.
This function is internal to keystoneauth1.
:returns: A url that has been transformed by the regex hacks that
match the service_type.
"""
assert self.service_type is not None # nosec B101
assert self.url is not None # nosec B101
return _VERSION_HACKS.get_discover_hack(self.service_type, self.url)
def get_discovery(
session: 'ks_session.Session',
url: str,
cache: dict[str, Discover] | None = None,
authenticated: bool | None = False,
) -> Discover:
"""Return the discovery object for a URL.
Check the session and the plugin cache to see if we have already
performed discovery on the URL and if so return it, otherwise create
a new discovery object, cache it and return it.
NOTE: This function is expected to be used by keystoneauth and should not
be needed by users part of normal usage. A normal user should use
get_endpoint or get_endpoint_data on `keystoneauth.session.Session` or
endpoint_filters on `keystoneauth.session.Session` or
`keystoneauth.session.Session`. However, should the user need to perform
direct discovery for some reason, this function should be used so that
the discovery caching is used.
:param session: A session object to discover with.
:type session: keystoneauth1.session.Session
:param str url: The url to lookup.
:param dict cache:
A dict to be used for caching results, in addition to caching them
on the Session. (optional) Defaults to None.
:param bool authenticated:
Include a token in the discovery call. (optional) Defaults to None,
which will use a token if an auth plugin is installed.
:raises keystoneauth1.exceptions.discovery.DiscoveryFailure:
if for some reason the lookup fails.
:raises keystoneauth1.exceptions.http.HttpError:
An error from an invalid HTTP response.
:returns: A discovery object with the results of looking up that URL.
:rtype: :py:class:`keystoneauth1.discover.Discovery`
"""
# There are between one and three different caches. The user may have
# passed one in. There is definitely one on the session, and there is
# one on the auth plugin if the Session has an auth plugin.
caches: list[dict[str, Discover]] = []
# If a cache was passed in, check it first.
if cache is not None:
caches.append(cache)
# If the session has a cache, check it second, since it could have been
# provided by the user at Session creation time.
if hasattr(session, '_discovery_cache'):
caches.append(session._discovery_cache)
# Finally check the auth cache associated with the Session.
if session.auth and hasattr(session.auth, '_discovery_cache'):
caches.append(session.auth._discovery_cache)
# https://example.com and https://example.com/ should be treated the same
# for caching purposes.
parsed_url = urllib.parse.urlparse(url)
if parsed_url.path in ('', '/'):
url = urllib.parse.ParseResult(
parsed_url.scheme,
parsed_url.netloc,
'',
parsed_url.params,
parsed_url.query,
parsed_url.fragment,
).geturl()
for cache in caches:
disc = cache.get(url)
if disc:
break
else:
disc = Discover(session, url, authenticated=authenticated)
# Whether we get one from fetching or from cache, set it in the
# caches. This assures that if we combine sessions and auth plugins
# that we don't make unnecessary calls.
if disc:
for cache in caches:
cache[url] = disc
return disc
class _VersionHacks:
"""A container to abstract the list of version hacks.
This could be done as simply a dictionary but is abstracted like this to
make for easier testing.
"""
def __init__(self) -> None:
self._discovery_data: dict[str, list[tuple[re.Pattern[str], str]]] = {}
def add_discover_hack(
self, service_type: str, old: re.Pattern[str], new: str = ''
) -> None:
"""Add a new hack for a service type.
:param str service_type: The service_type in the catalog.
:param re.RegexObject old: The pattern to use.
:param str new: What to replace the pattern with.
"""
hacks = self._discovery_data.setdefault(service_type, [])
hacks.append((old, new))
def get_discover_hack(self, service_type: str, url: str) -> str:
"""Apply the catalog hacks and figure out an unversioned endpoint.
:param str service_type: the service_type to look up.
:param str url: The original url that came from a service_catalog.
:returns: Either the unversioned url or the one from the catalog
to try.
"""
for old, new in self._discovery_data.get(service_type, []):
new_string, number_of_subs_made = old.subn(new, url)
if number_of_subs_made > 0:
return new_string
return url
_VERSION_HACKS = _VersionHacks()
_VERSION_HACKS.add_discover_hack('identity', re.compile('/v2.0/?$'), '/')
def add_catalog_discover_hack(
service_type: str, old: re.Pattern[str], new: str
) -> None:
"""Add a version removal rule for a particular service.
Originally deployments of OpenStack would contain a versioned endpoint in
the catalog for different services. E.g. an identity service might look
like ``http://localhost:5000/v2.0``. This is a problem when we want to use
a different version like v3.0 as there is no way to tell where it is
located. We cannot simply change all service catalogs either so there must
be a way to handle the older style of catalog.
This function adds a rule for a given service type that if part of the URL
matches a given regular expression in *old* then it will be replaced with
the *new* value. This will replace all instances of old with new. It should
therefore contain a regex anchor.
For example the included rule states::
add_catalog_version_hack('identity', re.compile('/v2.0/?$'), '/')
so if the catalog retrieves an *identity* URL that ends with /v2.0 or
/v2.0/ then it should replace it simply with / to fix the user's catalog.
:param str service_type: The service type as defined in the catalog that
the rule will apply to.
:param re.RegexObject old: The regular expression to search for and replace
if found.
:param str new: The new string to replace the pattern with.
"""
_VERSION_HACKS.add_discover_hack(service_type, old, new)
|