forked from reactive-python/reactpy-django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
266 lines (226 loc) · 10.1 KB
/
utils.py
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
from __future__ import annotations
import contextlib
import inspect
import logging
import os
import re
from fnmatch import fnmatch
from importlib import import_module
from inspect import iscoroutinefunction
from typing import Any, Callable, Sequence
from channels.db import database_sync_to_async
from django.db.models import ManyToManyField, prefetch_related_objects
from django.db.models.base import Model
from django.db.models.fields.reverse_related import ManyToOneRel
from django.db.models.query import QuerySet
from django.http import HttpRequest, HttpResponse
from django.template import engines
from django.utils.encoding import smart_str
from django.views import View
_logger = logging.getLogger(__name__)
_component_tag = r"(?P<tag>component)"
_component_path = r"(?P<path>(\"[^\"'\s]+\")|('[^\"'\s]+'))"
_component_kwargs = r"(?P<kwargs>(.*?|\s*?)*)"
COMMENT_REGEX = re.compile(r"(<!--)(.|\s)*?(-->)")
COMPONENT_REGEX = re.compile(
r"{%\s*"
+ _component_tag
+ r"\s*"
+ _component_path
+ r"\s*"
+ _component_kwargs
+ r"\s*%}"
)
async def render_view(
view: Callable | View,
request: HttpRequest,
args: Sequence,
kwargs: dict,
) -> HttpResponse:
"""Ingests a Django view (class or function) and returns an HTTP response object."""
# Render Check 1: Async function view
if iscoroutinefunction(view) and callable(view):
response = await view(request, *args, **kwargs)
# Render Check 2: Async class view
elif getattr(view, "view_is_async", False):
# django-stubs does not support async views yet, so we have to ignore types here
view_or_template_view = await view.as_view()(request, *args, **kwargs) # type: ignore
if getattr(view_or_template_view, "render", None): # TemplateView
response = await view_or_template_view.render()
else: # View
response = view_or_template_view
# Render Check 3: Sync class view
elif getattr(view, "as_view", None):
# MyPy does not know how to properly interpret this as a `View` type
# And `isinstance(view, View)` does not work due to some weird Django internal shenanigans
async_cbv = database_sync_to_async(view.as_view()) # type: ignore
view_or_template_view = await async_cbv(request, *args, **kwargs)
if getattr(view_or_template_view, "render", None): # TemplateView
response = await database_sync_to_async(view_or_template_view.render)()
else: # View
response = view_or_template_view
# Render Check 4: Sync function view
else:
response = await database_sync_to_async(view)(request, *args, **kwargs)
return response
def _register_component(dotted_path: str) -> Callable:
from django_idom.config import IDOM_REGISTERED_COMPONENTS
if dotted_path in IDOM_REGISTERED_COMPONENTS:
return IDOM_REGISTERED_COMPONENTS[dotted_path]
IDOM_REGISTERED_COMPONENTS[dotted_path] = _import_dotted_path(dotted_path)
_logger.debug("IDOM has registered component %s", dotted_path)
return IDOM_REGISTERED_COMPONENTS[dotted_path]
def _import_dotted_path(dotted_path: str) -> Callable:
"""Imports a dotted path and returns the callable."""
module_name, component_name = dotted_path.rsplit(".", 1)
try:
module = import_module(module_name)
except ImportError as error:
raise RuntimeError(
f"Failed to import {module_name!r} while loading {component_name!r}"
) from error
return getattr(module, component_name)
class ComponentPreloader:
def register_all(self):
"""Registers all IDOM components found within Django templates."""
# Get all template folder paths
paths = self._get_paths()
# Get all HTML template files
templates = self._get_templates(paths)
# Get all components
components = self._get_components(templates)
# Register all components
self._register_components(components)
def _get_loaders(self):
"""Obtains currently configured template loaders."""
template_source_loaders = []
for e in engines.all():
if hasattr(e, "engine"):
template_source_loaders.extend(
e.engine.get_template_loaders(e.engine.loaders) # type: ignore
)
loaders = []
for loader in template_source_loaders:
if hasattr(loader, "loaders"):
loaders.extend(loader.loaders)
else:
loaders.append(loader)
return loaders
def _get_paths(self) -> set[str]:
"""Obtains a set of all template directories."""
paths: set[str] = set()
for loader in self._get_loaders():
with contextlib.suppress(ImportError, AttributeError, TypeError):
module = import_module(loader.__module__)
get_template_sources = getattr(module, "get_template_sources", None)
if get_template_sources is None:
get_template_sources = loader.get_template_sources
paths.update(smart_str(origin) for origin in get_template_sources(""))
return paths
def _get_templates(self, paths: set[str]) -> set[str]:
"""Obtains a set of all HTML template paths."""
extensions = [".html"]
templates: set[str] = set()
for path in paths:
for root, _, files in os.walk(path, followlinks=False):
templates.update(
os.path.join(root, name)
for name in files
if not name.startswith(".")
and any(fnmatch(name, f"*{glob}") for glob in extensions)
)
return templates
def _get_components(self, templates: set[str]) -> set[str]:
"""Obtains a set of all IDOM components by parsing HTML templates."""
components: set[str] = set()
for template in templates:
with contextlib.suppress(Exception):
with open(template, "r", encoding="utf-8") as template_file:
clean_template = COMMENT_REGEX.sub("", template_file.read())
regex_iterable = COMPONENT_REGEX.finditer(clean_template)
component_paths = [
match.group("path").replace('"', "").replace("'", "")
for match in regex_iterable
]
components.update(component_paths)
if not components:
_logger.warning(
"\033[93m"
"IDOM did not find any components! "
"You are either not using any IDOM components, "
"using the template tag incorrectly, "
"or your HTML templates are not registered with Django."
"\033[0m"
)
return components
def _register_components(self, components: set[str]) -> None:
"""Registers all IDOM components in an iterable."""
for component in components:
try:
_logger.info("IDOM preloader has detected component %s", component)
_register_component(component)
except Exception:
_logger.exception(
"\033[91m"
"IDOM failed to register component '%s'! "
"This component path may not be valid, "
"or an exception may have occurred while importing."
"\033[0m",
component,
)
def _generate_obj_name(object: Any) -> str | None:
"""Makes a best effort to create a name for an object.
Useful for JSON serialization of Python objects."""
if hasattr(object, "__module__"):
if hasattr(object, "__name__"):
return f"{object.__module__}.{object.__name__}"
if hasattr(object, "__class__"):
return f"{object.__module__}.{object.__class__.__name__}"
return None
def django_query_postprocessor(
data: QuerySet | Model, many_to_many: bool = True, many_to_one: bool = True
) -> QuerySet | Model:
"""Recursively fetch all fields within a `Model` or `QuerySet` to ensure they are not performed lazily.
Some behaviors can be modified through `query_options` attributes."""
# `QuerySet`, which is an iterable of `Model`/`QuerySet` instances
# https://github.com/typeddjango/django-stubs/issues/704
if isinstance(data, QuerySet): # type: ignore[misc]
for model in data:
django_query_postprocessor(
model,
many_to_many=many_to_many,
many_to_one=many_to_one,
)
# `Model` instances
elif isinstance(data, Model):
prefetch_fields: list[str] = []
for field in data._meta.get_fields():
# `ForeignKey` relationships will cause an `AttributeError`
# This is handled within the `ManyToOneRel` conditional below.
with contextlib.suppress(AttributeError):
getattr(data, field.name)
if many_to_one and type(field) == ManyToOneRel:
prefetch_fields.append(f"{field.name}_set")
elif many_to_many and isinstance(field, ManyToManyField):
prefetch_fields.append(field.name)
if prefetch_fields:
prefetch_related_objects([data], *prefetch_fields)
for field_str in prefetch_fields:
django_query_postprocessor(
getattr(data, field_str).get_queryset(),
many_to_many=many_to_many,
many_to_one=many_to_one,
)
# Unrecognized type
else:
raise TypeError(
f"Django query postprocessor expected a Model or QuerySet, got {data!r}.\n"
"One of the following may have occurred:\n"
" - You are using a non-Django ORM.\n"
" - You are attempting to use `use_query` to fetch non-ORM data.\n\n"
"If these situations seem correct, you may want to consider disabling the postprocessor via `QueryOptions`."
)
return data
def func_has_params(func: Callable) -> bool:
"""Checks if a function has any args or kwarg parameters."""
return str(inspect.signature(func)) != "()"