aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework
diff options
context:
space:
mode:
authorTom Christie2011-05-17 09:15:35 +0100
committerTom Christie2011-05-17 09:15:35 +0100
commitbfbb8ceccf209d6cd11723ead11e820e96e0accd (patch)
treec21b9920403f1850ef70ccac2cb3c3dbfe3b5105 /djangorestframework
parent3f6b6e437bf24a55c33af5379b8ae89974edba57 (diff)
parent40573b2793a49d68b89ea5b6c4bff0e13470cc0c (diff)
downloaddjango-rest-framework-bfbb8ceccf209d6cd11723ead11e820e96e0accd.tar.bz2
Merge Marko's doc improvements.
Diffstat (limited to 'djangorestframework')
-rw-r--r--djangorestframework/authentication.py38
-rw-r--r--djangorestframework/mixins.py47
-rw-r--r--djangorestframework/views.py6
3 files changed, 48 insertions, 43 deletions
diff --git a/djangorestframework/authentication.py b/djangorestframework/authentication.py
index b0ba41aa..1c5c832f 100644
--- a/djangorestframework/authentication.py
+++ b/djangorestframework/authentication.py
@@ -1,10 +1,10 @@
"""
-The ``authentication`` module provides a set of pluggable authentication classes.
+The :mod:`authentication` module provides a set of pluggable authentication classes.
-Authentication behavior is provided by adding the ``AuthMixin`` class to a ``View`` .
+Authentication behavior is provided by mixing the :class:`mixins.AuthMixin` class into a :class:`View` class.
The set of authentication methods which are used is then specified by setting the
-``authentication`` attribute on the ``View`` class, and listing a set of authentication classes.
+:attr:`authentication` attribute on the :class:`View` class, and listing a set of authentication classes.
"""
from django.contrib.auth import authenticate
@@ -26,24 +26,23 @@ class BaseAuthenticaton(object):
def __init__(self, view):
"""
- Authentication classes are always passed the current view on creation.
+ :param view: :class:`Authentication` classes are always passed the current view on creation.
"""
self.view = view
def authenticate(self, request):
"""
- Authenticate the request and return a ``User`` instance or None. (*)
-
- This function must be overridden to be implemented.
-
- (*) The authentication context _will_ typically be a ``User`` object,
- but it need not be. It can be any user-like object so long as the
- permissions classes on the view can handle the object and use
- it to determine if the request has the required permissions or not.
-
- This can be an important distinction if you're implementing some token
- based authentication mechanism, where the authentication context
- may be more involved than simply mapping to a ``User``.
+ :param request: Request to be authenticated
+ :rtype: :obj:`User` or None [*]_
+
+ .. [*] The authentication context *will* typically be a :obj:`User`,
+ but it need not be. It can be any user-like object so long as the
+ permissions classes on the view can handle the object and use
+ it to determine if the request has the required permissions or not.
+
+ This can be an important distinction if you're implementing some token
+ based authentication mechanism, where the authentication context
+ may be more involved than simply mapping to a :obj:`User`.
"""
return None
@@ -54,6 +53,10 @@ class BasicAuthenticaton(BaseAuthenticaton):
"""
def authenticate(self, request):
+ """
+ Returns a :obj:`User` if a correct username and password have been supplied
+ using HTTP Basic authentication. Otherwise returns `None`.
+ """
from django.utils.encoding import smart_unicode, DjangoUnicodeDecodeError
if 'HTTP_AUTHORIZATION' in request.META:
@@ -81,6 +84,9 @@ class UserLoggedInAuthenticaton(BaseAuthenticaton):
"""
def authenticate(self, request):
+ """
+ Returns a :obj:`User` if the request session currently has a logged in user, otherwise `None`.
+ """
# TODO: Switch this back to request.POST, and let FormParser/MultiPartParser deal with the consequences.
if getattr(request, 'user', None) and request.user.is_active:
# If this is a POST request we enforce CSRF validation.
diff --git a/djangorestframework/mixins.py b/djangorestframework/mixins.py
index 278d4d4d..e101b788 100644
--- a/djangorestframework/mixins.py
+++ b/djangorestframework/mixins.py
@@ -408,28 +408,6 @@ class AuthMixin(object):
permission.check_permission(user)
-##########
-
-class InstanceMixin(object):
- """
- Mixin class that is used to identify a view class as being the canonical identifier
- for the resources it is mapped too.
- """
-
- @classmethod
- def as_view(cls, **initkwargs):
- """
- Store the callable object on the resource class that has been associated with this view.
- """
- view = super(InstanceMixin, cls).as_view(**initkwargs)
- if 'resource' in initkwargs:
- # We do a little dance when we store the view callable...
- # we need to store it wrapped in a 1-tuple, so that inspect will treat it
- # as a function when we later look it up (rather than turning it into a method).
- # This makes sure our URL reversing works ok.
- initkwargs['resource'].view_callable = (view,)
- return view
-
########## Resource Mixin ##########
class ResourceMixin(object):
@@ -449,6 +427,9 @@ class ResourceMixin(object):
@property
def CONTENT(self):
+ """
+ Returns the cleaned, validated request content.
+ """
if not hasattr(self, '_content'):
self._content = self.validate_request(self.DATA, self.FILES)
return self._content
@@ -474,6 +455,28 @@ class ResourceMixin(object):
+##########
+
+class InstanceMixin(object):
+ """
+ Mixin class that is used to identify a view class as being the canonical identifier
+ for the resources it is mapped too.
+ """
+
+ @classmethod
+ def as_view(cls, **initkwargs):
+ """
+ Store the callable object on the resource class that has been associated with this view.
+ """
+ view = super(InstanceMixin, cls).as_view(**initkwargs)
+ if 'resource' in initkwargs:
+ # We do a little dance when we store the view callable...
+ # we need to store it wrapped in a 1-tuple, so that inspect will treat it
+ # as a function when we later look it up (rather than turning it into a method).
+ # This makes sure our URL reversing works ok.
+ initkwargs['resource'].view_callable = (view,)
+ return view
+
########## Model Mixins ##########
diff --git a/djangorestframework/views.py b/djangorestframework/views.py
index 2e7e8418..81567e68 100644
--- a/djangorestframework/views.py
+++ b/djangorestframework/views.py
@@ -11,7 +11,7 @@ __all__ = (
'BaseView',
'ModelView',
'InstanceModelView',
- 'ListOrModelView',
+ 'ListModelView',
'ListOrCreateModelView'
)
@@ -131,7 +131,3 @@ class ListModelView(ListModelMixin, ModelView):
class ListOrCreateModelView(ListModelMixin, CreateModelMixin, ModelView):
"""A view which provides default operations for list and create, against a model in the database."""
pass
-
-
-
-