| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- from django.apps import apps
- from jinja2 import BaseLoader, TemplateNotFound
- from jinja2.meta import find_referenced_templates
- from jinja2.sandbox import SandboxedEnvironment
- from netbox.config import get_config
- __all__ = (
- 'DataFileLoader',
- )
- class DataFileLoader(BaseLoader):
- """
- Custom Jinja2 loader to facilitate populating template content from DataFiles.
- """
- def __init__(self, data_source):
- self.data_source = data_source
- self._template_cache = {}
- def get_source(self, environment, template):
- DataFile = apps.get_model('core', 'DataFile')
- # Retrieve template content from cache
- try:
- template_source = self._template_cache[template]
- except KeyError:
- raise TemplateNotFound(template)
- # Find and pre-fetch referenced templates
- if referenced_templates := find_referenced_templates(environment.parse(template_source)):
- self.cache_templates({
- df.path: df.data_as_string for df in
- DataFile.objects.filter(source=self.data_source, path__in=referenced_templates)
- })
- return template_source, template, lambda: True
- def cache_templates(self, templates):
- self._template_cache.update(templates)
- #
- # Utility functions
- #
- def render_jinja2(template_code, context):
- """
- Render a Jinja2 template with the provided context. Return the rendered content.
- """
- environment = SandboxedEnvironment()
- environment.filters.update(get_config().JINJA2_FILTERS)
- return environment.from_string(source=template_code).render(**context)
|