mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-28 04:24:00 +03:00
Implement alternative WWW-Authenticate generation behaviors
This commit is contained in:
parent
1cd663cd68
commit
0a53bb0119
|
@ -107,6 +107,7 @@ class APIView(View):
|
||||||
renderer_classes = api_settings.DEFAULT_RENDERER_CLASSES
|
renderer_classes = api_settings.DEFAULT_RENDERER_CLASSES
|
||||||
parser_classes = api_settings.DEFAULT_PARSER_CLASSES
|
parser_classes = api_settings.DEFAULT_PARSER_CLASSES
|
||||||
authentication_classes = api_settings.DEFAULT_AUTHENTICATION_CLASSES
|
authentication_classes = api_settings.DEFAULT_AUTHENTICATION_CLASSES
|
||||||
|
www_authenticate_behavior = api_settings.WWW_AUTHENTICATE_BEHAVIOR
|
||||||
throttle_classes = api_settings.DEFAULT_THROTTLE_CLASSES
|
throttle_classes = api_settings.DEFAULT_THROTTLE_CLASSES
|
||||||
permission_classes = api_settings.DEFAULT_PERMISSION_CLASSES
|
permission_classes = api_settings.DEFAULT_PERMISSION_CLASSES
|
||||||
content_negotiation_class = api_settings.DEFAULT_CONTENT_NEGOTIATION_CLASS
|
content_negotiation_class = api_settings.DEFAULT_CONTENT_NEGOTIATION_CLASS
|
||||||
|
@ -186,8 +187,13 @@ class APIView(View):
|
||||||
header to use for 401 responses, if any.
|
header to use for 401 responses, if any.
|
||||||
"""
|
"""
|
||||||
authenticators = self.get_authenticators()
|
authenticators = self.get_authenticators()
|
||||||
|
www_authenticate_behavior = self.www_authenticate_behavior
|
||||||
if authenticators:
|
if authenticators:
|
||||||
|
if www_authenticate_behavior == 'first':
|
||||||
return authenticators[0].authenticate_header(request)
|
return authenticators[0].authenticate_header(request)
|
||||||
|
elif www_authenticate_behavior == 'all':
|
||||||
|
challenges = (a.authenticate_header(request) for a in authenticators)
|
||||||
|
return ', '.join((c for c in challenges if c is not None))
|
||||||
|
|
||||||
def get_parser_context(self, http_request):
|
def get_parser_context(self, http_request):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user