chapeau/django_kepi/something_model.py

41 wiersze
844 B
Python
Czysty Zwykły widok Historia

2018-10-29 13:35:18 +00:00
from django.db import models
from django_kepi import object_type_registry
from django_kepi.cache_model import Cache
2018-10-29 13:35:18 +00:00
#######################
class SomethingManager(models.Manager):
2018-10-29 13:35:18 +00:00
f_type = None
2018-10-29 13:35:18 +00:00
def get_queryset(self):
# TODO augment QSs with contenttypes link to source
2018-10-29 13:35:18 +00:00
result = models.QuerySet(
model = self.parent_model,
)
handlers = [
Cache.objects.filter(f_type=self.f_type),
]
handlers.extend([
h.objects.all()
for h in object_type_registry[self.f_type]])
2018-10-29 13:35:18 +00:00
return result
#######################
class Person(models.Model):
f_type = 'Person'
objects = SomethingManager()
objects.f_type = f_type
2018-10-29 13:35:18 +00:00
class Meta:
managed = False
Person.objects.parent_model = Person # this is ugly