HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-157-generic #167-Ubuntu SMP Wed Sep 17 21:35:53 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //usr/local/CyberPanel/lib/python3.10/site-packages/validators/__pycache__/hostname.cpython-310.pyc
o

��h/�@s�dZddlmZddlZddlmZddlmZddlmZm	Z	ddl
mZed	d
��Zedd��Z
d
efdd�Zeddddddddd�d
ededededededeededefdd��ZdS)z	Hostname.�)�	lru_cacheN)�Optional�)�domain)�ipv4�ipv6)�	validatorcCs
t�d�S)zPort validation regex.zZ^\:(6553[0-5]|655[0-2][0-9]|65[0-4][0-9]{2}|6[0-4][0-9]{3}|[1-5][0-9]{4}|[1-9][0-9]{0,3})$)�re�compile�rr�I/usr/local/CyberPanel/lib/python3.10/site-packages/validators/hostname.py�_port_regexs�r
cCst�dtj�S)z!Simple hostname validation regex.z1^(?!-)[a-z0-9](?:[a-z0-9-]{0,59}[a-z0-9])?(?<!-)$)r	r
�
IGNORECASErrrr�_simple_hostname_regexsr�valuecCsx|�d�dkr |�dd�\}}t��d|���r |�d��d�S|�d�dkr:|�dd�\}}t��d|���r:|SdS)z&Returns host segment if port is valid.z]:r�:�[�]N)�count�rsplitr
�match�lstrip�rstrip)r�host_seg�port_segrrr�_port_validator srFT)�skip_ipv6_addr�skip_ipv4_addr�
may_have_port�maybe_simple�consider_tld�private�rfc_1034�rfc_2782rrrrr r!r"r#c
Cs�|sdS|r3t|�}	r3|rt��|	�ndp2t|	|||d�p2|r"dnt|	d|d�p2|r-dSt|	dd�S|r;t��|�ndpYt||||d�pY|rIdnt|d|d�pY|rTdSt|dd�S)a�Return whether or not given value is a valid hostname.

    Examples:
        >>> hostname("ubuntu-pc:443")
        # Output: True
        >>> hostname("this-pc")
        # Output: True
        >>> hostname("xn----gtbspbbmkef.xn--p1ai:65535")
        # Output: True
        >>> hostname("_example.com")
        # Output: True
        >>> hostname("123.5.77.88:31000")
        # Output: True
        >>> hostname("12.12.12.12")
        # Output: True
        >>> hostname("[::1]:22")
        # Output: True
        >>> hostname("dead:beef:0:0:0:0000:42:1")
        # Output: True
        >>> hostname("[0:0:0:0:0:ffff:1.2.3.4]:-65538")
        # Output: ValidationError(func=hostname, ...)
        >>> hostname("[0:&:b:c:@:e:f::]:9999")
        # Output: ValidationError(func=hostname, ...)

    Args:
        value:
            Hostname string to validate.
        skip_ipv6_addr:
            When hostname string cannot be an IPv6 address.
        skip_ipv4_addr:
            When hostname string cannot be an IPv4 address.
        may_have_port:
            Hostname string may contain port number.
        maybe_simple:
            Hostname string maybe only hyphens and alpha-numerals.
        consider_tld:
            Restrict domain to TLDs allowed by IANA.
        private:
            Embedded IP address is public if `False`, private/local if `True`.
        rfc_1034:
            Allow trailing dot in domain/host name.
            Ref: [RFC 1034](https://www.rfc-editor.org/rfc/rfc1034).
        rfc_2782:
            Domain/Host name is of type service record.
            Ref: [RFC 2782](https://www.rfc-editor.org/rfc/rfc2782).

    Returns:
        (Literal[True]): If `value` is a valid hostname.
        (ValidationError): If `value` is an invalid hostname.
    F)r r"r#)�cidrr!)r$)rrrrrr)
rrrrrr r!r"r#rrrr�hostname1s*@���
����
�r%)�__doc__�	functoolsrr	�typingrr�
ip_addressrr�utilsrr
r�strr�boolr%rrrr�<module>sP

�������	�
��