-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers.py
85 lines (73 loc) · 3.41 KB
/
helpers.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
from rest_framework.exceptions import ParseError
def get_request_data(request, key, default_value=None):
"""
Extracts data from request.data, request.FILES, and request.query_params based on the request method and content type.
:param request: Petra request object
:param key: The key to look for in the request data
:param default_value: The default value to return if the key is not found
:return: The value associated with the key, or the default value if not found
"""
try:
if request.method in ['POST', 'PUT', 'PATCH']:
if request.content_type.startswith('multipart/form-data'):
# For file uploads
if key in request.FILES:
return request.FILES.get(key)
elif key in request.data:
return request.data.get(key)
elif request.content_type in ['application/json', 'application/x-www-form-urlencoded']:
# For JSON or form-encoded data
if key in request.data:
return request.data.get(key)
elif request.method == 'GET':
if key in request.query_params:
return request.query_params.get(key)
else:
if key in request.query_params:
return request.query_params.get(key)
return default_value
except Exception as e:
raise ParseError(f"Error extracting request data for key '{key}': {str(e)}")
def get_all_request_data(request):
"""
Combines all request data from query_params, request.data, and FILES into a single dictionary.
:param request: Petra request object
:return: Dictionary containing all request data
"""
try:
combined_data = {}
# Add query parameters
combined_data.update(request.query_params.dict())
# Add request data for POST/PUT/PATCH methods
if request.method in ['POST', 'PUT', 'PATCH']:
if request.content_type.startswith('multipart/form-data'):
# Add both form data and files
combined_data.update(request.data.dict())
combined_data.update(request.FILES.dict())
elif request.content_type in ['application/json', 'application/x-www-form-urlencoded']:
# Add JSON or form-encoded data
combined_data.update(request.data)
return combined_data
except Exception as e:
raise ParseError(f"Error extracting all request data: {str(e)}")
def get_request_headers(request):
"""
Gets all headers from the request object.
:param request: Petra request object
:return: Dictionary containing all request headers
"""
try:
# META keys starting with 'HTTP_' contain the HTTP headers
headers = {
key[5:].lower().replace('_', '-'): value
for key, value in request.META.items()
if key.startswith('HTTP_')
}
# Special handling for Content-Type and Content-Length as they don't have HTTP_ prefix
if 'CONTENT_TYPE' in request.META:
headers['content-type'] = request.META['CONTENT_TYPE']
if 'CONTENT_LENGTH' in request.META:
headers['content-length'] = request.META['CONTENT_LENGTH']
return headers
except Exception as e:
raise ParseError(f"Error extracting request headers: {str(e)}")