# -*- coding: utf-8 -*- ############################################################################## # # Copyright (c) 2010 Nexedi SA and Contributors. All Rights Reserved. # Jean-Paul Smets-Solanes <jp@nexedi.com> # # WARNING: This program as such is intended to be used by professional # programmers who take the whole responsability of assessing all potential # consequences resulting from its eventual inadequacies and bugs # End users who are looking for a ready-to-use solution with commercial # garantees and support are strongly adviced to contract a Free Software # Service Company # # This program is Free Software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################## from AccessControl import ClassSecurityInfo from Products.ERP5Type.Base import WorkflowMethod from Products.ERP5Type import Permissions, PropertySheet from Products.ERP5.Document.Document import Document, VALID_TEXT_FORMAT_LIST from Products.ERP5.Document.Document import ConversionError from Products.ERP5Type.Base import Base, removeIContentishInterface from Products.CMFDefault.File import File as CMFFile from OFS.Image import Pdata import cStringIO from Products.ERP5Type.Utils import deprecated import md5 def _unpackData(data): """ Unpack Pdata into string OBSOLETED. use str(data) instead, because Pdata.__str__ is defined. """ return str(data) _MARKER = object() class File(Document, CMFFile): """ A File can contain raw data which can be uploaded and downloaded. It is the root class of Image, OOoDocument (ERP5OOo product), etc. The main purpose of the File class is to handle efficiently large files. It uses Pdata from OFS.File for this purpose. File inherits from XMLObject and can be synchronized accross multiple sites. Subcontent: File can only contain role information. TODO: * make sure ZODB BLOBS are supported to prevent feeding the ZODB cache with unnecessary large data """ meta_type = 'ERP5 File' portal_type = 'File' add_permission = Permissions.AddPortalContent # Declarative security security = ClassSecurityInfo() security.declareObjectProtected(Permissions.AccessContentsInformation) # Default global values content_type = '' # Required for WebDAV support (default value) data = '' # A hack required to use OFS.Image.index_html without calling OFS.Image.__init__ # Default Properties property_sheets = ( PropertySheet.Base , PropertySheet.XMLObject , PropertySheet.CategoryCore , PropertySheet.DublinCore , PropertySheet.Version , PropertySheet.Reference , PropertySheet.Document , PropertySheet.Data , PropertySheet.ExternalDocument , PropertySheet.Url , PropertySheet.Periodicity ) # OFS.File has an overloaded __str__ that returns the file content __str__ = object.__str__ ### Special edit method security.declarePrivate( '_edit' ) def _edit(self, **kw): """ This is used to edit files """ if 'file' in kw: file_object = kw.pop('file') precondition = kw.get('precondition') filename = getattr(file_object, 'filename', None) # if file field is empty(no file is uploaded), # filename is empty string. if not filename: # settings the filename before calling # _setFile is required to setup the content_type # property filename = kw.get('filename') if filename: self._setFilename(filename) if self._isNotEmpty(file_object): self._setFile(file_object, precondition=precondition) Base._edit(self, **kw) security.declareProtected( Permissions.ModifyPortalContent, 'edit' ) edit = WorkflowMethod( _edit ) def get_size(self): """ has to be overwritten here, otherwise WebDAV fails """ return self.getSize() getcontentlength = get_size def _get_content_type(*args, **kw): """Override original implementation from OFS/Image.py to disable content_type discovery because id of object its used to read the filename value. In ERP5, an interaction document_conversion_interaction_workflow/Document_file, update the content_type by reading filename property """ return None def _setFile(self, data, precondition=None): if data is not None and self.hasData() and \ md5.md5(str(data.read())).digest() ==\ md5.md5(str(self.getData())).digest(): # Compute md5 hash only if there is something to hash on both sides. # # Same data as previous, no need to change it's content return CMFFile._edit(self, precondition=precondition, file=data) security.declareProtected(Permissions.ModifyPortalContent,'setFile') def setFile(self, data, precondition=None): self._setFile(data, precondition=precondition) self.reindexObject() security.declareProtected(Permissions.AccessContentsInformation, 'hasFile') def hasFile(self): """ Checks whether a file was uploaded into the document. """ return self.hasData() security.declareProtected(Permissions.AccessContentsInformation, 'guessMimeType') @deprecated def guessMimeType(self, fname=None): """ Deprecated """ return self.getPortalObject().portal_contributions.\ guessMimeTypeFromFilename(fname) security.declareProtected(Permissions.ModifyPortalContent, '_setData') def _setData(self, data): """ """ size = None # update_data use len(data) when size is None, which breaks this method. # define size = 0 will prevent len be use and keep the consistency of # getData() and setData() if data is None: size = 0 if not isinstance(data, Pdata) and data is not None: file = cStringIO.StringIO(data) data, size = self._read_data(file) if getattr(self, 'update_data', None) is not None: # We call this method to make sure size is set and caches reset self.update_data(data, size=size) else: self._baseSetData(data) # XXX - It would be better to always use this accessor self._setSize(size) self.ZCacheable_invalidate() self.ZCacheable_set(None) self.http__refreshEtag() security.declareProtected(Permissions.AccessContentsInformation, 'getData') def getData(self, default=None): """return Data as str.""" self._checkConversionFormatPermission(None) data = self._baseGetData() if data is None: return None else: return str(data) security.declareProtected(Permissions.ModifyPortalContent,'PUT') def PUT(self, REQUEST, RESPONSE): CMFFile.PUT(self, REQUEST, RESPONSE) # DAV Support PUT = CMFFile.PUT security.declareProtected(Permissions.FTPAccess, 'manage_FTPstat', 'manage_FTPlist') manage_FTPlist = CMFFile.manage_FTPlist manage_FTPstat = CMFFile.manage_FTPstat security.declareProtected(Permissions.AccessContentsInformation, 'getMimeTypeAndContent') def getMimeTypeAndContent(self): """This method returns a tuple which contains mimetype and content.""" from Products.ERP5.Document.EmailDocument import MimeTypeException # return a tuple (mime_type, data) content = None mime_type = self.getContentType() if mime_type is None: raise ValueError('Cannot find mimetype of the document.') try: mime_type, content = self.convert(None) except ConversionError: mime_type = self.getBaseContentType() content = self.getBaseData() except (NotImplementedError, MimeTypeException): pass if content is None: if getattr(self, 'getTextContent', None) is not None: content = self.getTextContent() elif getattr(self, 'getData', None) is not None: content = self.getData() elif getattr(self, 'getBaseData', None) is not None: content = self.getBaseData() if content and not isinstance(content, str): content = str(content) return (mime_type, content) def _convert(self, format, **kw): """According content_type of data we can proceed some Conversions. The idea is to wrap data into TempDocument who support conversion then return conversion from this temporary document. mimetype Class of temp document text/???? newTempTextDocument image/???? newTempImage application/pdf newTempPDFDocument [ooo supported content_type list] newTempOOoDocument unknown no conversion supported XXX Another idea of implementation from JPS: Changing dynamicaly the Class of persistent_object. for example any instance of File portal_type can follow TextDocument API if content_type is 'text/html' and support conversion features of TextDocument. """ content_type = self.getContentType() or '' if format is None: # No conversion is asked, # we can return safely the file content itself return content_type, self.getData() elif format in VALID_TEXT_FORMAT_LIST: # This is acceptable to return empty string # for a File we can not convert return 'text/plain', '' raise NotImplementedError # backward compatibility security.declareProtected(Permissions.AccessContentsInformation, 'getFilename') def getFilename(self, default=_MARKER): """Fallback on getSourceReference as it was used before to store filename property """ if self.hasFilename(): if default is _MARKER: return self._baseGetFilename() else: return self._baseGetFilename(default) else: if default is _MARKER: return self._baseGetSourceReference() else: return self._baseGetSourceReference(default) # CMFFile also brings the IContentishInterface on CMF 2.2, remove it. removeIContentishInterface(File)