
    Kxh                        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          rd dlmZ nddZ G d de	          ZddZdgZdS )    )annotationsN)ConfigParser)Path   )PlatformDirsABClinux)getuidreturnintc                      t          d          )Nzshould only be used on Linux)RuntimeError     P/var/www/html/what/lib/python3.11/site-packages/pip/_vendor/platformdirs/unix.pyr	   r	      s    9:::r   c                  *   e Zd ZdZedd            Zedd            ZddZedd            Zedd	            Z	edd
            Z
edd            Zedd            Zedd            Zedd            Zedd            Zedd            Z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
   strc                    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   s     r   user_data_dirzUnix.user_data_dir   sS     z~~or22zz|| 	87%%&677D00666r   c                    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   s     r   site_data_dirzUnix.site_data_dir)   sO     z~~or22zz|| 	=<bj<<<D$$T***r   r   c                     |                     t          j                  } j        s
|dd         } fd|D             }t          j                            |          S )Nr   r   c                t    g | ]4}                     t          j                            |                    5S r   )r   r   r   r   ).0pr    s     r   
<listcomp>z)Unix._with_multi_path.<locals>.<listcomp>:   s8    aaaRST66rw7I7I!7L7LMMaaar   )splitr   r$   	multipathjoin)r    r   	path_lists   `  r   r%   zUnix._with_multi_path6   s[    JJrz**	~ 	'!!A#IaaaaW`aaa	zy)))r   c                    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``
        XDG_CONFIG_HOMEr   z	~/.configr   r   s     r   user_config_dirzUnix.user_config_dir=   sS     z~~/44zz|| 	37%%k22D00666r   c                    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   s     r   site_config_dirzUnix.site_config_dirH   sC     z~~/44zz|| 	D$$T***r   c                    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``
        XDG_CACHE_HOMEr   z~/.cacher   r   s     r   user_cache_dirzUnix.user_cache_dirU   sS     z~~.33zz|| 	27%%j11D00666r   c                    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``
        XDG_STATE_HOMEr   z~/.local/stater   r   s     r   user_state_dirzUnix.user_state_dir`   sT     z~~.33zz|| 	87%%&677D00666r   c                b    | j         }| j        r t          j                            |d          }|S )zy
        :return: log directory tied to the user, same as `user_state_dir` if not opinionated else ``log`` in it
        log)r;   opinionr   r   r.   r   s     r   user_log_dirzUnix.user_log_dirk   s0    
 "< 	-7<<e,,Dr   c                    t          d          }|St          j                            dd                                          }|st          j                            d          }|S )zU
        :return: documents directory tied to the user, e.g. ``~/Documents``
        XDG_DOCUMENTS_DIRNr   z~/Documents)_get_user_dirs_folderr   r   r   r   r   r   )r    documents_dirs     r   user_documents_dirzUnix.user_documents_diru   s^    
 ..ABB JNN+>CCIIKKM  B " 2 2= A Ar   c                    t           j                            dd          }|                                sdt	                       }|                     |          S )z
        :return: runtime directory tied to the user, e.g. ``/run/user/$(id -u)/$appname/$version`` or
         ``$XDG_RUNTIME_DIR/$appname/$version``
        XDG_RUNTIME_DIRr   z
/run/user/)r   r   r   r   r	   r   r   s     r   user_runtime_dirzUnix.user_runtime_dir   sO     z~~/44zz|| 	+***D00666r   r   c                6    |                      | 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    s    r   site_data_pathzUnix.site_data_path   s     44T5GHHHr   c                6    |                      | j                  S )zj:return: config path shared by the users. Only return first item, even if ``multipath`` is set to ``True``)rI   r5   rJ   s    r   site_config_pathzUnix.site_config_path   s     44T5IJJJr   	directoryc                x    | j         r%|                    t          j                  d         }t	          |          S )Nr   )r-   r,   r   r$   r   )r    rN   s     r   rI   z%Unix._first_item_as_path_if_multipath   s0    > 	7!
33A6IIr   N)r
   r   )r   r   r
   r   )r
   r   )rN   r   r
   r   )__name__
__module____qualname____doc__propertyr!   r&   r%   r2   r5   r8   r;   r?   rD   rG   rK   rM   rI   r   r   r   r   r      s       	 	 7 7 7 X7 
+ 
+ 
+ X
+* * * * 7 7 7 X7 
+ 
+ 
+ X
+ 7 7 7 X7 7 7 7 X7    X 
 
 
 X
 7 7 7 X7 I I I XI K K K XK     r   r   keyr   
str | Nonec                (   t           j                            t                      j        d          }t           j                            |          rt                      }t          |          5 }|                    d|	                                            ddd           n# 1 swxY w Y   | |d         vrdS |d         |          
                    d          }|                    dt           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   r2   existsr   openread_stringreadr   replacer   )rU   user_dirs_config_pathparserstreamr   s        r   rB   rB      s%   GLL)?AQRR	w~~+,, '(( 	:F888999	: 	: 	: 	: 	: 	: 	: 	: 	: 	: 	: 	: 	: 	: 	: fUm##4e}S!'',,||GRW%7%7%<%<==4s   .+B%%B),B))r
   r   )rU   r   r
   rV   )
__future__r   r   sysconfigparserr   pathlibr   apir   platform
startswithr	   r   rB   __all__r   r   r   <module>rk      s    " " " " " " 				 



 % % % % % %                  <7## ;; ; ; ;I I I I I? I I IX   , r   