3
gf	                 @   s`   d dl mZ d dlmZ d dlmZ d dlmZ d dlm	Z	 G dd deZ
G dd	 d	e
Zd
S )    )apps)GeometryField)Sitemap)models)reversec               @   s@   e Zd ZdZdZdddZdd Zdd	d
Zdd Zdd Z	dS )
KMLSitemapz1
    A minimal hook to produce KML sitemaps.
    ZkmlNc             C   s   | j || _d S )N)_build_kml_sources	locations)selfr	    r   ]/var/www/tester-filtro-web/env/lib/python3.6/site-packages/django/contrib/gis/sitemaps/kml.py__init__   s    zKMLSitemap.__init__c             C   s   g }|dkrt j }x|D ]}t|tjjrdxl|jjD ](}t|tr6|j	|jj
|jj|jf q6W qt|ttfrt|dkrtd|j	| qtdqW |S )z
        Go through the given sources and return a 3-tuple of the application
        label, module name, and field name of every GeometryField encountered
        in the sources.

        If no sources are provided, then all models.
        N   z?Must specify a 3-tuple of (app_label, module_name, field_name).z)KML Sources must be a model or a 3-tuple.)r   Z
get_models
isinstancer   baseZ	ModelBaseZ_metafieldsr   appendZ	app_labelZ
model_namenamelisttuplelen
ValueError	TypeError)r
   sourcesZkml_sourcessourcefieldr   r   r   r      s     


zKMLSitemap._build_kml_sources   c             C   s.   t j| |||d}x|D ]}| j|d< qW |S )z|
        This method is overridden so the appropriate `geo_format` attribute
        is placed on each URL element.
        )pagesiteprotocol
geo_format)r   get_urlsr    )r
   r   r   r   urlsurlr   r   r   r!   -   s    
zKMLSitemap.get_urlsc             C   s   | j S )N)r	   )r
   r   r   r   items7   s    zKMLSitemap.itemsc             C   s&   t d| j |d |d |d ddS )Nz$django.contrib.gis.sitemaps.views.%sr   r      )labelmodel
field_name)kwargs)r   r    )r
   objr   r   r   location:   s
    zKMLSitemap.location)N)r   NN)
__name__
__module____qualname____doc__r    r   r   r!   r$   r+   r   r   r   r   r      s   


r   c               @   s   e Zd ZdZdS )
KMZSitemapZkmzN)r,   r-   r.   r    r   r   r   r   r0   E   s   r0   N)Zdjango.appsr   Zdjango.contrib.gis.db.modelsr   Zdjango.contrib.sitemapsr   Z	django.dbr   Zdjango.urlsr   r   r0   r   r   r   r   <module>   s   =