mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-05 16:39:42 +00:00
22 lines
729 B
Python
22 lines
729 B
Python
''' base model with default fields '''
|
|
from django.db import models
|
|
|
|
from fedireads.settings import DOMAIN
|
|
|
|
# TODO maybe this should be in /models?
|
|
class FedireadsModel(models.Model):
|
|
''' fields and functions for every model '''
|
|
created_date = models.DateTimeField(auto_now_add=True)
|
|
updated_date = models.DateTimeField(auto_now=True)
|
|
|
|
@property
|
|
def absolute_id(self):
|
|
''' constructs the absolute reference to any db object '''
|
|
base_path = 'https://%s' % DOMAIN
|
|
if hasattr(self, 'user'):
|
|
base_path = self.user.absolute_id
|
|
model_name = type(self).__name__.lower()
|
|
return '%s/%s/%d' % (base_path, model_name, self.id)
|
|
|
|
class Meta:
|
|
abstract = True
|