mirror of
https://github.com/django/daphne.git
synced 2025-10-30 15:27:36 +03:00
39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
from django.http import HttpResponse
|
|
|
|
|
|
def encode_response(response):
|
|
"""
|
|
Encodes a response to JSON-compatible datastructures
|
|
"""
|
|
# TODO: Entirely useful things like cookies
|
|
value = {
|
|
"content_type": getattr(response, "content_type", None),
|
|
"content": response.content,
|
|
"status_code": response.status_code,
|
|
"headers": response._headers.values(),
|
|
}
|
|
response.close()
|
|
return value
|
|
|
|
|
|
def decode_response(value):
|
|
"""
|
|
Decodes a response JSONish value to a HttpResponse object.
|
|
"""
|
|
response = HttpResponse(
|
|
content = value['content'],
|
|
content_type = value['content_type'],
|
|
status = value['status_code'],
|
|
)
|
|
response._headers = {k.lower: (k, v) for k, v in value['headers']}
|
|
return response
|
|
|
|
|
|
class ResponseLater(Exception):
|
|
"""
|
|
Class that represents a response which will be sent doown the response
|
|
channel later. Used to move a django view-based segment onto the next
|
|
task, as otherwise we'd need to write some kind of fake response.
|
|
"""
|
|
pass
|