o
    Nrf©F  ã                   @   sT   d dl mZ d dlZddlmZmZmZ ddlm	Z	m
Z
 e e¡ZG dd„ dƒZdS )é    Né   )ÚerrorsÚtypesÚutils)ÚDEFAULT_SWARM_ADDR_POOLÚDEFAULT_SWARM_SUBNET_SIZEc                   @   s  e Zd Zdd„ Ze d¡dd„ ƒZe d¡				dd	d
„ƒZe d¡dd„ ƒZe 	d¡e d¡dd„ ƒƒZ
e d¡		ddd„ƒZe d¡d dd„ƒZe d¡d!dd„ƒZe 	d¡e d¡d dd„ƒƒZe d¡dd„ ƒZe d¡d!dd„ƒZe d¡				d"dd„ƒZdS )#ÚSwarmApiMixinc                 O   s4   |  dd¡}|r|g|d< tj| jg|¢R i |¤ŽS )a^
  
        Create a :py:class:`docker.types.SwarmSpec` instance that can be used
        as the ``swarm_spec`` argument in
        :py:meth:`~docker.api.swarm.SwarmApiMixin.init_swarm`.

        Args:
            task_history_retention_limit (int): Maximum number of tasks
                history stored.
            snapshot_interval (int): Number of logs entries between snapshot.
            keep_old_snapshots (int): Number of snapshots to keep beyond the
                current snapshot.
            log_entries_for_slow_followers (int): Number of log entries to
                keep around to sync up slow followers after a snapshot is
                created.
            heartbeat_tick (int): Amount of ticks (in seconds) between each
                heartbeat.
            election_tick (int): Amount of ticks (in seconds) needed without a
                leader to trigger a new election.
            dispatcher_heartbeat_period (int):  The delay for an agent to send
                a heartbeat to the dispatcher.
            node_cert_expiry (int): Automatic expiry for nodes certificates.
            external_cas (:py:class:`list`): Configuration for forwarding
                signing requests to an external certificate authority. Use
                a list of :py:class:`docker.types.SwarmExternalCA`.
            name (string): Swarm's name
            labels (dict): User-defined key/value metadata.
            signing_ca_cert (str): The desired signing CA certificate for all
                swarm node TLS leaf certificates, in PEM format.
            signing_ca_key (str): The desired signing CA key for all swarm
                node TLS leaf certificates, in PEM format.
            ca_force_rotate (int): An integer whose purpose is to force swarm
                to generate a new signing CA certificate and key, if none have
                been specified.
            autolock_managers (boolean): If set, generate a key and use it to
                lock data stored on the managers.
            log_driver (DriverConfig): The default log driver to use for tasks
                created in the orchestrator.

        Returns:
            :py:class:`docker.types.SwarmSpec`

        Raises:
            :py:class:`docker.errors.APIError`
                If the server returns an error.

        Example:

            >>> spec = client.api.create_swarm_spec(
              snapshot_interval=5000, log_entries_for_slow_followers=1200
            )
            >>> client.api.init_swarm(
              advertise_addr='eth0', listen_addr='0.0.0.0:5000',
              force_new_cluster=False, swarm_spec=spec
            )
        Zexternal_caNZexternal_cas)Úpopr   Z	SwarmSpecÚ_version)ÚselfÚargsÚkwargsZext_ca© r   úY/var/www/html/software/conda/envs/catlas/lib/python3.10/site-packages/docker/api/swarm.pyÚcreate_swarm_spec   s   8
zSwarmApiMixin.create_swarm_specz1.24c                 C   s   |   |  |  d¡¡d¡S )z”
            Get the unlock key for this Swarm manager.

            Returns:
                A ``dict`` containing an ``UnlockKey`` member
        z/swarm/unlockkeyT)Ú_resultÚ_getÚ_url)r   r   r   r   Úget_unlock_keyI   s   zSwarmApiMixin.get_unlock_keyNú0.0.0.0:2377Fc	                 C   sú   |   d¡}	|durt|tƒstdƒ‚|dur(t | jd¡r"t d¡‚|du r(t	}|dur>t | jd¡r8t d¡‚|du r>t
}||||||dœ}
|dur[t | jd¡rWt d	¡‚||
d
< |durot | jd¡rkt d¡‚||
d< | j|	|
d}| j|ddS )a}	  
        Initialize a new Swarm using the current connected engine as the first
        node.

        Args:
            advertise_addr (string): Externally reachable address advertised
                to other nodes. This can either be an address/port combination
                in the form ``192.168.1.1:4567``, or an interface followed by a
                port number, like ``eth0:4567``. If the port number is omitted,
                the port number from the listen address is used. If
                ``advertise_addr`` is not specified, it will be automatically
                detected when possible. Default: None
            listen_addr (string): Listen address used for inter-manager
                communication, as well as determining the networking interface
                used for the VXLAN Tunnel Endpoint (VTEP). This can either be
                an address/port combination in the form ``192.168.1.1:4567``,
                or an interface followed by a port number, like ``eth0:4567``.
                If the port number is omitted, the default swarm listening port
                is used. Default: '0.0.0.0:2377'
            force_new_cluster (bool): Force creating a new Swarm, even if
                already part of one. Default: False
            swarm_spec (dict): Configuration settings of the new Swarm. Use
                ``APIClient.create_swarm_spec`` to generate a valid
                configuration. Default: None
            default_addr_pool (list of strings): Default Address Pool specifies
                default subnet pools for global scope networks. Each pool
                should be specified as a CIDR block, like '10.0.0.0/8'.
                Default: None
            subnet_size (int): SubnetSize specifies the subnet size of the
                networks created from the default subnet pool. Default: None
            data_path_addr (string): Address or interface to use for data path
                traffic. For example, 192.168.1.1, or an interface, like eth0.
            data_path_port (int): Port number to use for data path traffic.
                Acceptable port range is 1024 to 49151. If set to ``None`` or
                0, the default port 4789 will be used. Default: None

        Returns:
            (str): The ID of the created node.

        Raises:
            :py:class:`docker.errors.APIError`
                If the server returns an error.
        z/swarm/initNzswarm_spec must be a dictionaryz1.39z6Address pool is only available for API version >= 1.39z5Subnet size is only available for API version >= 1.39)ÚAdvertiseAddrÚ
