]> git.openstreetmap.org Git - nominatim.git/blob - nominatim/tokenizer/sanitizers/config.py
sanitizer: move helpers into a configuration class
[nominatim.git] / nominatim / tokenizer / sanitizers / config.py
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # This file is part of Nominatim. (https://nominatim.org)
4 #
5 # Copyright (C) 2022 by the Nominatim developer community.
6 # For a full list of authors see the git log.
7 """
8 Configuration for Sanitizers.
9 """
10 from collections import UserDict
11 import re
12
13 from nominatim.errors import UsageError
14
15 class SanitizerConfig(UserDict):
16     """ Dictionary with configuration options for a sanitizer.
17
18         In addition to the usualy dictionary function, the class provides
19         accessors to standard sanatizer options that are used by many of the
20         sanitizers.
21     """
22
23     def get_string_list(self, param, default=tuple()):
24         """ Extract a configuration parameter as a string list.
25             If the parameter value is a simple string, it is returned as a
26             one-item list. If the parameter value does not exist, the given
27             default is returned. If the parameter value is a list, it is checked
28             to contain only strings before being returned.
29         """
30         values = self.data.get(param, None)
31
32         if values is None:
33             return None if default is None else list(default)
34
35         if isinstance(values, str):
36             return [values]
37
38         if not isinstance(values, (list, tuple)):
39             raise UsageError(f"Parameter '{param}' must be string or list of strings.")
40
41         if any(not isinstance(value, str) for value in values):
42             raise UsageError(f"Parameter '{param}' must be string or list of strings.")
43
44         return values
45
46
47     def get_delimiter(self, default=',;'):
48         """ Return the 'delimiter' parameter in the configuration as a
49             compiled regular expression that can be used to split the names on the
50             delimiters. The regular expression makes sure that the resulting names
51             are stripped and that repeated delimiters
52             are ignored but it will still create empty fields on occasion. The
53             code needs to filter those.
54
55             The 'default' parameter defines the delimiter set to be used when
56             not explicitly configured.
57         """
58         delimiter_set = set(self.data.get('delimiters', default))
59         if not delimiter_set:
60             raise UsageError("Empty 'delimiter' parameter not allowed for sanitizer.")
61
62         return re.compile('\\s*[{}]+\\s*'.format(''.join('\\' + d for d in delimiter_set)))
63
64
65     def get_filter_kind(self, *default):
66         """ Return a filter function for the name kind from the 'filter-kind'
67             config parameter. The filter functions takes a name item and returns
68             True when the item passes the filter.
69
70             If the parameter is empty, the filter lets all items pass. If the
71             paramter is a string, it is interpreted as a single regular expression
72             that must match the full kind string. If the parameter is a list then
73             any of the regular expressions in the list must match to pass.
74         """
75         filters = self.get_string_list('filter-kind', default)
76
77         if not filters:
78             return lambda _: True
79
80         regexes = [re.compile(regex) for regex in filters]
81
82         return lambda name: any(regex.fullmatch(name.kind) for regex in regexes)