22 lines
617 B
Python
22 lines
617 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from .models import MetadataType
|
|
|
|
|
|
class DocumentMetadataHelper(object):
|
|
@staticmethod
|
|
@property
|
|
def constructor(source_object):
|
|
return DocumentMetadataHelper(source_object)
|
|
|
|
def __init__(self, instance):
|
|
self.instance = instance
|
|
|
|
def __getattr__(self, name):
|
|
try:
|
|
return self.instance.metadata.get(metadata_type__name=name).value
|
|
except MetadataType.DoesNotExist:
|
|
raise AttributeError(_('\'metadata\' object has no attribute \'%s\'') % name)
|