o
    w7e                  
   @   s   U d Z ddlZddlmZ ddlmZmZmZ ddlm	Z	 ddl
mZ ddlmZmZ ddlmZ dd	lmZ eZg d
ZdZdddeegeededgdgdZeed< eeZ eeZdedede	deddf
ddZdS )zPhone Home: Post data to url    N)dedent)	templater
url_helperutil)Cloud)Config)
MetaSchemaget_meta_doc)ALL_DISTROS)PER_INSTANCE)pub_key_dsapub_key_rsapub_key_ecdsapub_key_ed25519instance_idhostnamefqdnaj  This module can be used to post data to a remote host after boot is complete.
If the post url contains the string ``$INSTANCE_ID`` it will be replaced with
the id of the current instance. Either all data can be posted or a list of
keys to post. Available keys are:

    - ``pub_key_dsa``
    - ``pub_key_rsa``
    - ``pub_key_ecdsa``
    - ``pub_key_ed25519``
    - ``instance_id``
    - ``hostname``
    - ``fdqn``

Data is sent as ``x-www-form-urlencoded`` arguments.

**Example HTTP POST**:

.. code-block:: http

    POST / HTTP/1.1
    Content-Length: 1337
    User-Agent: Cloud-Init/21.4
    Accept-Encoding: gzip, deflate
    Accept: */*
    Content-Type: application/x-www-form-urlencoded

    pub_key_dsa=dsa_contents&pub_key_rsa=rsa_contents&pub_key_ecdsa=ecdsa_contents&pub_key_ed25519=ed25519_contents&instance_id=i-87018aed&hostname=myhost&fqdn=myhost.internal
cc_phone_homez
Phone HomezPost data to urlzt            phone_home:
                url: http://example.com/$INSTANCE_ID/
                post: all
            as              phone_home:
                url: http://example.com/$INSTANCE_ID/
                post:
                    - pub_key_dsa
                    - pub_key_rsa
                    - pub_key_ecdsa
                    - pub_key_ed25519
                    - instance_id
                    - hostname
                    - fqdn
                tries: 5
            
phone_home)idnametitledescriptiondistros	frequencyexamplesactivate_by_schema_keysmetar   cfgcloudargsreturnc              	   C   s  t |dkrt|d }nd|vrtd|  d S |d }d|vr*td|  d S |d }|dd}|d}zt|}W n tt	fyS   d	}t
td
| Y nw |dkrZt}| | j|jddjd}ddddd}	|	 D ]\}
}z	t|||
< W qu ty   t
td| Y quw i }|D ]}||v r|| ||< qd ||< td| qi }| D ]\}}|d u rd||< qt|||< qd|d i}t||}ztj|||d dt|jd W d S  ty   t
td|| Y d S w )Nr   r   z=Skipping module named %s, no 'phone_home' configuration foundurlzFSkipping module named %s, no 'url' found in 'phone_home' configurationpostalltries
   z?Configuration entry 'tries' is not an integer, using %s insteadT)r   )r   r   r   z/etc/ssh/ssh_host_dsa_key.pubz/etc/ssh/ssh_host_rsa_key.pubz/etc/ssh/ssh_host_ecdsa_key.pubz!/etc/ssh/ssh_host_ed25519_key.pub)r   r   r   r   z1%s: failed to open, can not phone home that data!z=Requested key %s from 'post' configuration list not availablezN/AINSTANCE_IDr         )dataretriessec_betweenssl_detailsz0Failed to post phone home data to %s in %s tries)lenr   	read_confLOGdebugwarninggetint
ValueError	TypeErrorlogexcPOST_LIST_ALLget_instance_idget_hostnamer   items	load_file	Exceptionstrr   render_stringr   read_file_or_urlfetch_ssl_detailspaths)r   r   r   r    ph_cfgr"   	post_listr%   all_keyspubkeysnpathsubmit_keyskreal_submit_keysv
url_params rN   @/usr/lib/python3/dist-packages/cloudinit/config/cc_phone_home.pyhandleo   s   



rP   )__doc__loggingtextwrapr   	cloudinitr   r   r   cloudinit.cloudr   cloudinit.configr   cloudinit.config.schemar   r	   cloudinit.distrosr
   cloudinit.settingsr   r   r8   MODULE_DESCRIPTIONr   __annotations__	getLogger__name__r0   r>   listrP   rN   rN   rN   rO   <module>   s<   
"
"