3
g                 @   s   d dl Z d dlZd dlmZ d dlmZ d dlmZ ddlm	Z	 ej
jdrZd dl mZ ned	d
dZG dd de	Zeee dddZdgZdS )    N)ConfigParser)Path)Optional   )PlatformDirsABClinux)getuid)returnc               C   s   t dd S )Nzshould only be used on Linux)RuntimeError r   r   [/var/www/tester-filtro-web/env/lib/python3.6/site-packages/pip/_vendor/platformdirs/unix.pyr      s    r   c               @   s   e Zd ZdZeedddZeedddZeeddd	Zeedd
dZ	eedddZ
eedddZeedddZeedddZeedddZeedddZeedddZeedddZeedddZdS ) UnixaD  
    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>`.
    )r	   c             C   s,   t jjdd}|j s"t jjd}| j|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_dirc             C   s.   t jjdd}|j s$dt j d}| j|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``
        ZXDG_DATA_DIRSr   z/usr/local/sharez
/usr/share)r   r   r   r   pathsep_with_multi_path)r   r   r   r   r   site_data_dir(   s    zUnix.site_data_dir)r   r	   c                s<   |j tj} js|dd } fdd|D }tjj|S )Nr   r   c                s   g | ]} j tjj|qS r   )r   r   r   r   ).0p)r   r   r   
<listcomp>9   s    z)Unix._with_multi_path.<locals>.<listcomp>)splitr   r   	multipathjoin)r   r   	path_listr   )r   r   r   5   s
    zUnix._with_multi_pathc             C   s,   t jjdd}|j s"t jjd}| j|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	~/.config)r   r   r   r   r   r   r   )r   r   r   r   r   user_config_dir<   s    zUnix.user_config_dirc             C   s$   t jjdd}|j sd}| j|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``
        ZXDG_CONFIG_DIRSr   z/etc/xdg)r   r   r   r   r   )r   r   r   r   r   site_config_dirG   s    zUnix.site_config_dirc             C   s,   t jjdd}|j s"t jjd}| j|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~/.cache)r   r   r   r   r   r   r   )r   r   r   r   r   user_cache_dirT   s    zUnix.user_cache_dirc             C   s,   t jjdd}|j s"t jjd}| j|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/state)r   r   r   r   r   r   r   )r   r   r   r   r   user_state_dir_   s    zUnix.user_state_dirc             C   s   | j }| jrtjj|d}|S )zx
        :return: log directory tied to the user, same as `user_data_dir` if not opinionated else ``log`` in it
        log)r$   opinionr   r   r    )r   r   r   r   r   user_log_dirj   s    zUnix.user_log_dirc             C   s6   t d}|dkr2tjjddj }|s2tjjd}|S )zU
        :return: documents directory tied to the user, e.g. ``~/Documents``
        ZXDG_DOCUMENTS_DIRNr   z~/Documents)_get_user_dirs_folderr   r   r   r   r   r   )r   Zdocuments_dirr   r   r   user_documents_dirt   s    zUnix.user_documents_dirc             C   s,   t jjdd}|j s"dt  }| j|S )z
        :return: runtime directory tied to the user, e.g. ``/run/user/$(id -u)/$appname/$version`` or
         ``$XDG_RUNTIME_DIR/$appname/$version``
        ZXDG_RUNTIME_DIRr   z
/run/user/)r   r   r   r   r   r   )r   r   r   r   r   user_runtime_dir   s    zUnix.user_runtime_dirc             C   s   | j | 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   s    zUnix.site_data_pathc             C   s   | j | jS )zj:return: config path shared by the users. Only return first item, even if ``multipath`` is set to ``True``)r,   r#   )r   r   r   r   site_config_path   s    zUnix.site_config_path)	directoryr	   c             C   s   | j r|jtjd }t|S )Nr   )r   r   r   r   r   )r   r/   r   r   r   r,      s    z%Unix._first_item_as_path_if_multipathN)__name__
__module____qualname____doc__propertystrr   r   r   r"   r#   r$   r%   r(   r*   r+   r   r-   r.   r,   r   r   r   r   r      s2   




	
r   )keyr	   c             C   s   t jjt jd}t jj|rt }t|}|jd|j	   W dQ R X | |d kr\dS |d |  j
d}|jdt jjd}|S dS )zjReturn 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    r   r"   existsr   openread_stringreadr   replacer   )r6   Zuser_dirs_config_pathparserstreamr   r   r   r   r)      s    
r)   )r   sysconfigparserr   pathlibr   typingr   apir   platform
startswithr   intr   r5   r)   __all__r   r   r   r   <module>   s    