mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-03 23:51:48 +00:00
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [hcloud](https://redirect.github.com/hetznercloud/hcloud-python) ([changelog](https://redirect.github.com/hetznercloud/hcloud-python/blob/main/CHANGELOG.md)) | `2.12.0` -> `2.13.0` |  |  | --- ### Release Notes <details> <summary>hetznercloud/hcloud-python (hcloud)</summary> ### [`v2.13.0`](https://redirect.github.com/hetznercloud/hcloud-python/blob/HEAD/CHANGELOG.md#v2130) [Compare Source](https://redirect.github.com/hetznercloud/hcloud-python/compare/v2.12.0...v2.13.0) ##### Features - add per primary ip actions list operations ([#​608](https://redirect.github.com/hetznercloud/hcloud-python/issues/608)) - deprecate datacenter in `primary ips` and `servers` ([#​609](https://redirect.github.com/hetznercloud/hcloud-python/issues/609)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/ansible-collections/hetzner.hcloud). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: jo <ljonas@riseup.net>
50 lines
1.6 KiB
Python
50 lines
1.6 KiB
Python
from __future__ import annotations
|
|
|
|
import re
|
|
|
|
__all__ = [
|
|
"LabelValidator",
|
|
]
|
|
|
|
|
|
class LabelValidator:
|
|
KEY_REGEX = re.compile(
|
|
r"^([a-z0-9A-Z]((?:[\-_.]|[a-z0-9A-Z]){0,253}[a-z0-9A-Z])?/)?[a-z0-9A-Z]((?:[\-_.]|[a-z0-9A-Z]|){0,61}[a-z0-9A-Z])?$"
|
|
)
|
|
VALUE_REGEX = re.compile(
|
|
r"^(([a-z0-9A-Z](?:[\-_.]|[a-z0-9A-Z]){0,61})?[a-z0-9A-Z]$|$)"
|
|
)
|
|
|
|
@staticmethod
|
|
def validate(labels: dict[str, str]) -> bool:
|
|
"""Validates Labels. If you want to know which key/value pair of the dict is not correctly formatted
|
|
use :func:`~hcloud.helpers.labels.validate_verbose`.
|
|
|
|
:return: bool
|
|
"""
|
|
for key, value in labels.items():
|
|
if LabelValidator.KEY_REGEX.match(key) is None:
|
|
return False
|
|
if LabelValidator.VALUE_REGEX.match(value) is None:
|
|
return False
|
|
return True
|
|
|
|
@staticmethod
|
|
def validate_verbose(labels: dict[str, str]) -> tuple[bool, str]:
|
|
"""Validates Labels and returns the corresponding error message if something is wrong. Returns True, <empty string>
|
|
if everything is fine.
|
|
|
|
:return: bool, str
|
|
"""
|
|
for key, value in labels.items():
|
|
if LabelValidator.KEY_REGEX.match(key) is None:
|
|
return (
|
|
False,
|
|
f"label key {key} is not correctly formatted",
|
|
)
|
|
if LabelValidator.VALUE_REGEX.match(value) is None:
|
|
return (
|
|
False,
|
|
f"label value {value} (key: {key}) is not correctly formatted",
|
|
)
|
|
return True, ""
|