Skip to content

Instantly share code, notes, and snippets.

@hvelarde
Created April 6, 2016 16:22
Show Gist options
  • Save hvelarde/b6650b98739a17356e99af28b371c03d to your computer and use it in GitHub Desktop.
Save hvelarde/b6650b98739a17356e99af28b371c03d to your computer and use it in GitHub Desktop.
Hacks to work around API inconsistencies between Archetypes and Dexterity
# -*- coding: utf-8 -*-
"""Hacks to work around API inconsistencies between Archetypes and Dexterity."""
def set_image_field(obj, image, content_type):
"""Set image field in object on both, Archetypes and Dexterity."""
from plone.namedfile.file import NamedBlobImage
try:
obj.setImage(image) # Archetypes
except AttributeError:
# Dexterity
data = image if type(image) == str else image.getvalue()
obj.image = NamedBlobImage(data=data, contentType=content_type)
finally:
obj.reindexObject()
def set_file_field(obj, file, content_type):
"""Set file field in object on both, Archetypes and Dexterity."""
from plone.namedfile.file import NamedBlobFile
try:
obj.setFile(file) # Archetypes
except AttributeError:
# Dexterity
obj.file = NamedBlobFile(data=file, contentType=content_type)
finally:
obj.reindexObject()
def set_text_field(obj, text):
"""Set text field in object on both, Archetypes and Dexterity."""
from plone.app.textfield.value import RichTextValue
try:
obj.setText(text) # Archetypes
except AttributeError:
obj.text = RichTextValue(text, 'text/html', 'text/html') # Dexterity
finally:
obj.reindexObject()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment