U
    cUh(                     @  s   d Z ddlmZ ddlZddlZddlmZ ddlmZ ddl	m
Z
mZ ddlmZ ejd	krnd
dddZnddlmZ G dd deZddddddZdddddZdgZdS )zUnix.    )annotationsN)ConfigParser)Path)IteratorNoReturn   )PlatformDirsABCwin32r   returnc                  C  s   d} t | d S )Nzshould only be used on Unix)RuntimeError)msg r   ]/opt/bot/vods_filmes/script/venv/lib/python3.8/site-packages/pip/_vendor/platformdirs/unix.pygetuid   s    r   )r   c                   @  s  e Zd ZdZeddddZeddddZeddd	d
ZeddddZeddddZ	eddddZ
eddddZeddddZeddddZeddddZeddddZeddddZeddddZedddd Zeddd!d"Zeddd#d$Zeddd%d&Zeddd'd(Zed)dd*d+Zed)dd,d-Zed)dd.d/Zd0dd1d2Zd0dd3d4Zd5S )6Unixa  
    On Unix/Linux, we follow the `XDG Basedir Spec <https://specifications.freedesktop.org/basedir-spec/basedir-spec-
    latest.html>`_.

    The spec allows overriding directories with environment variables. The examples shown are the default values,
    alongside the name of the environment variable that overrides them. Makes use of the `appname
    <platformdirs.api.PlatformDirsABC.appname>`, `version <platformdirs.api.PlatformDirsABC.version>`, `multipath
    <platformdirs.api.PlatformDirsABC.multipath>`, `opinion <platformdirs.api.PlatformDirsABC.opinion>`, `ensure_exists
    <platformdirs.api.PlatformDirsABC.ensure_exists>`.

    strr
   c                 C  s,   t jdd}| s"t jd}| |S )z
        :return: data directory tied to the user, e.g. ``~/.local/share/$appname/$version`` or
         ``$XDG_DATA_HOME/$appname/$version``
        ZXDG_DATA_HOME z~/.local/shareosenvirongetstrippath
expanduser_append_app_name_and_versionselfr   r   r   r   user_data_dir$   s    zUnix.user_data_dirz	list[str]c                   s>   t jdd}| s$dt j d} fdd|t jD S )NZXDG_DATA_DIRSr   z/usr/local/sharez
/usr/sharec                   s   g | ]}  |qS r   r   .0pr   r   r   
<listcomp>4   s     z(Unix._site_data_dirs.<locals>.<listcomp>)r   r   r   r   pathsepsplitr   r   r#   r   _site_data_dirs/   s    zUnix._site_data_dirsc                 C  s    | j }| js|d S tj|S )aZ  
        :return: data directories shared by users (if `multipath <platformdirs.api.PlatformDirsABC.multipath>` is
         enabled and ``XDG_DATA_DIRS`` is set and a multi path the response is also a multi path separated by the
         OS path separator), e.g. ``/usr/local/share/$appname/$version`` or ``/usr/share/$appname/$version``
        r   )r'   	multipathr   r%   joinr   dirsr   r   r   site_data_dir6   s    zUnix.site_data_dirc                 C  s,   t jdd}| s"t jd}| |S )z
        :return: config directory tied to the user, e.g. ``~/.config/$appname/$version`` or
         ``$XDG_CONFIG_HOME/$appname/$version``
        ZXDG_CONFIG_HOMEr   z	~/.configr   r   r   r   r   user_config_dirC   s    zUnix.user_config_dirc                   s4   t jdd}| sd} fdd|t jD S )NZXDG_CONFIG_DIRSr   z/etc/xdgc                   s   g | ]}  |qS r   r   r    r#   r   r   r$   S   s     z*Unix._site_config_dirs.<locals>.<listcomp>)r   r   r   r   r&   r%   r   r   r#   r   _site_config_dirsN   s    zUnix._site_config_dirsc                 C  s    | j }| js|d S tj|S )a2  
        :return: config directories shared by users (if `multipath <platformdirs.api.PlatformDirsABC.multipath>`
         is enabled and ``XDG_CONFIG_DIRS`` is set and a multi path the response is also a multi path separated by
         the OS path separator), e.g. ``/etc/xdg/$appname/$version``
        r   )r.   r(   r   r%   r)   r*   r   r   r   site_config_dirU   s    zUnix.site_config_dirc                 C  s,   t jdd}| s"t jd}| |S )z
        :return: cache directory tied to the user, e.g. ``~/.cache/$appname/$version`` or
         ``~/$XDG_CACHE_HOME/$appname/$version``
        ZXDG_CACHE_HOMEr   z~/.cacher   r   r   r   r   user_cache_dirb   s    zUnix.user_cache_dirc                 C  s
   |  dS )zO:return: cache directory shared by users, e.g. ``/var/cache/$appname/$version``z
/var/cacher   r#   r   r   r   site_cache_dirm   s    zUnix.site_cache_dirc                 C  s,   t jdd}| s"t jd}| |S )z
        :return: state directory tied to the user, e.g. ``~/.local/state/$appname/$version`` or
         ``$XDG_STATE_HOME/$appname/$version``
        ZXDG_STATE_HOMEr   z~/.local/stater   r   r   r   r   user_state_dirr   s    zUnix.user_state_dirc                 C  s(   | j }| jr$tj|d}| | |S )zg:return: log directory tied to the user, same as `user_state_dir` if not opinionated else ``log`` in itlog)r2   opinionr   r   r)   _optionally_create_directoryr   r   r   r   user_log_dir}   s
    
