#########################################################################
#
# Copyright (C) 2020 OSGeo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#########################################################################
import logging
from dynamic_rest.fields.fields import DynamicComputedField
from geonode.base.api.serializers import ResourceBaseSerializer
from geonode.documents.models import Document
[docs]
logger = logging.getLogger(__name__)
[docs]
class GeonodeFilePathField(DynamicComputedField):
[docs]
def get_attribute(self, instance):
return instance.files
[docs]
class DocumentFieldField(DynamicComputedField):
[docs]
def get_attribute(self, instance):
return instance.files
[docs]
class DocumentSerializer(ResourceBaseSerializer):
def __init__(self, *args, **kwargs):
# Instantiate the superclass normally
super().__init__(*args, **kwargs)
[docs]
file_path = GeonodeFilePathField(required=False)
[docs]
doc_file = DocumentFieldField(required=False)
[docs]
def to_representation(self, obj):
_doc = super(DocumentSerializer, self).to_representation(obj)
# better to hide internal server file path
_doc.pop("file_path")
_doc.pop("doc_file")
return _doc