############################################################################## # # Zope Public License (ZPL) Version 1.0 # ------------------------------------- # # Copyright (c) Digital Creations. All rights reserved. # # This license has been certified as Open Source(tm). # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # 1. Redistributions in source code must retain the above copyright # notice, this list of conditions, and the following disclaimer. # # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions, and the following disclaimer in # the documentation and/or other materials provided with the # distribution. # # 3. Digital Creations requests that attribution be given to Zope # in any manner possible. Zope includes a "Powered by Zope" # button that is installed by default. While it is not a license # violation to remove this button, it is requested that the # attribution remain. A significant investment has been put # into Zope, and this effort will continue if the Zope community # continues to grow. This is one way to assure that growth. # # 4. All advertising materials and documentation mentioning # features derived from or use of this software must display # the following acknowledgement: # # "This product includes software developed by Digital Creations # for use in the Z Object Publishing Environment # (http://www.zope.org/)." # # In the event that the product being advertised includes an # intact Zope distribution (with copyright and license included) # then this clause is waived. # # 5. Names associated with Zope or Digital Creations must not be used to # endorse or promote products derived from this software without # prior written permission from Digital Creations. # # 6. Modified redistributions of any form whatsoever must retain # the following acknowledgment: # # "This product includes software developed by Digital Creations # for use in the Z Object Publishing Environment # (http://www.zope.org/)." # # Intact (re-)distributions of any official Zope release do not # require an external acknowledgement. # # 7. Modifications are encouraged but must be packaged separately as # patches to official Zope releases. Distributions that do not # clearly separate the patches from the original work must be clearly # labeled as unofficial distributions. Modifications which do not # carry the name Zope may be packaged in any form, as long as they # conform to all of the clauses above. # # # Disclaimer # # THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS ``AS IS'' AND ANY # EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DIGITAL CREATIONS OR ITS # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # # This software consists of contributions made by Digital Creations and # many individuals on behalf of Digital Creations. Specific # attributions are listed in the accompanying credits file. # ############################################################################## """Image object""" __version__='$Revision: 1.90 $'[11:-2] import Globals, string, struct, content_types from OFS.content_types import guess_content_type from Globals import HTMLFile, MessageDialog from PropertyManager import PropertyManager from AccessControl.Role import RoleManager from webdav.common import rfc1123_date from SimpleItem import Item_w__name__ from cStringIO import StringIO from Globals import Persistent from Acquisition import Implicit from DateTime import DateTime StringType=type('') manage_addFileForm=HTMLFile('imageAdd', globals(),Kind='File',kind='file') def manage_addFile(self,id,file,title='',precondition='', content_type='', REQUEST=None): """Add a new File object. Creates a new File object 'id' with the contents of 'file'""" id, title = cookId(id, title, file) self=self.this() # First, we create the file without data: self._setObject(id, File(id,title,'',content_type, precondition)) # Now we "upload" the data. By doing this in two steps, we # can use a database trick to make the upload more efficient. self._getOb(id).manage_upload(file) if REQUEST is not None: REQUEST['RESPONSE'].redirect(self.absolute_url()+'/manage_main') class File(Persistent,Implicit,PropertyManager, RoleManager,Item_w__name__): """A File object is a content object for arbitrary files.""" meta_type='File' precondition='' size=None manage_editForm =HTMLFile('fileEdit',globals(),Kind='File',kind='file') manage_uploadForm=HTMLFile('imageUpload',globals(),Kind='File',kind='file') manage=manage_main=manage_editForm manage_options=({'label':'Edit', 'action':'manage_main'}, {'label':'Upload', 'action':'manage_uploadForm'}, {'label':'Properties', 'action':'manage_propertiesForm'}, {'label':'View', 'action':''}, {'label':'Security', 'action':'manage_access'}, ) __ac_permissions__=( ('View management screens', ('manage', 'manage_main', 'manage_uploadForm',)), ('Change Images and Files', ('manage_edit','manage_upload','PUT')), ('View', ('index_html', 'tag', 'view_image_or_file', 'getSize', 'getContentType', '')), ('FTP access', ('manage_FTPstat','manage_FTPget','manage_FTPlist')), ('Delete objects', ('DELETE',)), ) _properties=({'id':'title', 'type': 'string'}, {'id':'content_type', 'type':'string'}, ) def __init__(self, id, title, file, content_type='', precondition=''): self.__name__=id self.title=title self.precondition=precondition data, size = self._read_data(file) content_type=self._get_content_type(file, data, id, content_type) self.update_data(data, content_type, size) def id(self): return self.__name__ def index_html(self, REQUEST, RESPONSE): """ The default view of the contents of a File or Image. Returns the contents of the file or image. Also, sets the Content-Type HTTP header to the objects content type. """ # Attempt to handle If-Modified-Since headers. ms=REQUEST.get_header('If-Modified-Since', None) if ms is not None: ms=string.split(ms, ';')[0] ms=DateTime(ms).timeTime() if self._p_mtime > ms: RESPONSE.setStatus(304) return RESPONSE if self.precondition and hasattr(self,self.precondition): # Grab whatever precondition was defined and then # execute it. The precondition will raise an exception # if something violates its terms. c=getattr(self,self.precondition) if hasattr(c,'isDocTemp') and c.isDocTemp: c(REQUEST['PARENTS'][1],REQUEST) else: c() RESPONSE.setHeader('Last-Modified', rfc1123_date(self._p_mtime)) RESPONSE.setHeader('Content-Type', self.content_type) RESPONSE.setHeader('Content-Length', self.size) data=self.data if type(data) is type(''): return data while data is not None: RESPONSE.write(data.data) data=data.next return '' def view_image_or_file(self, URL1): """ The default view of the contents of the File or Image. """ raise 'Redirect', URL1 def update_data(self, data, content_type=None, size=None): if content_type is not None: self.content_type=content_type if size is None: size=len(data) self.size=size self.data=data def manage_edit(self, title, content_type, precondition='', REQUEST=None): """ Changes the title and content type attributes of the File or Image. """ self.title=title self.content_type=content_type if precondition: self.precondition=precondition elif self.precondition: del self.precondition if REQUEST: message="Your changes have been saved" return self.manage_main(self, REQUEST, manage_tabs_message=message) def manage_upload(self,file='',REQUEST=None): """ Replaces the current contents of the File or Image object with file. The file or images contents are replaced with the contents of 'file'. """ data, size = self._read_data(file) content_type=self._get_content_type(file, data, self.__name__, self.content_type) self.update_data(data, content_type, size) if REQUEST: return MessageDialog( title ='Success!', message='Your changes have been saved', action ='manage_main') def _get_content_type(self, file, body, id, content_type=None): headers=getattr(file, 'headers', None) if headers and headers.has_key('content-type'): content_type=headers['content-type'] else: if type(body) is not type(''): body=body.data content_type, enc=guess_content_type( getattr(file, 'filename',id), body, content_type) return content_type def _read_data(self, file): n=1<<16 if type(file) is StringType: size=len(file) if size < n: return file, size return Pdata(file), size seek=file.seek read=file.read seek(0,2) size=end=file.tell() if size <= 2*n: seek(0) if size < n: return read(size), size return Pdata(read(size)), size # Make sure we have an _p_jar, even if we are a new object, by # doing a sub-transaction commit. get_transaction().commit(1) jar=self._p_jar if jar is None: # Ugh seek(0) return Pdata(read(size)), size # Now we're going to build a linked list from back # to front to minimize the number of database updates # and to allow us to get things out of memory as soon as # possible. next=None while end > 0: pos=end-n if pos < n: pos=0 # we always want at least n bytes seek(pos) data=Pdata(read(end-pos)) # Woooop Woooop Woooop! This is a trick. # We stuff the data directly into our jar to reduce the # number of updates necessary. data._p_jar=jar # This is needed and has side benefit of getting # the thing registered: data.next=next # Now make it get saved in a sub-transaction! get_transaction().commit(1) # Now make it a ghost to free the memory. We # don't need it anymore! data._p_changed=None next=data end=pos return next, size def PUT(self, REQUEST, RESPONSE): """Handle HTTP PUT requests""" self.dav__init(REQUEST, RESPONSE) type=REQUEST.get_header('content-type', None) file=REQUEST['BODYFILE'] data, size = self._read_data(file) content_type=self._get_content_type(file, data, self.__name__, type or self.content_type) self.update_data(data, content_type, size) RESPONSE.setStatus(204) return RESPONSE def getSize(self): """Get the size of a file or image. Returns the size of the file or image. """ size=self.size if size is None: size=len(self.data) return size get_size=getSize def getContentType(self): """Get the content type of a file or image. Returns the content type (MIME type) of a file or image. """ return self.content_type size=getSize def __str__(self): return str(self.data) def __len__(self): return 1 manage_FTPget=index_html manage_addImageForm=HTMLFile('imageAdd',globals(),Kind='Image',kind='image') def manage_addImage(self, id, file, title='', precondition='', content_type='', REQUEST=None): """ Add a new Image object. Creates a new Image object 'id' with the contents of 'file'. """ id, title = cookId(id, title, file) self=self.this() # First, we create the image without data: self._setObject(id, Image(id,title,'',content_type, precondition)) # Now we "upload" the data. By doing this in two steps, we # can use a database trick to make the upload more efficient. self._getOb(id).manage_upload(file) if REQUEST is not None: try: url=self.DestinationURL() except: url=REQUEST['URL1'] REQUEST.RESPONSE.redirect('%s/manage_main' % url) return id class Image(File): """Image objects can be GIF, PNG or JPEG and have the same methods as File objects. Images also have a string representation that renders an HTML 'IMG' tag. """ meta_type='Image' height='' width='' border='' _properties=({'id':'title', 'type': 'string'}, {'id':'content_type', 'type':'string'}, {'id':'height', 'type':'string'}, {'id':'width', 'type':'string'}, {'id':'border', 'type':'string'}, ) manage_options=({'label':'Edit', 'action':'manage_main'}, {'label':'Upload', 'action':'manage_uploadForm'}, {'label':'Properties', 'action':'manage_propertiesForm'}, {'label':'View', 'action':'view_image_or_file'}, {'label':'Security', 'action':'manage_access'}, ) manage_editForm =HTMLFile('imageEdit',globals(),Kind='Image',kind='image') view_image_or_file =HTMLFile('imageView',globals()) manage_uploadForm=HTMLFile('imageUpload',globals(),Kind='Image', kind='image') manage=manage_main=manage_editForm def update_data(self, data, content_type=None, size=None): if content_type is not None: self.content_type=content_type if size is None: size=len(data) self.size=size self.data=data data=str(data) # handle GIFs if (size >= 10) and data[:6] in ('GIF87a', 'GIF89a'): w, h = struct.unpack("= 2) and (data[:2] == '\377\330'): jpeg=StringIO(data) jpeg.read(2) b=jpeg.read(1) try: while (b and ord(b) != 0xDA): while (ord(b) != 0xFF): b = jpeg.read(1) while (ord(b) == 0xFF): b = jpeg.read(1) if (ord(b) >= 0xC0 and ord(b) <= 0xC3): jpeg.read(3) h, w = struct.unpack(">HH", jpeg.read(4)) break else: jpeg.read(int(struct.unpack(">H", jpeg.read(2))[0])-2) b = jpeg.read(1) self.width=str(int(w)) self.height=str(int(h)) except: pass # handle PNGs # Someone says this is the right thing: # Re: PNG v1.2 spec (http://www.cdrom.com/pub/png/spec/) # Bytes 0-7 are below, 4-byte chunk length, then 'IHDR' # and finally the 4-byte width, height elif (size >= 24) and (data[:8] == '\211PNG\r\n\032\n') \ and (data[12:16] == 'IHDR'): w, h = struct.unpack(">LL", data[16:24]) self.width=str(int(w)) self.height=str(int(h)) # But we had this before. I have no clue, so I'll keep both. :) # Maybe this is for an older PNG version. elif (size >= 16) and (data[:8] == '\x89PNG\r\n\x1a\n'): w, h = struct.unpack(">LL", data[8:16]) self.width=str(int(w)) self.height=str(int(h)) def __str__(self): width=self.width and ('width="%s" ' % self.width) or '' height=self.height and ('height="%s" ' % self.height) or '' border=self.border and ('border="%s" ' % self.border) or '' if border=='': border='border=0' # jon's place in the code return '' % ( self.absolute_url(), width, height, self.title_or_id(), border ) def tag(self, height=None, width=None, border=None, alt=None, scale=0, xscale=0, yscale=0, **args): """ Generate an HTML IMG tag for this image, with customization. Arguments to self.tag() can be any valid attributes of an IMG tag. 'src' will always be an absolute pathname, to prevent redundant downloading of images. Defaults are applied intelligently for 'height', 'width', and 'alt'. If specified, the 'scale', 'xscale', and 'yscale' keyword arguments will be used to automatically adjust the output height and width values of the image tag. """ if height is None: height=self.height if width is None: width=self.width if border is None: border=self.border # Auto-scaling support xdelta = xscale or scale ydelta = yscale or scale if xdelta and width==None: width = int(width) * xdelta if ydelta and height==None: height = int(height) * ydelta string=' 0: string = '%s border="%"' % (string, border) else: string = '%s border="0"' % (string) for key in args.keys(): value = args.get(key) string = '%s %s="%s"' % (string, key, value) return string + '>' def cookId(id, title, file): if not id and hasattr(file,'filename'): filename=file.filename title=title or filename id=filename[max(string.rfind(filename, '/'), string.rfind(filename, '\\'), string.rfind(filename, ':'), )+1:] return id, title class Pdata(Persistent, Implicit): # Wrapper for possibly large data next=None def __init__(self, data): self.data=data def __getslice__(self, i, j): return self.data[i:j] def __len__(self): return len(self.data) def __str__(self): next=self.next if next is None: return self.data r=[self.data] while next is not None: self=next r.append(self.data) next=self.next return string.join(r,'')