3
g.                 @   s   d 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
 ddd	d
ddddgZG dd deZG dd deZG dd	 d	eZG dd deZG dd
 d
ZG dd deZG dd deZdd ZdS )zH
Base file upload handler classes, and the built-in concrete subclasses
    N)BytesIO)settings)InMemoryUploadedFileTemporaryUploadedFile)import_stringUploadFileException
StopUploadSkipFileFileUploadHandlerTemporaryFileUploadHandlerMemoryFileUploadHandlerload_handlerStopFutureHandlersc               @   s   e Zd ZdZdS )r   z6
    Any error having to do with uploading files.
    N)__name__
__module____qualname____doc__ r   r   ]/var/www/tester-filtro-web/env/lib/python3.6/site-packages/django/core/files/uploadhandler.pyr      s   c               @   s"   e Zd ZdZdddZdd ZdS )	r   z=
    This exception is raised when an upload must abort.
    Fc             C   s
   || _ dS )z
        If ``connection_reset`` is ``True``, Django knows will halt the upload
        without consuming the rest of the upload. This will cause the browser to
        show a "connection reset" error.
        N)connection_reset)selfr   r   r   r   __init__   s    zStopUpload.__init__c             C   s   | j r
dS dS d S )Nz StopUpload: Halt current upload.z,StopUpload: Consume request data, then halt.)r   )r   r   r   r   __str__'   s    zStopUpload.__str__N)F)r   r   r   r   r   r   r   r   r   r   r      s   
c               @   s   e Zd ZdZdS )r	   zX
    This exception is raised by an upload handler that wants to skip a given file.
    N)r   r   r   r   r   r   r   r   r	   .   s   c               @   s   e Zd ZdZdS )r   z
    Upload handlers that have handled a file and do not want future handlers to
    run should raise this exception instead of returning None.
    N)r   r   r   r   r   r   r   r   r   5   s   c               @   sR   e Zd ZdZdZdddZddd	Zdd
dZdd Zdd Z	dd Z
dd ZdS )r
   z3
    Base class for streaming upload handlers.
    @      
   Nc             C   s(   d | _ d | _d | _d | _d | _|| _d S )N)	file_namecontent_typecontent_lengthcharsetcontent_type_extrarequest)r   r!   r   r   r   r   C   s    zFileUploadHandler.__init__c             C   s   dS )a  
        Handle the raw input from the client.

        Parameters:

            :input_data:
                An object that supports reading via .read().
            :META:
                ``request.META``.
            :content_length:
                The (integer) value of the Content-Length header from the
                client.
            :boundary: The boundary from the Content-Type header. Be sure to
                prepend two '--'.
        Nr   )r   
input_dataMETAr   boundaryencodingr   r   r   handle_raw_inputK   s    z"FileUploadHandler.handle_raw_inputc             C   s(   || _ || _|| _|| _|| _|| _dS )z
        Signal that a new file has been started.

        Warning: As with any data from the client, you should not trust
        content_length (and sometimes won't even get it).
        N)
field_namer   r   r   r   r    )r   r'   r   r   r   r   r    r   r   r   new_file]   s    zFileUploadHandler.new_filec             C   s   t ddS )z{
        Receive data from the streamed upload parser. ``start`` is the position
        in the file of the chunk.
        zJsubclasses of FileUploadHandler must provide a receive_data_chunk() methodN)NotImplementedError)r   raw_datastartr   r   r   receive_data_chunkk   s    z$FileUploadHandler.receive_data_chunkc             C   s   t ddS )z
        Signal that a file has completed. File size corresponds to the actual
        size accumulated by all the chunks.

        Subclasses should return a valid ``UploadedFile`` object.
        zEsubclasses of FileUploadHandler must provide a file_complete() methodN)r)   )r   	file_sizer   r   r   file_completer   s    zFileUploadHandler.file_completec             C   s   dS )z
        Signal that the upload is complete. Subclasses should perform cleanup
        that is necessary for this handler.
        Nr   )r   r   r   r   upload_complete{   s    z!FileUploadHandler.upload_completec             C   s   dS )z
        Signal that the upload was interrupted. Subclasses should perform
        cleanup that is necessary for this handler.
        Nr   )r   r   r   r   upload_interrupted   s    z$FileUploadHandler.upload_interruptedi   i   )N)N)NN)r   r   r   r   
chunk_sizer   r&   r(   r,   r.   r/   r0   r   r   r   r   r
   =   s   


	c                   s8   e Zd ZdZ fddZdd Zdd Zdd	 Z  ZS )
r   zA
    Upload handler that streams data into a temporary file.
    c                s,   t  j|| t| j| jd| j| j| _dS )zK
        Create the file object to append to as data is coming in.
        r   N)superr(   r   r   r   r   r    file)r   argskwargs)	__class__r   r   r(      s    z#TemporaryFileUploadHandler.new_filec             C   s   | j j| d S )N)r3   write)r   r*   r+   r   r   r   r,      s    z-TemporaryFileUploadHandler.receive_data_chunkc             C   s   | j jd || j _| j S )Nr   )r3   seeksize)r   r-   r   r   r   r.      s    z(TemporaryFileUploadHandler.file_completec             C   sF   t | drB| jj }y| jj  tj| W n tk
r@   Y nX d S )Nr3   )hasattrr3   Ztemporary_file_pathcloseosremoveFileNotFoundError)r   Ztemp_locationr   r   r   r0      s    


z-TemporaryFileUploadHandler.upload_interrupted)	r   r   r   r   r(   r,   r.   r0   __classcell__r   r   )r6   r   r      s
   c                   s:   e Zd ZdZdddZ fddZdd Zd	d
 Z  ZS )r   zS
    File upload handler to stream uploads into memory (used for small files).
    Nc             C   s   |t jk| _dS )zf
        Use the content_length to signal whether or not this handler should be
        used.
        N)r   ZFILE_UPLOAD_MAX_MEMORY_SIZE	activated)r   r"   r#   r   r$   r%   r   r   r   r&      s    z(MemoryFileUploadHandler.handle_raw_inputc                s&   t  j|| | jr"t | _t d S )N)r2   r(   r@   r   r3   r   )r   r4   r5   )r6   r   r   r(      s    z MemoryFileUploadHandler.new_filec             C   s   | j r| jj| n|S dS )z!Add the data to the BytesIO file.N)r@   r3   r7   )r   r*   r+   r   r   r   r,      s    z*MemoryFileUploadHandler.receive_data_chunkc          	   C   s8   | j s
dS | jjd t| j| j| j| j|| j| jdS )z2Return a file object if this handler is activated.Nr   )r3   r'   namer   r9   r   r    )	r@   r3   r8   r   r'   r   r   r   r    )r   r-   r   r   r   r.      s    z%MemoryFileUploadHandler.file_complete)N)	r   r   r   r   r&   r(   r,   r.   r?   r   r   )r6   r   r      s
   
	c             O   s   t | ||S )a=  
    Given a path to a handler, return an instance of that handler.

    E.g.::
        >>> from django.http import HttpRequest
        >>> request = HttpRequest()
        >>> load_handler('django.core.files.uploadhandler.TemporaryFileUploadHandler', request)
        <TemporaryFileUploadHandler object at 0x...>
    )r   )pathr4   r5   r   r   r   r      s    
)r   r<   ior   Zdjango.confr   Zdjango.core.files.uploadedfiler   r   Zdjango.utils.module_loadingr   __all__	Exceptionr   r   r	   r   r
   r   r   r   r   r   r   r   <module>   s    M,