Source code for MangAdventure.sitemaps

"""Miscellaneous sitemaps."""

from typing import Tuple

from django.contrib.sitemaps import Sitemap
from django.urls import reverse


[docs]class MiscSitemap(Sitemap): """Sitemap for miscellaneous pages."""
[docs] def items(self) -> Tuple[str, ...]: """ Get a tuple of the sitemap's items. :return: A tuple of page names. """ return ('index', 'search', 'reader:directory', 'info', 'privacy')
[docs] def location(self, item: str) -> str: """ Get the location of the item. :param item: A page name. :return: The URL of the page. """ return reverse(item)
[docs] def priority(self, item: str) -> float: """ Get the priority of the item. :param item: A page name. :return: The priority of the page. """ return 0.8 if self._is_reader(item) else 0.5
[docs] def changefreq(self, item: str) -> str: """ Get the change frequency of the item. :param item: A page name. :return: The change frequency of the page. """ return 'daily' if self._is_reader(item) else 'never'
@staticmethod def _is_reader(item: str) -> bool: return item == 'index' or item == 'reader:directory'
__all__ = ['MiscSitemap']