Skip to main content

Write universal django view decorators that work with regular view functions, view classes, and also with view class methods. In case of decorating a view class the decorator is inherited by subclasses.

Project description

build code quality code health coverage github license: MIT

Introduction

In django you can implement views in two different standard ways (regular view function, class based view) and the same project can make use of both techniques in parallel. In case of class based views I’ve seen several ways of decorating them and none of the techniques were really attractive to me (visually and/or functionally).

You are probably familiar at least with the easiest ways of writing a decorator: implementing it as a regular function (or class) and applying it only to regular view functions. Implementing a decorator that can be applied to both regular view functions and instance methods is more challenging especially if you want to access the arguments of the decorated function/method.

If we want to be able to apply the same decorator also to view classes then things get messy very quickly depending on the expected behavior in that case.

Goals

With this library I introduce a new way to implement django view decorators. At the same time I provide a solution to reuse legacy decorators in a more flexible way.

The goals of this library:

  • Easy way to implement view decorators that can be applied to:

    • regular view functions

    • view class methods

    • view classes

    If you have simple legacy view decorators that can be applied only to regular view functions then this library also provides a wrapper that makes your legacy decorator usable in the previously listed scenarios.

  • The decorator implementation should be able to access view args (like request) easily in a unified way regardless of the type of the view the decorator is applied to.

  • The way of applying the decorator to different kinds of views should look the same in the code. The code should have “good graphics”. :-)

  • Additional expectations in case of applying the decorator to view classes:

    • In case of applying the decorator to a view class I want the decorator to treat the view class as a regular view function. What do I mean by this? When you attach a view class to a url you call its View.as_view() method that basically converts it into a view function to be used by django. When I apply my decorator to a view class I want the decorator to decorate the view function returned by the as_view() method of the view class.

    • I want the decorator to be inherited by view subclasses and I want it to be difficult for subclasses to execute logic before the logic of the base class decorator. Simply overriding the dispatch() or get() or a similar method of the view subclass shouldn’t allow code execution before the logic of a base class decorator.

      A difficult-to-bypass view base class decorator logic like this can come in handy in view base classes where you want to employ critical checks (security/permission related stuff). This inherited decorator can be a very good safeguard when others build on your subclasses and inherit your base class decorators.

      Anyway, if you want to provide base class view decoration logic before which a subclass can easily execute its own code then instead of decorating the base class you should probably decorate one of its methods (dispatch(), get(), etc…). This way the subclass can easily execute logic before base class method decorator simply by overriding the method.

Usage

Installation

pip install django-universal-view-decorator

Alternatively you can download the zipped library from https://pypi.python.org/pypi/django-universal-view-decorator

Quick-starter

Implementing decorators using this library

I want an easy way to implement @my_view_decorator that can be applied easily to different kind of views in the following way:

@my_view_decorator
def regular_view_function(request):
    pass


@my_view_decorator
class ViewClass(View):
    ...


class ViewClass2(View):
    @my_view_decorator(optional_param)
    def get(self, request):
        ...

The following code block is a possible implementation-skeleton of @my_view_decorator using this library. Despite the long list of my requirements the implementation of the decorator is fairly simple:

from django_universal_view_decorator import ViewDecoratorBase


class MyViewDecorator(ViewDecoratorBase):
    # Note: You don't have to override `__init__()` if your decorator doesn't
    # have arguments and you don't have to setup instance attributes.
    def __init__(self, optional_arg=5):
        super().__init__()
        self.optional_arg = optional_arg

    def _call_view_function(self, decoration_instance, view_class_instance, view_function, *args, **kwargs):
        # Note: You can of course use `self.optional_arg` in this method.
        # If you need the request arg of the view...
        request = args[0]
        # TODO: manipulate the request and other incoming args/kwargs if you want
        # TODO: return a response instead of calling the original view if you want
        response = view_function(*args, **kwargs)
        # TODO: manipulate the response or forge a new one before returning it
        return response


# This step makes the decorator compatible with view classes and also makes
# it possible to use the decorator without the `()` when the decorator has
# no required arguments and you don't want to pass any of them.
my_view_decorator = MyViewDecorator.universal_decorator

Giving superpowers to legacy decorators

Besides providing an easy way to implement the above “universal” view decorator I provide a special legacy decorator wrapper that gives your legacy view decorators (that can be applied only to regular view functions) some of the superpowers of the previously implemented universal view decorator. This legacy decorator wrapper has to be applied similarly to django.utils.decorators.method_decorator():

# Demonstrating the usage of the @universal_view_decorator provided by this library.
from django_universal_view_decorator import universal_view_decorator


@universal_view_decorator(your_legacy_decorator)
def regular_view_function(request):
    pass


@universal_view_decorator(legacy_decorator_with_parameters('woof', 'woof'))
class ViewClass(View):
    ...


class ViewClass2(View):
    @universal_view_decorator(legacy_decorator_1)
    @universal_view_decorator(legacy_decorator_2)
    def get(self, request):
        ...

    # this is equivalent in behavior to the decoration of `get()`
    @universal_view_decorator(legacy_decorator_1, legacy_decorator_2)
    def head(self, request):
        ...

I have a lot of time to read boring documentation

Advanced view decorator features

[TODO] Optional decorator arguments

[TODO] View class decorator inheritance explained

[TODO] Managing duplicate view class decorators in the view class hierarchy

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-universal-view-decorator-0.0.1.tar.gz (29.5 kB view hashes)

Uploaded Source

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page