o
    UjM                     @  s*  d Z ddlmZ dZdgZddlmZ ddlZddlm	Z	m
Z
mZmZmZmZmZmZmZmZmZ ddlmZmZmZmZmZmZ dd	lmZmZ dd
lmZm Z m!Z!m"Z" ddl#m$Z$ ersddl%m&Z& ddlm'Z' ddl(m)Z)m*Z*m+Z+ dZ,e
ee-e-f e-e-gdf Z.G dd deeZ/G dd de!Z0dS )zCUse the HTMLParser library to parse HTML files that aren't too bad.    )annotationsMITHTMLParserTreeBuilder)
HTMLParserN)AnyCallablecastDictIterableListOptionalTYPE_CHECKINGTupleTypeUnion)AttributeDictCDataCommentDeclarationDoctypeProcessingInstruction)EntitySubstitutionUnicodeDammit)DetectsXMLParsedAsHTMLHTMLHTMLTreeBuilderSTRICTParserRejectedMarkup)BeautifulSoup)NavigableString)	_Encoding
_Encodings
_RawMarkupzhtml.parserc                   @  s   e Zd ZU dZded< dZded< 	 edd;ddZded< ded< ded< d<ddZd=ddZ	d>d?dd Z	d>d@d"d#Z
dAd%d&Zed'Zed(ZedBd+d,ZdCd-d.ZdCd/d0ZdAd1d2ZdDd4d5ZdAd6d7ZdAd8d9Zd:S )EBeautifulSoupHTMLParserreplacestrREPLACEignoreIGNOREon_duplicate_attributesoupr   argsr   r+   &Union[str, _DuplicateAttributeHandler]kwargsc                O  s@   || _ || _|jj| _tj| g|R i | g | _|   d S N)r,   r+   builderattribute_dict_classr   __init__already_closed_empty_element_initialize_xml_detector)selfr,   r+   r-   r/    r7   P/opt/telega-widget/.venv/lib/python3.10/site-packages/bs4/builder/_htmlparser.pyr3   U   s   
	z BeautifulSoupHTMLParser.__init__z	List[str]r4   messagereturnNonec                 C  s   t |r0   r   )r6   r9   r7   r7   r8   errorp   s   zBeautifulSoupHTMLParser.errortagattrsList[Tuple[str, Optional[str]]]c                 C  s"   | j ||dd | j|dd dS )zHandle an incoming empty-element tag.

        html.parser only calls this method when the markup looks like
        <tag/>.
        F)handle_empty_elementcheck_already_closedN)handle_starttaghandle_endtag)r6   r=   r>   r7   r7   r8   handle_startendtag   s   z*BeautifulSoupHTMLParser.handle_startendtagTr@   boolc                 C  s   |   }|D ]3\}}|du rd}||v r5| j}|| jkrq|d| jfv r)|||< qtt|}|||| q|||< q| jjjrF| 	 \}}	nd }}	| jj
|dd|||	d}
|
durl|
jrl|rl| j|dd | j| | jdu rx| | dS dS )zHandle an opening tag, e.g. '<tag>'

        :param handle_empty_element: True if this tag is known to be
            an empty-element tag (i.e. there is not expected to be any
            closing tag).
        N )
sourceline	sourceposFrA   )r2   r+   r)   r'   r   _DuplicateAttributeHandlerr,   r1   store_line_numbersgetposrC   is_empty_elementrD   r4   append_root_tag_name_root_tag_encountered)r6   r=   r>   r@   	attr_dictkeyvalueon_duperH   rI   tagObjr7   r7   r8   rC      s2   






z'BeautifulSoupHTMLParser.handle_starttagrB   c                 C  s.   |r|| j v r| j | dS | j| dS )zHandle a closing tag, e.g. '</tag>'

        :param tag: A tag name.
        :param check_already_closed: True if this tag is expected to
           be the closing portion of an empty-element tag,
           e.g. '<tag></tag>'.
        N)r4   remover,   rD   )r6   r=   rB   r7   r7   r8   rD      s   	z%BeautifulSoupHTMLParser.handle_endtagdatac                 C  s   | j | dS )z4Handle some textual data that shows up between tags.N)r,   handle_datar6   rW   r7   r7   r8   rX      s   z#BeautifulSoupHTMLParser.handle_dataz^([0-9]+)(.*)z^([0-9a-f]+)(.*)nameTuple[str, bool, str]c           	      C  s   d}d}d}d}| j }|ds|dr |dd }d}| j}d}zt||}W n! tyJ   ||}|durHt| d	 |}| d }Y nw |du rTd}|}nt|\}}|||fS )
