Skip to content

src.database.query_builder.ElasticQueryBuilder

Source code in src/database/query_builder.py
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
class ElasticQueryBuilder:
    def __init__(self, config: Dict[str, Any]):
        """
        Initialize the QueryBuilder with the Elasticsearch-related config.

        Args:
            config (Dict[str, Any]): Elasticsearch config, including the query templates and other parameters.
        """
        if not config or 'query_body' not in config:
            raise ValueError("Elasticsearch config must include 'query_body'.")

        self.query_body: Dict[str, Any] = config.get('query_body')
        self.timeout: int = config.get('timeout', 30)
        self.max_retries: int = config.get('max_retries', 3)
        self.overfetch_buffer: int = config.get('overfetch_buffer', 50)

    def get_query(self, user_input: str) -> Dict[str, Any]:
        """
        Retrieve and process the query template with user input.

        Args:
            user_input (str): The user input to inject into the query.

        Returns:
            Dict[str, Any]: The processed query body.
        """
        if not self.query_body:
            raise ValueError("No query body found in the Elasticsearch configuration.")

        # Convert the query body to JSON string for template substitution
        query_body_str = json.dumps(self.query_body)

        # Escape user input properly using json.dumps
        escaped_user_input = json.dumps(user_input)[1:-1]

        # Replace placeholders using Python's Template
        processed_query_str = Template(query_body_str).substitute(USER_INPUT=escaped_user_input)

        return json.loads(processed_query_str)

__init__(config)

Initialize the QueryBuilder with the Elasticsearch-related config.

Parameters:

Name Type Description Default
config Dict[str, Any]

Elasticsearch config, including the query templates and other parameters.

required
Source code in src/database/query_builder.py
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
def __init__(self, config: Dict[str, Any]):
    """
    Initialize the QueryBuilder with the Elasticsearch-related config.

    Args:
        config (Dict[str, Any]): Elasticsearch config, including the query templates and other parameters.
    """
    if not config or 'query_body' not in config:
        raise ValueError("Elasticsearch config must include 'query_body'.")

    self.query_body: Dict[str, Any] = config.get('query_body')
    self.timeout: int = config.get('timeout', 30)
    self.max_retries: int = config.get('max_retries', 3)
    self.overfetch_buffer: int = config.get('overfetch_buffer', 50)

get_query(user_input)

Retrieve and process the query template with user input.

Parameters:

Name Type Description Default
user_input str

The user input to inject into the query.

required

Returns:

Type Description
Dict[str, Any]

Dict[str, Any]: The processed query body.

Source code in src/database/query_builder.py
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
def get_query(self, user_input: str) -> Dict[str, Any]:
    """
    Retrieve and process the query template with user input.

    Args:
        user_input (str): The user input to inject into the query.

    Returns:
        Dict[str, Any]: The processed query body.
    """
    if not self.query_body:
        raise ValueError("No query body found in the Elasticsearch configuration.")

    # Convert the query body to JSON string for template substitution
    query_body_str = json.dumps(self.query_body)

    # Escape user input properly using json.dumps
    escaped_user_input = json.dumps(user_input)[1:-1]

    # Replace placeholders using Python's Template
    processed_query_str = Template(query_body_str).substitute(USER_INPUT=escaped_user_input)

    return json.loads(processed_query_str)