ListenAddrZDefaultAddrPoolZ
SubnetSizeZForceNewClusterZSpecú1.30ú;Data address path is only available for API version >= 1.30ÚDataPathAddrz1.40z8Data path port is only available for API version >= 1.40ZDataPathPort©ÚdataT)Újson)r   Ú
isinstanceÚdictÚ	TypeErrorr   Ú
version_ltr
   r   ÚInvalidVersionr   r   Ú
_post_jsonr   )r   Úadvertise_addrÚlisten_addrZforce_new_clusterÚ
swarm_specZdefault_addr_poolZsubnet_sizeÚdata_path_addrZdata_path_portÚurlr   Úresponser   r   r   Ú
init_swarmS   sL   
1ÿÿú	ÿÿzSwarmApiMixin.init_swarmc                 C   s   |   d¡}|  |  |¡d¡S )a  
        Retrieve low-level information about the current swarm.

        Returns:
            A dictionary containing data about the swarm.

        Raises:
            :py:class:`docker.errors.APIError`
                If the server returns an error.
        z/swarmT©r   r   r   )r   r(   r   r   r   Úinspect_swarm¶   s   
zSwarmApiMixin.inspect_swarmÚnode_idc                 C   s   |   d|¡}|  |  |¡d¡S )aL  
        Retrieve low-level information about a swarm node

        Args:
            node_id (string): ID of the node to be inspected.

        Returns:
            A dictionary containing data about this node.

        Raises:
            :py:class:`docker.errors.APIError`
                If the server returns an error.
        ú
/nodes/{0}Tr+   )r   r-   r(   r   r   r   Úinspect_nodeÅ   s   zSwarmApiMixin.inspect_nodec           	      C   s\   ||||dœ}|durt  | jd¡rt d¡‚||d< |  d¡}| j||d}|  |¡ dS )	aª  
        Make this Engine join a swarm that has already been created.

        Args:
            remote_addrs (:py:class:`list`): Addresses of one or more manager
                nodes already participating in the Swarm to join.
            join_token (string): Secret token for joining this Swarm.
            listen_addr (string): Listen address used for inter-manager
                communication if the node gets promoted to manager, as well as
                determining the networking interface used for the VXLAN Tunnel
                Endpoint (VTEP). Default: ``'0.0.0.0:2377``
            advertise_addr (string): Externally reachable address advertised
                to other nodes. This can either be an address/port combination
                in the form ``192.168.1.1:4567``, or an interface followed by a
                port number, like ``eth0:4567``. If the port number is omitted,
                the port number from the listen address is used. If
                AdvertiseAddr is not specified, it will be automatically
                detected when possible. Default: ``None``
            data_path_addr (string): Address or interface to use for data path
                traffic. For example, 192.168.1.1, or an interface, like eth0.

        Returns:
            ``True`` if the request went through.

        Raises:
            :py:class:`docker.errors.APIError`
                If the server returns an error.
        )ZRemoteAddrsr   Z	JoinTokenr   Nr   r   r   z/swarm/joinr   T)r   r!   r
   r   r"   r   r#   Ú_raise_for_status)	r   Zremote_addrsZ
join_tokenr%   r$   r'   r   r(   r)   r   r   r   Ú
join_swarmØ   s    üÿ

zSwarmApiMixin.join_swarmc                 C   sR   |   d¡}| j|d|id}|r|jtjkrdS |r"|jtjkr"dS |  |¡ dS )aP  
        Leave a swarm.

        Args:
            force (bool): Leave the swarm even if this node is a manager.
                Default: ``False``

        Returns:
            ``True`` if the request went through.

        Raises:
            :py:class:`docker.errors.APIError`
                If the server returns an error.
        z/swarm/leaveÚforce©ÚparamsT)r   Ú_postÚstatus_codeÚhttp_clientÚNOT_ACCEPTABLEÚSERVICE_UNAVAILABLEr0   )r   r2   r(   r)   r   r   r   Úleave_swarm  s   

