Metadata-Version: 2.0
Name: django-extra-tools
Version: 0.3.0
Summary: A set of functions related with Django
Home-page: https://github.com/tomi77/django-extra-tools
Author: Tomasz Jakub Rup
Author-email: tomasz.rup@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.4
Classifier: Framework :: Django :: 1.5
Classifier: Framework :: Django :: 1.6
Classifier: Framework :: Django :: 1.7
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: PL/SQL
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Dist: Django (>=1.4.3)

==================
django-extra-tools
==================

.. image:: https://travis-ci.org/tomi77/django-extra-tools.svg?branch=master
   :target: https://travis-ci.org/tomi77/django-extra-tools
.. image:: https://coveralls.io/repos/github/tomi77/django-extra-tools/badge.svg
   :target: https://coveralls.io/github/tomi77/django-extra-tools?branch=master
.. image:: https://codeclimate.com/github/tomi77/django-extra-tools/badges/gpa.svg
   :target: https://codeclimate.com/github/tomi77/django-extra-tools
   :alt: Code Climate

Installation
============

.. sourcecode:: sh

   pip install django-extra-tools

Quick start
===========

Enable ``django-extra-tools``

.. sourcecode:: python

   INSTALLED_APPS = [
       ...
       'django_extra_tools',
   ]

Install SQL functions

.. sourcecode:: sh

   python manage.py migrate

StringAgg aggregate function on Django 1.4 needs monkey patch

.. sourcecode:: python

   from django_extra_tools.monkey import patch_django

   patch_all()

Template filters
================

parse_datetime
--------------

Parse datetime from string.

.. sourcecode:: htmldjango

   {% load parse %}

   {{ string_datetime|parse_datetime|date:"Y-m-d H:i" }}

parse_date
----------

Parse date from string.

.. sourcecode:: htmldjango

   {% load parse %}

   {{ string_date|parse_date|date:"Y-m-d" }}

parse_time
----------

Parse time from string.

.. sourcecode:: htmldjango

   {% load parse %}

   {{ string_time|parse_time|date:"H:i" }}

parse_duration
--------------

Parse duration (timedelta) from string.

.. sourcecode:: htmldjango

   {% load parse %}

   {{ string_duration|parse_duration }}

Aggregation
===========

First
-----

Returns the first non-NULL item.

.. sourcecode:: python

   from django_extra_tools.db.models.aggregates import First

   Table.objects.aggregate(First('col1', order_by='col2'))

Last
----

Returns the last non-NULL item.

.. sourcecode:: python

   from django_extra_tools.db.models.aggregates import Last

   Table.objects.aggregate(Last('col1', order_by='col2'))

Median
------

Returns median value.

.. sourcecode:: python

   from django_extra_tools.db.models.aggregates import Median

   Table.objects.aggregate(Median('col1'))

StringAgg
---------

Combines the values as the text. Fields are separated by a "separator".

.. sourcecode:: python

   from django_extra_tools.db.models.aggregates import StringAgg

   Table.objects.aggregate(StringAgg('col1'))

Model mixins
============

CreatedAtMixin
--------------

Add ``created_at`` field to model.

.. sourcecode:: python

   from django.db import models
   from django_extra_tools.db.models import timestampable

   class MyModel(timestampable.CreatedAtMixin, models.Model):
       pass

   model = MyModel()
   print(model.created_at)

CreatedByMixin
--------------

Add ``created_by`` field to model.

.. sourcecode:: python

   from django.contrib.auth.models import User
   from django.db import models
   from django_extra_tools.db.models import timestampable

   class MyModel(timestampable.CreatedByMixin, models.Model):
       pass

   user = User.objects.get(username='user')
   model = MyModel(created_by=user)
   print(model.created_by)

UpdatedAtMixin
--------------

Add ``updated_at`` field to model.

.. sourcecode:: python

   from django.db import models
   from django_extra_tools.db.models import timestampable

   class MyModel(timestampable.UpdatedAtMixin, models.Model):
       operation = models.CharField(max_length=10)

   model = MyModel()
   print(model.updated_at)
   model.operation = 'update'
   model.save()
   print(model.updated_at)

UpdatedByMixin
--------------

Add ``updated_by`` field to model.

.. sourcecode:: python

   from django.contrib.auth.models import User
   from django.db import models
   from django_extra_tools.db.models import timestampable

   class MyModel(timestampable.UpdatedByMixin, models.Model):
       operation = models.CharField(max_length=10)

   user = User.objects.get(username='user')
   model = MyModel()
   print(model.updated_by)
   model.operation = 'update'
   model.save_by(user)
   print(model.updated_by)

DeletedAtMixin
--------------

Add ``deleted_at`` field to model.

.. sourcecode:: python

   from django.db import models
   from django_extra_tools.db.models import timestampable

   class MyModel(timestampable.DeletedAtMixin, models.Model):
       pass

   model = MyModel()
   print(model.deleted_at)
   model.delete()
   print(model.deleted_at)

DeletedByMixin
--------------

Add ``deleted_by`` field to model.

.. sourcecode:: python

   from django.contrib.auth.models import User
   from django.db import models
   from django_extra_tools.db.models import timestampable

   class MyModel(timestampable.DeletedByMixin, models.Model):
       pass

   user = User.objects.get(username='user')
   model = MyModel()
   print(model.deleted_by)
   model.delete_by(user)
   print(model.deleted_by)

CreatedMixin
------------

Add ``created_at`` and ``created_by`` fields to model.

UpdatedMixin
------------

Add ``updated_at`` and ``updated_by`` fields to model.

DeletedMixin
------------

Add ``deleted_at`` and ``deleted_by`` fields to model.

Database functions
==================

batch_qs
--------

Returns a (start, end, total, queryset) tuple for each batch in the given queryset.

.. sourcecode:: python

   from django_extra_tools.db.models import batch_qs

   qs = Table.objects.all()
   start, end, total, queryset = batch_qs(qs, 10)

pg_version
----------

Return tuple with PostgreSQL version of a specific connection.

.. sourcecode:: python

   from django_extra_tools.db.models import pg_version

   version = pg_version()

HTTP Response
=============

HttpResponseGetFile
-------------------

An HTTP response class with the "download file" headers.

.. sourcecode:: python

   from django_extra_tools.http import HttpResponseGetFile

   return HttpResponseGetFile(filename='file.txt', content=b'file content', content_type='file/text')

WSGI Request
============

get_client_ip
-------------

Get the client IP from the request.

.. sourcecode:: python

   from django_extra_tools.wsgi_request import get_client_ip

   ip = get_client_ip(request)

Management
==========

OneInstanceCommand
------------------

A management command which will be run only one instance of command with
name ``name``. No other command with name ``name`` can not be run in the
same time.

.. sourcecode:: python

   from django_extra_tools.management import OneInstanceCommand

   class Command(OneInstanceCommand):
       name = 'mycommand'

       def handle_instance(self, *args, **options):
           # some operations

NagiosCheckCommand
------------------

A management command which perform a Nagios check.

.. sourcecode:: python

   from django_extra_tools.management import NagiosCheckCommand

   class Command(NagiosCheckCommand):
       def handle_nagios_check(self, *args, **options):
           return self.STATE_OK, 'OK'

Middleware
==========

XhrMiddleware
-------------

This middleware allows cross-domain XHR using the html5 postMessage API.

.. sourcecode:: python

   MIDDLEWARE_CLASSES = (
       ...
       'django_extra_tools.middleware.XhrMiddleware'
   )

   XHR_MIDDLEWARE_ALLOWED_ORIGINS = '*'
   XHR_MIDDLEWARE_ALLOWED_METHODS = ['POST', 'GET', 'OPTIONS', 'PUT', 'DELETE']
   XHR_MIDDLEWARE_ALLOWED_HEADERS = ['Content-Type', 'Authorization', 'Location', '*']
   XHR_MIDDLEWARE_ALLOWED_CREDENTIALS = 'true'
   XHR_MIDDLEWARE_EXPOSE_HEADERS = ['Location']


