o
    {,h                     @   s   d dl mZ d dlmZ dZG dd deZddd	Zd
d Zdd Z	dd Z
dddZdddZdddZdddZdddZdS )    )	constants)default_storage)
add_messageget_messages	get_level	set_leveldebuginfosuccesswarningerrorMessageFailurec                   @   s   e Zd ZdS )r   N)__name__
__module____qualname__ r   r   Q/var/www/html/rh/venv/lib/python3.10/site-packages/django/contrib/messages/api.pyr      s    r    Fc                 C   sT   z| j }W n ty"   t| dstd| jj |stdY dS w ||||S )zK
    Attempt to add a message to the request using the 'messages' app.
    METAz?add_message() argument must be an HttpRequest object, not '%s'.z_You cannot add messages without installing django.contrib.messages.middleware.MessageMiddlewareN)	_messagesAttributeErrorhasattr	TypeError	__class__r   r   add)requestlevelmessage
extra_tagsfail_silentlymessagesr   r   r   r      s    

r   c                 C   s   t | dg S )ze
    Return the message storage on the request if it exists, otherwise return
    an empty list.
    r   )getattr)r   r   r   r   r   +   s   r   c                 C   s   t | dt| }|jS )z
    Return the minimum level of messages to be recorded.

    The default level is the ``MESSAGE_LEVEL`` setting. If this is not found,
    use the ``INFO`` level.
    r   )r!   r   r   )r   storager   r   r   r   3   s   r   c                 C   s   t | dsdS || j_dS )z
    Set the minimum level of messages to be recorded, and return ``True`` if
    the level was recorded successfully.

    If set to ``None``, use the default level (see the get_level() function).
    r   FT)r   r   r   )r   r   r   r   r   r   >   s   
r   c                 C      t | tj|||d dS )z'Add a message with the ``DEBUG`` level.r   r   N)r   r   DEBUGr   r   r   r   r   r   r   r   K      
r   c                 C   r#   )z&Add a message with the ``INFO`` level.r$   N)r   r   INFOr&   r   r   r   r	   V   r'   r	   c                 C   r#   )z)Add a message with the ``SUCCESS`` level.r$   N)r   r   SUCCESSr&   r   r   r   r
   a   r'   r
   c                 C   r#   )z)Add a message with the ``WARNING`` level.r$   N)r   r   WARNINGr&   r   r   r   r   l   r'   r   c                 C   r#   )z'Add a message with the ``ERROR`` level.r$   N)r   r   ERRORr&   r   r   r   r   w   r'   r   N)r   F)django.contrib.messagesr   django.contrib.messages.storager   __all__	Exceptionr   r   r   r   r   r   r	   r
   r   r   r   r   r   r   <module>   s    