zUnix.user_log_dirc                 C  s
   t ddS )zC:return: documents directory tied to the user, e.g. ``~/Documents``ZXDG_DOCUMENTS_DIRz~/Documents_get_user_media_dirr#   r   r   r   user_documents_dir   s    zUnix.user_documents_dirc                 C  s
   t ddS )zC:return: downloads directory tied to the user, e.g. ``~/Downloads``ZXDG_DOWNLOAD_DIRz~/Downloadsr7   r#   r   r   r   user_downloads_dir   s    zUnix.user_downloads_dirc                 C  s
   t ddS )zA:return: pictures directory tied to the user, e.g. ``~/Pictures``ZXDG_PICTURES_DIRz
~/Picturesr7   r#   r   r   r   user_pictures_dir   s    zUnix.user_pictures_dirc                 C  s
   t ddS )z=:return: videos directory tied to the user, e.g. ``~/Videos``ZXDG_VIDEOS_DIRz~/Videosr7   r#   r   r   r   user_videos_dir   s    zUnix.user_videos_dirc                 C  s
   t ddS )z;:return: music directory tied to the user, e.g. ``~/Music``ZXDG_MUSIC_DIRz~/Musicr7   r#   r   r   r   user_music_dir   s    zUnix.user_music_dirc                 C  s
   t ddS )z?:return: desktop directory tied to the user, e.g. ``~/Desktop``ZXDG_DESKTOP_DIRz	~/Desktopr7   r#   r   r   r   user_desktop_dir   s    zUnix.user_desktop_dirc                 C  s^   t jdd}| sTtjdrHdt  }t|	 sTdt  }ndt  }| 
|S )az  
        :return: runtime directory tied to the user, e.g. ``/run/user/$(id -u)/$appname/$version`` or
         ``$XDG_RUNTIME_DIR/$appname/$version``.

         For FreeBSD/OpenBSD/NetBSD, it would return ``/var/run/user/$(id -u)/$appname/$version`` if
         exists, otherwise ``/tmp/runtime-$(id -u)/$appname/$version``, if``$XDG_RUNTIME_DIR``
         is not set.
        XDG_RUNTIME_DIRr   ZfreebsdZopenbsdZnetbsdz/var/run/user/z/tmp/runtime-z
/run/user/)r   r   r   r   sysplatform
startswithr   r   existsr   r   r   r   r   user_runtime_dir   s    
zUnix.user_runtime_dirc                 C  s6   t jdd}| s,tjdr(d}nd}| |S )am  
        :return: runtime directory shared by users, e.g. ``/run/$appname/$version`` or         ``$XDG_RUNTIME_DIR/$appname/$version``.

        Note that this behaves almost exactly like `user_runtime_dir` if ``$XDG_RUNTIME_DIR`` is set, but will
        fall back to paths associated to the root user instead of a regular logged-in user if it's not set.

        If you wish to ensure that a logged-in root user path is returned e.g. ``/run/user/0``, use `user_runtime_dir`
        instead.

        For FreeBSD/OpenBSD/NetBSD, it would return ``/var/run/$appname/$version`` if ``$XDG_RUNTIME_DIR`` is not set.
        r?   r   r@   z/var/runz/run)r   r   r   r   rA   rB   rC   r   r   r   r   r   site_runtime_dir   s    zUnix.site_runtime_dirr   c                 C  s   |  | jS )zh:return: data path shared by users. Only return the first item, even if ``multipath`` is set to ``True``) _first_item_as_path_if_multipathr,   r#   r   r   r   site_data_path   s    zUnix.site_data_pathc                 C  s   |  | jS )zj:return: config path shared by the users, returns the first item, even if ``multipath`` is set to ``True``)rG   r/   r#   r   r   r   site_config_path   s    zUnix.site_config_pathc                 C  s   |  | jS )zi:return: cache path shared by users. Only return the first item, even if ``multipath`` is set to ``True``)rG   r1   r#   r   r   r   site_cache_path   s    zUnix.site_cache_pathzIterator[str]c                 c  s   | j V  | jE dH  dS )z4:yield: all user and site configuration directories.N)r-   r.   r#   r   r   r   iter_config_dirs   s    zUnix.iter_config_dirsc                 c  s   | j V  | jE dH  dS )z+:yield: all user and site data directories.N)r   r'   r#   r   r   r   iter_data_dirs   s    zUnix.iter_data_dirsN)__name__
__module____qualname____doc__propertyr   r'   r,   r-   r.   r/   r0   r1   r2   r6   r9   r:   r;   r<   r=   r>   rE   rF   rH   rI   rJ   rK   rL   r   r   r   r   r      sZ   



r   r   )env_varfallback_tilde_pathr   c                 C  s6   t | }|d kr2tj| d }|s2tj|}|S )Nr   )_get_user_dirs_folderr   r   r   r   r   r   )rR   rS   Z	media_dirr   r   r   r8      s    r8   z
str | None)keyr   c              	   C  s   t t jd }| r|t }| }|d|   W 5 Q R X | |d krVdS |d |  d}|	dt
jdS dS )z{
    Return directory from user-dirs.dirs config file.

    See https://freedesktop.org/wiki/Software/xdg-user-dirs/.

    zuser-dirs.dirsz[top]
topN"z$HOME~)r   r   r-   rD   r   openread_stringreadr   replacer   r   r   )rU   Zuser_dirs_config_pathparserstreamr   r   r   r   rT      s    
rT   )rP   
__future__r   r   rA   configparserr   pathlibr   typingr   r   apir   rB   r   r   r8   rT   __all__r   r   r   r   <module>   s    
 R
