Commit 4fc407f3 authored by Jean-Paul Smets's avatar Jean-Paul Smets

Fixed and improved Image. Prevent infinite recursion on WebSection.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@12347 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 83ba8d9f
...@@ -113,13 +113,34 @@ class Image(File, OFSImage): ...@@ -113,13 +113,34 @@ class Image(File, OFSImage):
content_type, width, height = getImageInfo(self.data) content_type, width, height = getImageInfo(self.data)
self.height = height self.height = height
self.width = width self.width = width
self.size = len(self.data)
self._setContentType(content_type) self._setContentType(content_type)
def _upradeImage(self):
"""
This method upgrades internal data structures is required
"""
# Quick hack to maintain just enough compatibility for existing sites
# Convert to new BTreeFolder2 based class
if getattr(aq_base(self), '_count', None) is None:
self._initBTrees()
# Make sure old Image objects can still be accessed
if not hasattr(aq_base(self), 'data') and hasattr(self, '_original'):
self.data = self._original.data
self.height = self._original.height
self.width = self._original.width
# Make sure size is defined
if not hasattr(aq_base(self), 'size') or not self.size:
self.size = len(self.data)
security.declareProtected(Permissions.AccessContentsInformation, 'getWidth') security.declareProtected(Permissions.AccessContentsInformation, 'getWidth')
def getWidth(self): def getWidth(self):
""" """
Tries to get the width from the image data. Tries to get the width from the image data.
""" """
self._upradeImage()
if self.get_size() and not self.width: self._update_image_info() if self.get_size() and not self.width: self._update_image_info()
return self.width return self.width
...@@ -128,12 +149,14 @@ class Image(File, OFSImage): ...@@ -128,12 +149,14 @@ class Image(File, OFSImage):
""" """
Tries to get the height from the image data. Tries to get the height from the image data.
""" """
self._upradeImage()
if self.get_size() and not self.height: self._update_image_info() if self.get_size() and not self.height: self._update_image_info()
return self.height return self.height
security.declareProtected(Permissions.AccessContentsInformation, 'getContentType') security.declareProtected(Permissions.AccessContentsInformation, 'getContentType')
def getContentType(self, format=''): def getContentType(self, format=''):
"""Original photo content_type.""" """Original photo content_type."""
self._upradeImage()
if format == '': if format == '':
return self._baseGetContentType() return self._baseGetContentType()
else: else:
...@@ -148,13 +171,15 @@ class Image(File, OFSImage): ...@@ -148,13 +171,15 @@ class Image(File, OFSImage):
alt=None, css_class=None, format='', quality=75, alt=None, css_class=None, format='', quality=75,
resolution=None, **kw): resolution=None, **kw):
"""Return HTML img tag.""" """Return HTML img tag."""
self._upradeImage()
# Get cookie if display is not specified. # Get cookie if display is not specified.
if display is None: if display is None:
display = self.REQUEST.cookies.get('display', None) display = self.REQUEST.cookies.get('display', None)
# display may be set from a cookie. # display may be set from a cookie.
if display is not None and defaultdisplays.has_key(display): if (display is not None or resolution is not None or quality!=75 or format!='')\
and defaultdisplays.has_key(display):
if not self.hasConversion(display=display, format=format, if not self.hasConversion(display=display, format=format,
quality=quality, resolution=resolution): quality=quality, resolution=resolution):
# Generate photo on-the-fly # Generate photo on-the-fly
...@@ -250,19 +275,11 @@ class Image(File, OFSImage): ...@@ -250,19 +275,11 @@ class Image(File, OFSImage):
security.declareProtected('View', 'index_html') security.declareProtected('View', 'index_html')
def index_html(self, REQUEST, RESPONSE, display=None, format='', quality=75, resolution=None): def index_html(self, REQUEST, RESPONSE, display=None, format='', quality=75, resolution=None):
"""Return the image data.""" """Return the image data."""
self._upradeImage()
# Quick hack to maintain just enough compatibility for existing sites
# Convert to new BTreeFolder2 based class
if getattr(aq_base(self), '_count', None) is None:
self._initBTrees()
# Make sure old Image objects can still be accessed
if not hasattr(aq_base(self), 'data') and hasattr(self, '_original'):
self.data = self._original.data
self.height = self._original.height
self.width = self._original.width
# display may be set from a cookie (?) # display may be set from a cookie (?)
if (display is not None or resolution is not None or quality != 75) and defaultdisplays.has_key(display): if (display is not None or resolution is not None or quality!=75 or format!='')\
and defaultdisplays.has_key(display):
if not self.hasConversion(display=display, format=format, if not self.hasConversion(display=display, format=format,
quality=quality,resolution=resolution): quality=quality,resolution=resolution):
# Generate photo on-the-fly # Generate photo on-the-fly
...@@ -322,7 +339,10 @@ class Image(File, OFSImage): ...@@ -322,7 +339,10 @@ class Image(File, OFSImage):
def _getDisplayData(self, display, format='', quality=75, resolution=None): def _getDisplayData(self, display, format='', quality=75, resolution=None):
"""Return raw photo data for given display.""" """Return raw photo data for given display."""
(width, height) = defaultdisplays[display] if display is None:
(width, height) = (self.getWidth(), self.getHeight())
else:
(width, height) = defaultdisplays[display]
if width == 0 and height == 0: if width == 0 and height == 0:
width = self.getWidth() width = self.getWidth()
height = self.getHeight() height = self.getHeight()
......
...@@ -62,10 +62,14 @@ reserved_name_dict = { 'getApplicableLayout' : 1, ...@@ -62,10 +62,14 @@ reserved_name_dict = { 'getApplicableLayout' : 1,
'getOrderedGlobalActionList' : 1, 'getOrderedGlobalActionList' : 1,
'allow_discussion' : 1, 'allow_discussion' : 1,
'im_func' : 1, 'im_func' : 1,
'im_self' : 1,
'ListBox_asHTML' : 1,
'id' : 1, 'id' : 1,
'method_id' : 1, 'method_id' : 1,
'role_map' : 1, 'role_map' : 1,
'func_defaults': 1, } 'func_defaults': 1,
'_v_section_webmaster': 1,
}
reserved_name_dict_init = 0 reserved_name_dict_init = 0
class WebSection(Domain): class WebSection(Domain):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment