Keep track of creation, update and deletion of models
Project description
Keep track of creation, update and hiding of models
Installation
This was developed using:
Django 1.7
Python 3.4
I cannot guarantee it will work for anything older than that, but it probably works for later versions.
Install the latest official release using pip:
pip install django-trufflehog
You can install the latest development version using pip:
pip install git+git://github.com/jleeothon/trufflehog/
Usage
Warning. Until release of version 1.0, API is bound to change.
Models
There are two Model subclasses that you can mix into your models: DateTraceable and Hideable. The former adds two datetime fields to the model: created and updated.
To include either or both in a model, mix-in these classes like this:
# models.py from django.db import models from django.db.models import Model from trufflehog, import DateTracreable, Hideable class HappyHog(DateTraceable, Hideable, Model): name = models.CharField(max_length=100) happiness = models.IntegerField()
Given there exists happy_hog = HappyHog(name="Moccus"), check the datetime of creation and edition with happy_hog.created and happy_hog.updated.
When checking whether or not a model is hidden, happy_hog.hidden will return the datetime of deletion and can be used as a boolean test. If a boolean variable is strictly necessary, you could use happy_hog.is_hidden.
Managers
Add a manager to peek into only hidden or only visible model instances:
# models.py import trufflehog class HappyHog(DateTraceable, Hideable, Model): # some fields here hidden_objects = trufflehog.VisibilityManager(visible=False) visible_objects = trufflehog.VisibilityManager(visible=True)
But if you want to override the default objects manager:
objects = trufflehog.VisibilityManager(visible=True)
You can also create your own custom managers by mixing-in VisibilityManagerMixin:
# mymanagers.py from django.db import models import trufflehog.managers class SuperHappyHogManager(trufflehog.managers.VisibilityManagerMixin, models.Manager): def get_queryset(self): """ Only queries on hogs whose happiness is over 9000. """ q = super(HappyHogManager, self).get_queryset() q = q.filter(happiness__gt=9000) return q
Thanks
Well, thanks. At least for reading this. Also, if you file an issue or contribute to this repository, have my thanks beforehand. Any good or bad ideas or comments are appreciated.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-trufflehog-0.3.0.tar.gz
.
File metadata
- Download URL: django-trufflehog-0.3.0.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae031f8a314ebd153a925b8fbafdfd57896e68434a352d35a512ad5a36dfe8db |
|
MD5 | 721f5706122326092a81c13b895e1d25 |
|
BLAKE2b-256 | 93b0839874dd6cdf0dc31ec5a5238e5ae86d595ac3f1e996fabb9774dbae81c6 |