zSwarmApiMixin.leave_swarmc                 C   s6   |   d¡}i }|rt |¡|d< |  | j||dd¡S )a°  
        List swarm nodes.

        Args:
            filters (dict): Filters to process on the nodes list. Valid
                filters: ``id``, ``name``, ``membership`` and ``role``.
                Default: ``None``

        Returns:
            A list of dictionaries containing data about each swarm node.

        Raises:
            :py:class:`docker.errors.APIError`
                If the server returns an error.
        z/nodesÚfiltersr3   T)r   r   Zconvert_filtersr   r   )r   r;   r(   r4   r   r   r   Únodes'  s
   
zSwarmApiMixin.nodesc                 C   s0   |   d|¡}d|i}| j||d}|  |¡ dS )aè  
        Remove a node from the swarm.

        Args:
            node_id (string): ID of the node to be removed.
            force (bool): Force remove an active node. Default: `False`

        Raises:
            :py:class:`docker.errors.NotFound`
                If the node referenced doesn't exist in the swarm.

            :py:class:`docker.errors.APIError`
                If the server returns an error.
        Returns:
            `True` if the request was successful.
        r.   r2   r3   T)r   Ú_deleter0   )r   r-   r2   r(   r4   Úresr   r   r   Úremove_node?  s   ÿ
zSwarmApiMixin.remove_nodec                 C   sL   t |tƒrd|vrt d¡‚nd|i}|  d¡}| j||d}|  |¡ dS )al  
            Unlock a locked swarm.

            Args:
                key (string): The unlock key as provided by
                    :py:meth:`get_unlock_key`

            Raises:
                :py:class:`docker.errors.InvalidArgument`
                    If the key argument is in an incompatible format

                :py:class:`docker.errors.APIError`
                    If the server returns an error.

            Returns:
                `True` if the request was successful.

            Example:

                >>> key = client.api.get_unlock_key()
                >>> client.unlock_swarm(key)

        Z	UnlockKeyzInvalid unlock key formatz/swarm/unlockr   T)r   r   r   ZInvalidArgumentr   r#   r0   )r   Úkeyr(   r>   r   r   r   Úunlock_swarmZ  s   

ÿ

zSwarmApiMixin.unlock_swarmc                 C   s.   |   d|t|ƒ¡}| j||d}|  |¡ dS )a©  
        Update the node's configuration

        Args:

            node_id (string): ID of the node to be updated.
            version (int): The version number of the node object being
                updated. This is required to avoid conflicting writes.
            node_spec (dict): Configuration settings to update. Any values
                not provided will be removed. Default: ``None``

        Returns:
            `True` if the request went through.

        Raises:
            :py:class:`docker.errors.APIError`
                If the server returns an error.

        Example:

            >>> node_spec = {'Availability': 'active',
                         'Name': 'node-name',
                         'Role': 'manager',
                         'Labels': {'foo': 'bar'}
                        }
            >>> client.api.update_node(node_id='24ifsmvkjbyhk', version=8,
                node_spec=node_spec)

        z/nodes/{0}/update?version={1}r   T)r   Ústrr#   r0   )r   r-   ÚversionZ	node_specr(   r>   r   r   r   Úupdate_node~  s   
zSwarmApiMixin.update_nodec           	      C   sX   |   d¡}|||dœ}|rt | jd¡rt d¡‚||d< | j|||d}|  |¡ dS )a£  
        Update the Swarm's configuration

        Args:
            version (int): The version number of the swarm object being
                updated. This is required to avoid conflicting writes.
            swarm_spec (dict): Configuration settings to update. Use
                :py:meth:`~docker.api.swarm.SwarmApiMixin.create_swarm_spec` to
                generate a valid configuration. Default: ``None``.
            rotate_worker_token (bool): Rotate the worker join token. Default:
                ``False``.
            rotate_manager_token (bool): Rotate the manager join token.
                Default: ``False``.
            rotate_manager_unlock_key (bool): Rotate the manager unlock key.
                Default: ``False``.

        Returns:
            ``True`` if the request went through.

        Raises:
            :py:class:`docker.errors.APIError`
                If the server returns an error.
        z/swarm/update)ZrotateWorkerTokenZrotateManagerTokenrC   z1.25zCRotate manager unlock key is only available for API version >= 1.25ZrotateManagerUnlockKey)r   r4   T)r   r   r!   r
   r   r"   r#   r0   )	r   rC   r&   Zrotate_worker_tokenZrotate_manager_tokenZrotate_manager_unlock_keyr(   r4   r)   r   r   r   Úupdate_swarm¢  s   
ýÿ
zSwarmApiMixin.update_swarm)Nr   FNNNNN)r   NN)F)N)NFFF)Ú__name__Ú
__module__Ú__qualname__r   r   Úminimum_versionr   r*   r,   Zcheck_resourcer/   r1   r:   r<   r?   rA   rD   rE   r   r   r   r   r   
   sH    =
	ýb
ÿ2
##ýr   )Úhttp.clientÚclientr7   ÚloggingÚ r   r   r   Ú	constantsr   r   Ú	getLoggerrF   Úlogr   r   r   r   r   Ú<module>   s    