a  Convert a numeric character reference into an actual character.

        :param name: The number of the character reference, as
          obtained by html.parser

        :return: A 3-tuple (dereferenced, replacement_added,
          extra_data). `dereferenced` is the dereferenced character
          reference, or the empty string if there was no
          reference. `replacement_added` is True if the reference
          could only be dereferenced by replacing content with U+FFFD
          REPLACEMENT CHARACTER. `extra_data` is a portion of data
          following the character reference, which was deemed to be
          normal data and not part of the reference at all.
        rG   F
   xX   N   r   )	&_DECIMAL_REFERENCE_WITH_FOLLOWING_DATA
startswith"_HEX_REFERENCE_WITH_FOLLOWING_DATAint
ValueErrorsearchgroupsr   numeric_character_reference)	clsrZ   dereferencedreplacement_added
extra_databasereg	real_namematchr7   r7   r8   (_dereference_numeric_character_reference   s0   

z@BeautifulSoupHTMLParser._dereference_numeric_character_referencec                 C  sH   |  |\}}}|rd| j_|dur| | |dur"| | dS dS )zHandle a numeric character reference by converting it to the
        corresponding Unicode character and treating it as textual
        data.

        :param name: Character number, possibly in hexadecimal.
        TN)rq   r,   contains_replacement_charactersrX   )r6   rZ   rj   rk   rl   r7   r7   r8   handle_charref"  s   
z&BeautifulSoupHTMLParser.handle_charrefc                 C  s0   t j|}|dur|}nd| }| | dS )zHandle a named entity reference by converting it to the
        corresponding Unicode character(s) and treating it as textual
        data.

        :param name: Name of the entity reference.
        Nz&%s)r   HTML_ENTITY_TO_CHARACTERgetrX   )r6   rZ   	characterrW   r7   r7   r8   handle_entityref1  s
   z(BeautifulSoupHTMLParser.handle_entityrefc                 C  s&   | j   | j | | j t dS )zOHandle an HTML comment.

        :param data: The text of the comment.
        N)r,   endDatarX   r   rY   r7   r7   r8   handle_commentD  s   
z&BeautifulSoupHTMLParser.handle_commentdeclc                 C  s6   | j   |tdd }| j | | j t dS )zYHandle a DOCTYPE declaration.

        :param data: The text of the declaration.
        zDOCTYPE N)r,   rx   lenrX   r   )r6   rz   r7   r7   r8   handle_declM  s   
z#BeautifulSoupHTMLParser.handle_declc                 C  sN   |  drt}|tdd }nt}| j  | j| | j| dS )z{Handle a declaration of unknown type -- probably a CDATA block.

        :param data: The text of the declaration.
        zCDATA[N)upperrb   r   r{   r   r,   rx   rX   )r6   rW   ri   r7   r7   r8   unknown_declW  s   
z$BeautifulSoupHTMLParser.unknown_declc                 C  s0   | j   | j | | | | j t dS )z\Handle a processing instruction.

        :param data: The text of the instruction.
        N)r,   rx   rX   _document_might_be_xmlr   rY   r7   r7   r8   	handle_pif  s   

z!BeautifulSoupHTMLParser.handle_piN)r,   r   r-   r   r+   r.   r/   r   )r9   r&   r:   r;   )r=   r&   r>   r?   r:   r;   )T)r=   r&   r>   r?   r@   rF   r:   r;   )r=   r&   rB   rF   r:   r;   )rW   r&   r:   r;   )rZ   r&   r:   r[   )rZ   r&   r:   r;   )rz   r&   r:   r;   )__name__
__module____qualname__r'   __annotations__r)   r3   r<   rE   rC   rD   rX   recompilera   rc   classmethodrq   rs   rw   ry   r|   r~   r   r7   r7   r7   r8   r$   >   s2   
 

