-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathutils.py
403 lines (333 loc) · 13.5 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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
from __future__ import annotations
import inspect
import linecache
import os.path
import sys
import warnings
from collections.abc import Sequence
from pprint import PrettyPrinter, pformat
from typing import Any
from asgiref.local import Local
from django.http import QueryDict
from django.template import Node
from django.utils.html import format_html
from django.utils.safestring import SafeString, mark_safe
from django.views.debug import get_default_exception_reporter_filter
from debug_toolbar import _stubs as stubs, settings as dt_settings
_local_data = Local()
safe_filter = get_default_exception_reporter_filter()
def _is_excluded_frame(frame: Any, excluded_modules: Sequence[str] | None) -> bool:
if not excluded_modules:
return False
frame_module = frame.f_globals.get("__name__")
if not isinstance(frame_module, str):
return False
return any(
frame_module == excluded_module
or frame_module.startswith(excluded_module + ".")
for excluded_module in excluded_modules
)
def _stack_trace_deprecation_warning() -> None:
warnings.warn(
"get_stack() and tidy_stacktrace() are deprecated in favor of"
" get_stack_trace()",
DeprecationWarning,
stacklevel=2,
)
def tidy_stacktrace(stack: list[stubs.InspectStack]) -> stubs.TidyStackTrace:
"""
Clean up stacktrace and remove all entries that are excluded by the
HIDE_IN_STACKTRACES setting.
``stack`` should be a list of frame tuples from ``inspect.stack()`` or
``debug_toolbar.utils.get_stack()``.
"""
_stack_trace_deprecation_warning()
trace = []
excluded_modules = dt_settings.get_config()["HIDE_IN_STACKTRACES"]
for frame, path, line_no, func_name, text in (f[:5] for f in stack):
if _is_excluded_frame(frame, excluded_modules):
continue
text = "".join(text).strip() if text else ""
frame_locals = (
pformat(frame.f_locals)
if dt_settings.get_config()["ENABLE_STACKTRACES_LOCALS"]
else None
)
trace.append((path, line_no, func_name, text, frame_locals))
return trace
def render_stacktrace(trace: stubs.TidyStackTrace) -> SafeString:
show_locals = dt_settings.get_config()["ENABLE_STACKTRACES_LOCALS"]
html = ""
for abspath, lineno, func, code, locals_ in trace:
if os.path.sep in abspath:
directory, filename = abspath.rsplit(os.path.sep, 1)
# We want the separator to appear in the UI so add it back.
directory += os.path.sep
else:
# abspath could be something like "<frozen importlib._bootstrap>"
directory = ""
filename = abspath
html += format_html(
(
'<span class="djdt-path">{}</span>'
+ '<span class="djdt-file">{}</span> in'
+ ' <span class="djdt-func">{}</span>'
+ '(<span class="djdt-lineno">{}</span>)\n'
+ ' <span class="djdt-code">{}</span>\n'
),
directory,
filename,
func,
lineno,
code,
)
if show_locals:
html += format_html(
' <pre class="djdt-locals">{}</pre>\n',
locals_,
)
html += "\n"
return mark_safe(html)
def get_template_info() -> dict[str, Any] | None:
template_info = None
cur_frame = sys._getframe().f_back
try:
while cur_frame is not None:
in_utils_module = cur_frame.f_code.co_filename.endswith(
"/debug_toolbar/utils.py"
)
is_get_template_context = (
cur_frame.f_code.co_name == get_template_context.__name__
)
if in_utils_module and is_get_template_context:
# If the method in the stack trace is this one
# then break from the loop as it's being check recursively.
break
elif cur_frame.f_code.co_name == "render":
node = cur_frame.f_locals["self"]
context = cur_frame.f_locals["context"]
if isinstance(node, Node):
template_info = get_template_context(node, context)
break
cur_frame = cur_frame.f_back
except Exception:
pass
del cur_frame
return template_info
def get_template_context(
node: Node, context: stubs.RequestContext, context_lines: int = 3
) -> dict[str, Any]:
line, source_lines, name = get_template_source_from_exception_info(node, context)
debug_context = []
start = max(1, line - context_lines)
end = line + 1 + context_lines
for line_num, content in source_lines:
if start <= line_num <= end:
debug_context.append(
{"num": line_num, "content": content, "highlight": (line_num == line)}
)
return {"name": name, "context": debug_context}
def get_template_source_from_exception_info(
node: Node, context: stubs.RequestContext
) -> tuple[int, list[tuple[int, str]], str]:
if context.template.origin == node.origin:
exception_info = context.template.get_exception_info(
Exception("DDT"), node.token
)
else:
exception_info = context.render_context.template.get_exception_info(
Exception("DDT"), node.token
)
line = exception_info["line"]
source_lines = exception_info["source_lines"]
name = exception_info["name"]
return line, source_lines, name
def get_name_from_obj(obj: Any) -> str:
"""Get the best name as `str` from a view or a object."""
# This is essentially a rewrite of the `django.contrib.admindocs.utils.get_view_name`
# https://github.com/django/django/blob/9a22d1769b042a88741f0ff3087f10d94f325d86/django/contrib/admindocs/utils.py#L26-L32
if hasattr(obj, "view_class"):
klass = obj.view_class
return f"{klass.__module__}.{klass.__qualname__}"
mod_name = obj.__module__
view_name = getattr(obj, "__qualname__", obj.__class__.__name__)
return mod_name + "." + view_name
def getframeinfo(frame: Any, context: int = 1) -> inspect.Traceback:
"""
Get information about a frame or traceback object.
A tuple of five things is returned: the filename, the line number of
the current line, the function name, a list of lines of context from
the source code, and the index of the current line within that list.
The optional second argument specifies the number of lines of context
to return, which are centered around the current line.
This originally comes from ``inspect`` but is modified to handle issues
with ``findsource()``.
"""
if inspect.istraceback(frame):
lineno = frame.tb_lineno
frame = frame.tb_frame
else:
lineno = frame.f_lineno
if not inspect.isframe(frame):
raise TypeError("arg is not a frame or traceback object")
filename = inspect.getsourcefile(frame) or inspect.getfile(frame)
if context > 0:
start = lineno - 1 - context // 2
try:
lines, lnum = inspect.findsource(frame)
except Exception: # findsource raises platform-dependant exceptions
lines = index = None
else:
start = max(start, 1)
start = max(0, min(start, len(lines) - context))
lines = lines[start : (start + context)]
index = lineno - 1 - start
else:
lines = index = None
return inspect.Traceback(filename, lineno, frame.f_code.co_name, lines, index)
def sanitize_and_sort_request_vars(
variable: dict[str, Any] | QueryDict,
) -> dict[str, list[tuple[str, Any]] | Any]:
"""
Get a data structure for showing a sorted list of variables from the
request data with sensitive values redacted.
"""
if not isinstance(variable, (dict, QueryDict)):
return {"raw": variable}
# Get sorted keys if possible, otherwise just list them
keys = _get_sorted_keys(variable)
# Process the variable based on its type
if isinstance(variable, QueryDict):
result = _process_query_dict(variable, keys)
else:
result = _process_dict(variable, keys)
return {"list": result}
def _get_sorted_keys(variable):
"""Helper function to get sorted keys if possible."""
try:
return sorted(variable)
except TypeError:
return list(variable)
def _process_query_dict(query_dict, keys):
"""Process a QueryDict into a list of (key, sanitized_value) tuples."""
result = []
for k in keys:
values = query_dict.getlist(k)
# Return single value if there's only one, otherwise keep as list
value = values[0] if len(values) == 1 else values
result.append((k, safe_filter.cleanse_setting(k, value)))
return result
def _process_dict(dictionary, keys):
"""Process a dictionary into a list of (key, sanitized_value) tuples."""
return [(k, safe_filter.cleanse_setting(k, dictionary.get(k))) for k in keys]
def get_stack(context=1) -> list[stubs.InspectStack]:
"""
Get a list of records for a frame and all higher (calling) frames.
Each record contains a frame object, filename, line number, function
name, a list of lines of context, and index within the context.
Modified version of ``inspect.stack()`` which calls our own ``getframeinfo()``
"""
_stack_trace_deprecation_warning()
frame = sys._getframe(1)
framelist = []
while frame:
framelist.append((frame,) + getframeinfo(frame, context))
frame = frame.f_back
return framelist
def _stack_frames(*, skip=0):
skip += 1 # Skip the frame for this generator.
frame = inspect.currentframe()
while frame is not None:
if skip > 0:
skip -= 1
else:
yield frame
frame = frame.f_back
class _StackTraceRecorder:
pretty_printer = PrettyPrinter()
def __init__(self):
self.filename_cache = {}
def get_source_file(self, frame):
frame_filename = frame.f_code.co_filename
value = self.filename_cache.get(frame_filename)
if value is None:
filename = inspect.getsourcefile(frame)
if filename is None:
is_source = False
filename = frame_filename
else:
is_source = True
# Ensure linecache validity the first time this recorder
# encounters the filename in this frame.
linecache.checkcache(filename)
value = (filename, is_source)
self.filename_cache[frame_filename] = value
return value
def get_stack_trace(
self,
*,
excluded_modules: Sequence[str] | None = None,
include_locals: bool = False,
skip: int = 0,
):
trace = []
skip += 1 # Skip the frame for this method.
for frame in _stack_frames(skip=skip):
if _is_excluded_frame(frame, excluded_modules):
continue
filename, is_source = self.get_source_file(frame)
line_no = frame.f_lineno
func_name = frame.f_code.co_name
if is_source:
module = inspect.getmodule(frame, filename)
module_globals = module.__dict__ if module is not None else None
source_line = linecache.getline(
filename, line_no, module_globals
).strip()
else:
source_line = ""
if include_locals:
frame_locals = self.pretty_printer.pformat(frame.f_locals)
else:
frame_locals = None
trace.append((filename, line_no, func_name, source_line, frame_locals))
trace.reverse()
return trace
def get_stack_trace(*, skip=0):
"""
Return a processed stack trace for the current call stack.
If the ``ENABLE_STACKTRACES`` setting is False, return an empty :class:`list`.
Otherwise return a :class:`list` of processed stack frame tuples (file name, line
number, function name, source line, frame locals) for the current call stack. The
first entry in the list will be for the bottom of the stack and the last entry will
be for the top of the stack.
``skip`` is an :class:`int` indicating the number of stack frames above the frame
for this function to omit from the stack trace. The default value of ``0`` means
that the entry for the caller of this function will be the last entry in the
returned stack trace.
"""
config = dt_settings.get_config()
if not config["ENABLE_STACKTRACES"]:
return []
skip += 1 # Skip the frame for this function.
stack_trace_recorder = getattr(_local_data, "stack_trace_recorder", None)
if stack_trace_recorder is None:
stack_trace_recorder = _StackTraceRecorder()
_local_data.stack_trace_recorder = stack_trace_recorder
return stack_trace_recorder.get_stack_trace(
excluded_modules=config["HIDE_IN_STACKTRACES"],
include_locals=config["ENABLE_STACKTRACES_LOCALS"],
skip=skip,
)
def clear_stack_trace_caches():
if hasattr(_local_data, "stack_trace_recorder"):
del _local_data.stack_trace_recorder
_HTML_TYPES = ("text/html", "application/xhtml+xml")
def is_processable_html_response(response):
content_encoding = response.get("Content-Encoding", "")
content_type = response.get("Content-Type", "").split(";")[0]
return (
not getattr(response, "streaming", False)
and content_encoding == ""
and content_type in _HTML_TYPES
)