2022-02-17 19:20:36 +03:00
|
|
|
# Copyright (c) 2016-2021 Martin Donath <martin.donath@squidfunk.com>
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
# IN THE SOFTWARE.
|
|
|
|
|
2022-08-27 11:59:37 +03:00
|
|
|
import logging
|
|
|
|
|
|
|
|
from mkdocs.commands.build import DuplicateFilter
|
2022-02-17 19:20:36 +03:00
|
|
|
from mkdocs.contrib.search import SearchPlugin as BasePlugin
|
|
|
|
from mkdocs.contrib.search.search_index import SearchIndex as BaseIndex
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Class
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
# Search plugin with custom search index
|
|
|
|
class SearchPlugin(BasePlugin):
|
|
|
|
|
|
|
|
# Override to use a custom search index
|
|
|
|
def on_pre_build(self, config):
|
|
|
|
super().on_pre_build(config)
|
|
|
|
self.search_index = SearchIndex(**self.config)
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
# Search index with support for additional fields
|
|
|
|
class SearchIndex(BaseIndex):
|
|
|
|
|
|
|
|
# Override to add additional fields for each page
|
|
|
|
def add_entry_from_context(self, page):
|
|
|
|
index = len(self._entries)
|
|
|
|
super().add_entry_from_context(page)
|
|
|
|
|
2022-08-27 11:59:37 +03:00
|
|
|
# Add document tags, if any
|
2022-06-22 18:16:54 +03:00
|
|
|
if page.meta.get("tags"):
|
2022-08-27 11:59:37 +03:00
|
|
|
if type(page.meta["tags"]) is list:
|
2022-10-19 19:25:46 +03:00
|
|
|
entry = self._entries[index]
|
2022-08-27 11:59:37 +03:00
|
|
|
entry["tags"] = [
|
|
|
|
str(tag) for tag in page.meta["tags"]
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
log.warning(
|
|
|
|
"Skipping 'tags' due to invalid syntax [%s]: %s",
|
2022-09-19 00:18:11 +03:00
|
|
|
page.file.src_uri,
|
2022-08-27 11:59:37 +03:00
|
|
|
page.meta["tags"]
|
|
|
|
)
|
2022-06-02 18:20:33 +03:00
|
|
|
|
|
|
|
# Add document boost for search
|
|
|
|
if "search" in page.meta:
|
|
|
|
search = page.meta["search"]
|
|
|
|
if "boost" in search:
|
2022-10-19 19:25:46 +03:00
|
|
|
for entry in self._entries[index:]:
|
|
|
|
entry["boost"] = search["boost"]
|
2022-08-27 11:59:37 +03:00
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Data
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
# Set up logging
|
|
|
|
log = logging.getLogger("mkdocs")
|
|
|
|
log.addFilter(DuplicateFilter())
|