Source code for swimlane.core.fields.attachment
import mimetypes
from swimlane.core.resources.attachment import Attachment
from .base import CursorField, FieldCursor, ReadOnly
[docs]class AttachmentCursor(FieldCursor):
"""Allows creation and iteration of attachments"""
[docs] def add(self, filename, stream, content_type=None):
"""Upload a new attachment, and add it to current fields raw data to be persisted on save
Can optionally manually set the content_type, will be guessed by provided filename extension and default to
application/octet-stream if it cannot be guessed
"""
# Guess file Content-Type or default
content_type = content_type or mimetypes.guess_type(filename)[0] or 'application/octet-stream'
response = self._record._swimlane.request(
'post',
'attachment',
files={
'file': (filename, stream, content_type)
},
)
# Returns raw attachment data as list with single element
raw_attachment_data = response.json()[0]
attachment = Attachment(self._record._swimlane, raw_attachment_data)
self._elements.append(attachment)
self._record._raw['values'].setdefault(self._field.id, [])
self._record._raw['values'][self._field.id].append(attachment._raw)
return attachment
[docs]class AttachmentsField(ReadOnly, CursorField):
field_type = 'Core.Models.Fields.AttachmentField, Core'
cursor_class = AttachmentCursor
[docs] def get_initial_elements(self):
raw_value = self.get_swimlane() or []
return [Attachment(self.record._swimlane, raw) for raw in raw_value]