# Copyright (c) 2013 Michael Dowling # Copyright (c) 2017 Jared Dillard # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. import fnmatch import os import queue from datetime import datetime, timezone from multiprocessing import Manager from pathlib import Path from typing import Any, Dict, List, Optional from xml.etree import ElementTree from sphinx.application import Sphinx from sphinx.errors import ExtensionError from sphinx.util.logging import getLogger __version__ = "2.9.0" logger = getLogger(__name__) def setup(app: Sphinx) -> Dict[str, Any]: """ Sphinx extension setup function. It adds config values and connects Sphinx events to the sitemap builder. :param app: The Sphinx Application instance :return: A dict of Sphinx extension options """ app.add_config_value("site_url", default=None, rebuild="") app.add_config_value( "sitemap_url_scheme", default="{lang}{version}{link}", rebuild="" ) app.add_config_value("sitemap_locales", default=[], rebuild="") app.add_config_value("sitemap_filename", default="sitemap.xml", rebuild="") app.add_config_value("sitemap_excludes", default=[], rebuild="") app.add_config_value("sitemap_show_lastmod", default=False, rebuild="") app.add_config_value("sitemap_indent", default=0, rebuild="") try: app.add_config_value("html_baseurl", default=None, rebuild="") except BaseException: pass # install sphinx_last_updated_by_git extension if it exists if app.config.sitemap_show_lastmod: try: app.setup_extension("sphinx_last_updated_by_git") except ExtensionError as e: logger.warning( f"{e}", type="sitemap", subtype="configuration", ) app.config.sitemap_show_lastmod = False app.connect("builder-inited", record_builder_type) app.connect("html-page-context", add_html_link) app.connect("build-finished", create_sitemap) return { "parallel_read_safe": True, "parallel_write_safe": True, "version": __version__, } def get_locales(app: Sphinx) -> List[str]: """ Get a list of locales from the extension config or automatically detect based on Sphinx Application config. :param app: The Sphinx Application instance :return: A list of locales """ # Manually configured list of locales sitemap_locales: Optional[List[str]] = app.builder.config.sitemap_locales if sitemap_locales: # special value to add nothing -> use primary language only if sitemap_locales == [None]: return [] # otherwise, add each locale return [locale for locale in sitemap_locales] # Or autodetect locales locales = [] for locale_dir in app.builder.config.locale_dirs: locale_dir = os.path.join(app.confdir, locale_dir) if os.path.isdir(locale_dir): for locale in os.listdir(locale_dir): if os.path.isdir(os.path.join(locale_dir, locale)): locales.append(locale) return locales def record_builder_type(app: Sphinx): """ Determine if the Sphinx Builder is an instance of DirectoryHTMLBuilder and store that in the application environment. :param app: The Sphinx Application instance """ # builder isn't initialized in the setup so we do it here builder = getattr(app, "builder", None) if builder is None: return builder.env.is_directory_builder = type(builder).__name__ == "DirectoryHTMLBuilder" builder.env.app.sitemap_links = Manager().Queue() def is_excluded(sitemap_link: str, exclude_patterns: List[str]) -> bool: """ Check if a sitemap link should be excluded based on wildcard patterns. :param sitemap_link: The sitemap link to check :param exclude_patterns: List of wildcard patterns to match against :return: True if the link matches any exclude pattern, False otherwise """ return any(fnmatch.fnmatch(sitemap_link, pattern) for pattern in exclude_patterns) def hreflang_formatter(lang: str) -> str: """ Format the supplied locale code into a string that is compatible with `hreflang`. See also: - https://en.wikipedia.org/wiki/Hreflang#Common_Mistakes - https://github.com/readthedocs/readthedocs.org/pull/5638 :param lang: The locale string to format :return: The formatted locale string """ if "_" in lang: return lang.replace("_", "-") return lang def add_html_link(app: Sphinx, pagename: str, templatename, context, doctree): """ As each page is built, collect page names for the sitemap :param app: The Sphinx Application instance :param pagename: The current page being built """ env = app.builder.env if app.builder.config.html_file_suffix is None: file_suffix = ".html" else: file_suffix = app.builder.config.html_file_suffix last_updated = None if app.builder.config.sitemap_show_lastmod and pagename in env.git_last_updated: timestamp, show_sourcelink = env.git_last_updated[pagename] # TODO verify dates # TODO handle untracked pages (add option to use current timestamp?) if timestamp: utc_date = datetime.fromtimestamp(int(timestamp), timezone.utc) last_updated = utc_date.strftime("%Y-%m-%dT%H:%M:%SZ") # Support DirectoryHTMLBuilder path structure # where generated links between pages omit the index.html if env.is_directory_builder: # type: ignore if pagename == "index": sitemap_link = "" elif pagename.endswith("/index"): sitemap_link = pagename[:-6] + "/" else: sitemap_link = pagename + "/" else: sitemap_link = pagename + file_suffix if not is_excluded(sitemap_link, app.builder.config.sitemap_excludes): env.app.sitemap_links.put((sitemap_link, last_updated)) # type: ignore def create_sitemap(app: Sphinx, exception): """ Generates the sitemap.xml from the collected HTML page links. :param app: The Sphinx Application instance """ site_url = app.builder.config.site_url or app.builder.config.html_baseurl if site_url: site_url.rstrip("/") + "/" else: logger.warning( "sphinx-sitemap: html_baseurl is required in conf.py." "Sitemap not built.", type="sitemap", subtype="configuration", ) return if app.env.app.sitemap_links.empty(): # type: ignore logger.info( "sphinx-sitemap: No pages generated for %s" % app.config.sitemap_filename, type="sitemap", subtype="information", ) return ElementTree.register_namespace("xhtml", "http://www.w3.org/1999/xhtml") root = ElementTree.Element( "urlset", xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" ) locales = get_locales(app) if app.builder.config.version: version = app.builder.config.version + "/" else: version = "" while True: try: link, last_updated = app.env.app.sitemap_links.get_nowait() # type: ignore except queue.Empty: break url = ElementTree.SubElement(root, "url") scheme = app.config.sitemap_url_scheme if app.builder.config.language: lang = app.builder.config.language + "/" else: lang = "" # add page url ElementTree.SubElement(url, "loc").text = site_url + scheme.format( lang=lang, version=version, link=link ) # add page lastmode date if it exists if last_updated: ElementTree.SubElement(url, "lastmod").text = last_updated # add alternate language page urls for lang in locales: lang = lang + "/" ElementTree.SubElement( url, "{http://www.w3.org/1999/xhtml}link", rel="alternate", hreflang=hreflang_formatter(lang.rstrip("/")), href=site_url + scheme.format(lang=lang, version=version, link=link), ) filename = Path(app.outdir) / app.config.sitemap_filename if isinstance(app.config.sitemap_indent, int) and app.config.sitemap_indent > 0: ElementTree.indent(root, space=app.config.sitemap_indent * " ") ElementTree.ElementTree(root).write( filename, xml_declaration=True, encoding="utf-8", method="xml" ) logger.info( "sphinx-sitemap: %s was generated for URL %s in %s" % (app.config.sitemap_filename, site_url, filename), type="sitemap", subtype="information", )