
    -_g%                     2    d dl mZ d dlmZ  G d de      Zy)    )SoSCleanerParser)SoSUsernameMapc                   8     e Zd ZdZdZdZg Zg f fd	Zd Z xZ	S )SoSUsernameParsera  Parser for obfuscating usernames within an sos report archive.

    Note that this parser does not rely on regex matching directly, like most
    other parsers do. Instead, usernames are discovered via scraping the
    collected output of lastlog. As such, we do not discover new usernames
    later on, and only usernames present in lastlog output will be obfuscated,
    and those passed via the --usernames option if one is provided.
    zUsername Parserusername_mapc                 D    t               | _        t        |   ||       y )N)r   mappingsuper__init__)selfconfigskip_cleaning_files	__class__s      E/usr/lib/python3/dist-packages/sos/cleaner/parsers/username_parser.pyr   zSoSUsernameParser.__init__   s    %'!45    c                 
    |dfS )Nr    )r   lines     r   _parse_linezSoSUsernameParser._parse_line!   s    Qwr   )
__name__
__module____qualname____doc__namemap_file_keyregex_patternsr   r   __classcell__)r   s   @r   r   r      s&     D!LN35 6r   r   N)sos.cleaner.parsersr   !sos.cleaner.mappings.username_mapr   r   r   r   r   <module>r       s    1 <( r   