foliantcontrib.elasticsearch

Elasticsearch integration extension for Foliant.


License
MIT
Install
pip install foliantcontrib.elasticsearch==1.0.4

Documentation

Elasticsearch Extension

This extension allows to integrate Foliant-managed documentation projects with Elasticsearch search engine.

The main part of this extension is a preprocessor that prepares data for a search index.

Also this extension provides a simple working example of a client-side Web application that may be used to perform searching. By editing HTML, CSS and JS code you may customize it according to your needs.

Installation

To install the preprocessor, run the command:

$ pip install foliantcontrib.elasticsearch

To use an example of a client-side Web application for searching, download these HTML, CSS, and JS files and open the file index.html in your Web browser.

Config

To enable the preprocessor, add elasticsearch to preprocessors section in the project config:

preprocessors:
    - elasticsearch

The preprocessor has a number of options with the following default values:

preprocessors:
    - elasticsearch:
        es_url: 'http://127.0.0.1:9200/'
        index_name: ''
        index_copy_name: ''
        index_properties: {}
        actions:
            - delete
            - create
        use_chapters: true
        format: plaintext
        escape_html: true
        url_transform:
            - '\/?index\.md$': '/'
            - '\.md$': '/'
            - '^([^\/]+)': '/\g<1>'
        require_env: false
        targets: []

es_url : Elasticsearch API URL.

index_name : Name of the index. Your index must have an explicitly specified name, otherwise (by default) API URL will be invalid.

index_copy_name : Name of the index copy when the copy action is used; see below. If the index_copy_name is not set explicitly, and if the index_name is specified, the index_copy_name value will be formed as the index_name value with the _copy string appended to the end.

index_properties : Settings and other properties that should be used when creating an index. If not specified (by default), the default Elasticsearch settings will be used. More details are described below.

actions : Sequence of actions that the preprocessor should to perform. Available item values are: delete, create, copy. By default, the actions delete and create are performed since in most cases it’s needed to remove and then fully rebuild the index. The copy action is used to duplicate an index, i.e to create a copy of the index index_name with the name index_copy_name. This action may be useful when a common search index is created for multiple Foliant projects, and the index may remain incomplete during for a long time during their building. The copy action is not atomic. To perform it, the preprocessor:

* marks the source index `index_name` as read-only;
* deletes the target index `index_copy_name` if it exists;
* clones the source index `index_name` and thereby creates the target index `index_copy_name`;
* unmarks the source index `index_name` as read-only;
* also unmarks the target index `index_copy_name` as read-only, since the target index inherits the settings of the source one.

use_chapters : If set to true (by default), the preprocessor applies only to the files that are mentioned in the chapters section of the project config. Otherwise, the preprocessor applies to all of the files of the project.

format : Format that the source Markdown content should be converted to before adding to the index; available values are: plaintext (by default), html, markdown (for no conversion).

escape_html : If set to true (by default), HTML syntax constructions in the content converted to plaintext will be escaped by replacing & with &amp;, < with &lt;, > with &gt;, and " with &quot;.

url_transform : Sequence of rules to transform local paths of source Markdown files into URLs of target pages. Each rule should be a dictionary. Its data is passed to the re.sub() method: key as the pattern argument, and value as the repl argument. The local path (possibly previously transformed) to the source Markdown file relative to the temporary working directory is passed as the string argument. The default value of the url_transform option is designed to be used to build static websites with MkDocs backend.

require_env : If set to true, the FOLIANT_ELASTICSEARCH environment variable must be set to allow the preprocessor to perform any operations with Elasticsearch index. This flag may be useful in CI/CD jobs.

targets : Allowed targets for the preprocessor. If not specified (by default), the preprocessor applies to all targets.

Usage

The preprocessor reads each source Markdown file and generates three fields for indexing:

  • url—target page URL;
  • title—document title, it’s taken from the first heading of source Markdown content;
  • content—source Markdown content, optionally converted into plain text or HTML.

When all the files are processed, the preprocessor calls Elasticsearch API to create the index.

Optionally the preprocessor may call Elasticsearch API to delete previously created index.

By using the index_properties option, you may override the default Elasticsearch settings when creating an index. Below is an example of JSON-formatted value of the index_properties option to create an index with Russian morphology analysis:

{
    "settings": {
        "analysis": {
            "filter": {
                "ru_stop": {
                    "type": "stop",
                    "stopwords": "_russian_"
                },
                "ru_stemmer": {
                    "type": "stemmer",
                    "language": "russian"
                }
            },
            "analyzer": {
                "default": {
                    "tokenizer": "standard",
                    "filter": [
                        "lowercase",
                        "ru_stop",
                        "ru_stemmer"
                    ]
                }
            }
        }
    }
}

You may perform custom search requests to Elasticsearch API.

The simple client-side Web application example that is provided as a part of this extension, performs requests like this:

{
    "query": {
        "multi_match": {
            "query": "foliant",
            "type": "phrase_prefix",
            "fields": [ "title^3", "content" ]
        }
    },
    "highlight": {
        "fields": {
            "content": {}
        }
    },
    "size": 50
}

Search results may look like that:

Search Results

If you use self-hosted instance of Elasticsearch, you may need to configure it to append CORS headers to HTTP API responses.