############################################################################## # # Copyright (c) 2002-2006 Nexedi SARL and Contributors. All Rights Reserved. # # 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.CMFCore.WorkflowCore import WorkflowMethod from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type.Cache import CachingMethod from Products.ERP5.Document.File import File from Products.ERP5Type.XMLObject import XMLObject # to overwrite WebDAV methods from Products.CMFDefault.File import File as CMFFile import mimetypes, re from DateTime import DateTime mimetypes.init() rs=[] rs.append(re.compile('')) rs.append(re.compile('
.*',re.DOTALL|re.MULTILINE|re.IGNORECASE)) rs.append(re.compile('<.?(HTML|BODY)[^>]*>',re.DOTALL|re.MULTILINE|re.IGNORECASE)) def stripHtml(txt): for r in rs: txt=r.sub('',txt) return txt class CachingMixin: # time of generation of various formats cached_time={} # generated files (cache) cached_data={} # mime types for cached formats XXX to be refactored cached_mime={} # Declarative security security = ClassSecurityInfo() security.declareObjectProtected(Permissions.AccessContentsInformation) security.declareProtected(Permissions.ModifyPortalContent,'clearCache') def clearCache(self): """ Clear cache (invoked by interaction workflow upon file upload needed here to overwrite class attribute with instance attrs """ self.cached_time={} self.cached_data={} self.cached_mime={} security.declareProtected(Permissions.View,'hasFileCache') def hasFileCache(self,format): """ Checks whether we have a version in this format """ return self.cached_data.has_key(format) def getCacheTime(self,format): """ Checks when if ever was the file produced """ return self.cached_time.get(format,0) def cacheUpdate(self,format): self.cached_time[format]=DateTime() def cacheSet(self,format,mime=None,data=None): if mime is not None: self.cached_mime[format]=mime if data is not None: self.cached_data[format]=data def cacheGet(self,format): ''' we could be much cooler here - pass testing and updating methods to this function so that it does it all by itself; this'd eliminate the need for cacheSet public method ''' return self.cached_mime.get(format,''),self.cached_data.get(format,'') security.declareProtected(Permissions.View,'getCacheInfo') def getCacheInfo(self): """ Get cache details as string (for debugging) """ s='CACHE INFO:format | size | time | is changed |
%s | %s | %s | %s |