o
    Zh:'                     @  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
 ejdkr-dddZnddlmZ G dd de
ZdddZdddZdgZdS )zUnix.    )annotationsN)ConfigParser)Path   )PlatformDirsABCwin32returnintc                  C  s   d} t | )Nzshould only be used on Unix)RuntimeError)msg r   H/var/www/html/lang_env/lib/python3.10/site-packages/platformdirs/unix.pygetuid   s   r   )r   c                   @  s.  e Zd ZdZed2ddZed2ddZd3d	d
Zed2ddZed2ddZ	ed2ddZ
ed2ddZed2ddZed2ddZed2ddZed2ddZed2ddZed2ddZed2dd Zed2d!d"Zed2d#d$Zed2d%d&Zed4d(d)Zed4d*d+Zed4d,d-Zd5d/d0Zd1S )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 show 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>`.
    r   strc                 C  ,   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``
        XDG_DATA_HOME z~/.local/shareosenvirongetstrippath
expanduser_append_app_name_and_versionselfr   r   r   r   user_data_dir"      
zUnix.user_data_dirc                 C  s.   t jdd}| sdt j d}| |S )aY  
        :return: data directories shared by users (if `multipath <platformdirs.api.PlatformDirsABC.multipath>` is
         enabled and ``XDG_DATA_DIR`` 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``
        XDG_DATA_DIRSr   z/usr/local/sharez
/usr/share)r   r   r   r   pathsep_with_multi_pathr   r   r   r   site_data_dir-   s   
zUnix.site_data_dirr   c                   s<   | tj} js|dd } fdd|D }tj|S )Nr   r   c                   s   g | ]}  tj|qS r   )r   r   r   r   ).0pr   r   r   
<listcomp>>   s    z)Unix._with_multi_path.<locals>.<listcomp>)splitr   r!   	multipathjoin)r   r   	path_listr   r&   r   r"   :   s
   zUnix._with_multi_pathc                 C  r   )z
        :return: config directory tied to the user, e.g. ``~/.config/$appname/$version`` or
         ``$XDG_CONFIG_HOME/$appname/$version``
        XDG_CONFIG_HOMEr   z	~/.configr   r   r   r   r   user_config_dirA   r   zUnix.user_config_dirc                 C  s$   t jdd}| sd}| |S )a/  
        :return: config directories shared by users (if `multipath <platformdirs.api.PlatformDirsABC.multipath>`
         is enabled and ``XDG_DATA_DIR`` 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``
        XDG_CONFIG_DIRSr   z/etc/xdg)r   r   r   r   r"   r   r   r   r   site_config_dirL   s   
zUnix.site_config_dirc                 C  r   )z
        :return: cache directory tied to the user, e.g. ``~/.cache/$appname/$version`` or
         ``~/$XDG_CACHE_HOME/$appname/$version``
        XDG_CACHE_HOMEr   z~/.cacher   r   r   r   r   user_cache_dirY   r   zUnix.user_cache_dirc                 C  s
   |  dS )zM:return: cache directory shared by users, e.g. ``/var/tmp/$appname/$version``z/var/tmp)r   r&   r   r   r   site_cache_dird      
zUnix.site_cache_dirc                 C  r   )z
        :return: state directory tied to the user, e.g. ``~/.local/state/$appname/$version`` or
         ``$XDG_STATE_HOME/$appname/$version``
        XDG_STATE_HOMEr   z~/.local/stater   r   r   r   r   user_state_diri   r   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)r5   opinionr   r   r*   _optionally_create_directoryr   r   r   r   user_log_dirt   s
   
zUnix.user_log_dirc                 C  
   t ddS )zC:return: documents directory tied to the user, e.g. ``~/Documents``XDG_DOCUMENTS_DIRz~/Documents_get_user_media_dirr&   r   r   r   user_documents_dir}   r3   zUnix.user_documents_dirc                 C  r:   )zC:return: downloads directory tied to the user, e.g. ``~/Downloads``XDG_DOWNLOAD_DIRz~/Downloadsr<   r&   r   r   r   user_downloads_dir   r3   zUnix.user_downloads_dirc                 C  r:   )zA:return: pictures directory tied to the user, e.g. ``~/Pictures``XDG_PICTURES_DIRz
~/Picturesr<   r&   r   r   r   user_pictures_dir   r3   zUnix.user_pictures_dirc                 C  r:   )z=:return: videos directory tied to the user, e.g. ``~/Videos``XDG_VIDEOS_DIRz~/Videosr<   r&   r   r   r   user_videos_dir   r3   zUnix.user_videos_dirc                 C  r:   )z;:return: music directory tied to the user, e.g. ``~/Music``XDG_MUSIC_DIRz~/Musicr<   r&   r   r   r   user_music_dir   r3   zUnix.user_music_dirc                 C  r:   )z?:return: desktop directory tied to the user, e.g. ``~/Desktop``XDG_DESKTOP_DIRz	~/Desktopr<   r&   r   r   r   user_desktop_dir   r3   zUnix.user_desktop_dirc                 C  s^   t jdd}| s*tjdr$dt  }t|	 s#d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   freebsdopenbsd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 )al  
        :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
        fallback 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.
        rI   r   rJ   z/var/runz/run)r   r   r   r   rN   rO   rP   r   r   r   r   r   site_runtime_dir   s   
zUnix.site_runtime_dirr   c                 C     |  | jS )zd:return: data path shared by users. Only return first item, even if ``multipath`` is set to ``True``) _first_item_as_path_if_multipathr#   r&   r   r   r   site_data_path      zUnix.site_data_pathc                 C  rT   )zj:return: config path shared by the users. Only return first item, even if ``multipath`` is set to ``True``)rU   r/   r&   r   r   r   site_config_path   rW   zUnix.site_config_pathc                 C  rT   )ze:return: cache path shared by users. Only return first item, even if ``multipath`` is set to ``True``)rU   r2   r&   r   r   r   site_cache_path   rW   zUnix.site_cache_path	directoryc                 C  s   | j r|tjd }t|S )Nr   )r)   r(   r   r!   r   )r   rZ   r   r   r   rU      s   z%Unix._first_item_as_path_if_multipathN)r   r   )r   r   r   r   )r   r   )rZ   r   r   r   )__name__
__module____qualname____doc__propertyr   r#   r"   r-   r/   r1   r2   r5   r9   r>   r@   rB   rD   rF   rH   rR   rS   rV   rX   rY   rU   r   r   r   r   r      sT    




r   env_varr   fallback_tilde_pathc                 C  s6   t | }|d u rtj| d }|stj|}|S )Nr   )_get_user_dirs_folderr   r   r   r   r   r   )r`   ra   	media_dirr   r   r   r=      s   r=   key
str | Nonec                 C  s   t t jd }| rHt }| }|d|   W d   n1 s(w   Y  | |d vr5dS |d |  d}|	dt
jdS dS )zkReturn directory from user-dirs.dirs config file. See https://freedesktop.org/wiki/Software/xdg-user-dirs/.zuser-dirs.dirsz[top]
Ntop"z$HOME~)r   r   r-   rQ   r   openread_stringreadr   replacer   r   r   )rd   user_dirs_config_pathparserstreamr   r   r   r   rb      s   
rb   )r   r	   )r`   r   ra   r   r   r   )rd   r   r   re   )r^   
__future__r   r   rN   configparserr   pathlibr   apir   rO   r   r   r=   rb   __all__r   r   r   r   <module>   s     
 
G

