This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
devicehub-teal/ereuse_devicehub/resources/documents/schemas.py

36 lines
1.7 KiB
Python
Raw Normal View History

2021-08-10 10:45:03 +00:00
from marshmallow.fields import DateTime, Integer, validate, Boolean, Float
from marshmallow import post_load
from marshmallow.validate import Range
2021-07-21 06:35:18 +00:00
from teal.marshmallow import SanitizedStr, URL
2021-08-10 10:45:03 +00:00
from ereuse_devicehub.marshmallow import NestedOn
2021-07-21 06:35:18 +00:00
from ereuse_devicehub.resources.schemas import Thing
2021-08-10 10:45:03 +00:00
from ereuse_devicehub.resources.tradedocument.models import TradeDocument
2021-07-21 06:35:18 +00:00
from ereuse_devicehub.resources.documents import models as m
class DataWipeDocument(Thing):
__doc__ = m.DataWipeDocument.__doc__
id = Integer(description=m.DataWipeDocument.id.comment, dump_only=True)
2021-08-06 09:08:58 +00:00
url = URL(required= False, description=m.DataWipeDocument.url.comment)
success = Boolean(required=False, default=False, description=m.DataWipeDocument.success.comment)
software = SanitizedStr(description=m.DataWipeDocument.software.comment)
2021-07-21 06:35:18 +00:00
date = DateTime(data_key='endTime',
required=False,
description=m.DataWipeDocument.date.comment)
2021-07-21 06:35:18 +00:00
id_document = SanitizedStr(data_key='documentId',
2021-08-04 16:15:15 +00:00
required=False,
2021-07-21 06:35:18 +00:00
default='',
description=m.DataWipeDocument.id_document.comment)
2021-07-21 06:35:18 +00:00
file_name = SanitizedStr(data_key='filename',
default='',
description=m.DataWipeDocument.file_name.comment,
2021-07-21 06:35:18 +00:00
validate=validate.Length(max=100))
file_hash = SanitizedStr(data_key='hash',
default='',
description=m.DataWipeDocument.file_hash.comment,
2021-07-21 06:35:18 +00:00
validate=validate.Length(max=64))
2021-08-10 10:45:03 +00:00
@post_load
def get_trade_document(self, data):
data['document_type'] = 'DataWipeDocument'