>



6


	

r$   c                      s   e Zd ZU dZdZded< dZded< eZded< ee	e
gZd	ed
< ded< dZded< 		d&d' fddZ			d(d)dd Zefd*d$d%Z  ZS )+r   zA Beautiful soup `bs4.builder.TreeBuilder` that uses the
    :py:class:`html.parser.HTMLParser` parser, found in the Python
    standard library.

    FrF   is_xmlT	picklabler&   NAMEzIterable[str]featuresz$Tuple[Iterable[Any], Dict[str, Any]]parser_argsTRACKS_LINE_NUMBERSNOptional[Iterable[Any]]parser_kwargsOptional[Dict[str, Any]]r/   r   c                   sp   t  }dD ]}||v r||}|||< qtt| jdi | |p#g }|p'i }|| d|d< ||f| _dS )a  Constructor.

        :param parser_args: Positional arguments to pass into
            the BeautifulSoupHTMLParser constructor, once it's
            invoked.
        :param parser_kwargs: Keyword arguments to pass into
            the BeautifulSoupHTMLParser constructor, once it's
            invoked.
        :param kwargs: Keyword arguments for the superclass constructor.
        r*   Fconvert_charrefsNr7   )dictpopsuperr   r3   updater   )r6   r   r   r/   extra_parser_kwargsargrS   	__class__r7   r8   r3     s   

zHTMLParserTreeBuilder.__init__markupr#   user_specified_encodingOptional[_Encoding]document_declared_encodingexclude_encodingsOptional[_Encodings]r:   DIterable[Tuple[str, Optional[_Encoding], Optional[_Encoding], bool]]c                 c  s    t |tr|dddfV  dS g }|r|| g }|r!|| t|||d|d}|jdu r3td|j|j|j|jfV  dS )a2  Run any preliminary steps necessary to make incoming markup
        acceptable to the parser.

        :param markup: Some markup -- probably a bytestring.
        :param user_specified_encoding: The user asked to try this encoding.
        :param document_declared_encoding: The markup itself claims to be
            in this encoding.
        :param exclude_encodings: The user asked _not_ to try any of
            these encodings.

        :yield: A series of 4-tuples: (markup, encoding, declared encoding,
             has undergone character replacement)

            Each 4-tuple represents a strategy for parsing the document.
            This TreeBuilder uses Unicode, Dammit to convert the markup
            into Unicode, so the ``markup`` element of the tuple will
            always be a string.
        NFT)known_definite_encodingsuser_encodingsis_htmlr   zPCould not convert input to Unicode, and html.parser will not accept bytestrings.)	
isinstancer&   rN   r   unicode_markupr   original_encodingdeclared_html_encodingrr   )r6   r   r   r   r   r   r   dammitr7   r7   r8   prepare_markup  s4   




z$HTMLParserTreeBuilder.prepare_markup_parser_classtype[BeautifulSoupHTMLParser]r;   c              
   C  s   | j \}}t|tsJ | jdusJ || jg|R i |}z|| |  W n ty: } zt|d}~ww g |_dS )z
        :param markup: The markup to feed into the parser.
        :param _parser_class: An HTMLParser subclass to use. This is only intended for use in unit tests.
        N)	r   r   r&   r,   feedcloseAssertionErrorr   r4   )r6   r   r   r-   r/   parserer7   r7   r8   r     s   


zHTMLParserTreeBuilder.feed)NN)r   r   r   r   r/   r   )NNN)
r   r#   r   r   r   r   r   r   r:   r   )r   r#   r   r   r:   r;   )r   r   r   __doc__r   r   r   
HTMLPARSERr   r   r   r   r   r3   r   r$   r   __classcell__r7   r7   r   r8   r   q  s    
 !H)1r   
__future__r   __license____all__html.parserr   r   typingr   r   r   r	   r
   r   r   r   r   r   r   bs4.elementr   r   r   r   r   r   
bs4.dammitr   r   bs4.builderr   r   r   r   bs4.exceptionsr   bs4r   r    bs4._typingr!   r"   r#   r   r&   rJ   r$   r   r7   r7   r7   r8   <module>   s,   4   5