1
2
3
4
5
6
7
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
import copy
from typing import Optional, TYPE_CHECKING
from jinja2 import Environment, PackageLoader, select_autoescape, StrictUndefined
from jinja2 import exceptions as j2_exceptions
if TYPE_CHECKING:
from cephadm.module import CephadmOrchestrator
class TemplateError(Exception):
pass
class UndefinedError(TemplateError):
pass
class TemplateNotFoundError(TemplateError):
pass
class TemplateEngine:
def render(self, name: str, context: Optional[dict] = None) -> str:
raise NotImplementedError()
class Jinja2Engine(TemplateEngine):
def __init__(self) -> None:
self.env = Environment(
loader=PackageLoader('cephadm', 'templates'),
autoescape=select_autoescape(['html', 'xml'], default_for_string=False),
trim_blocks=True,
lstrip_blocks=True,
undefined=StrictUndefined
)
def render(self, name: str, context: Optional[dict] = None) -> str:
try:
template = self.env.get_template(name)
if context is None:
return template.render()
return template.render(context)
except j2_exceptions.UndefinedError as e:
raise UndefinedError(e.message)
except j2_exceptions.TemplateNotFound as e:
raise TemplateNotFoundError(e.message)
def render_plain(self, source: str, context: Optional[dict]) -> str:
try:
template = self.env.from_string(source)
if context is None:
return template.render()
return template.render(context)
except j2_exceptions.UndefinedError as e:
raise UndefinedError(e.message)
except j2_exceptions.TemplateNotFound as e:
raise TemplateNotFoundError(e.message)
class TemplateMgr:
def __init__(self, mgr: "CephadmOrchestrator"):
self.engine = Jinja2Engine()
self.base_context = {
'cephadm_managed': 'This file is generated by cephadm.'
}
self.mgr = mgr
def render(self, name: str,
context: Optional[dict] = None,
managed_context: bool = True,
host: Optional[str] = None) -> str:
"""Render a string from a template with context.
:param name: template name. e.g. services/nfs/ganesha.conf.j2
:type name: str
:param context: a dictionary that contains values to be used in the template, defaults
to None
:type context: Optional[dict], optional
:param managed_context: to inject default context like managed header or not, defaults
to True
:type managed_context: bool, optional
:param host: The host name used to build the key to access
the module's persistent key-value store.
:type host: Optional[str], optional
:return: the templated string
:rtype: str
"""
ctx = {}
if managed_context:
ctx = copy.deepcopy(self.base_context)
if context is not None:
ctx = {**ctx, **context}
# Check if the given name exists in the module's persistent
# key-value store, e.g.
# - blink_device_light_cmd
# - <host>/blink_device_light_cmd
# - services/nfs/ganesha.conf
store_name = name.rstrip('.j2')
custom_template = self.mgr.get_store(store_name, None)
if host and custom_template is None:
store_name = '{}/{}'.format(host, store_name)
custom_template = self.mgr.get_store(store_name, None)
if custom_template:
return self.engine.render_plain(custom_template, ctx)
else:
return self.engine.render(name, ctx)
|