Diff for /OSA_system2/OSAS_server.py between versions 1.10 and 1.17

version 1.10, 2005/02/14 18:15:16 version 1.17, 2005/11/25 10:50:39
Line 8  import base64 Line 8  import base64
 from Products.PageTemplates.PageTemplateFile import PageTemplateFile  from Products.PageTemplates.PageTemplateFile import PageTemplateFile
 from Globals import InitializeClass,package_home  from Globals import InitializeClass,package_home
 from OFS.SimpleItem import SimpleItem  from OFS.SimpleItem import SimpleItem
   import zLOG
   
 def encodeRPC(string):  def encodeRPC(string):
     return base64.encodestring(bz2.compress(string))      return base64.encodestring(bz2.compress(string))
Line 19  class OSAS_storeOnlineServer(SimpleItem) Line 20  class OSAS_storeOnlineServer(SimpleItem)
           
     meta_type="OSAS_server"      meta_type="OSAS_server"
   
       def __init__(self,id):
           """initalize osas_server"""
           self.id = id
           
       def getImages(self,path):
           """hack"""
           imageEnding=['.gif','.jpg','.jpeg','.png','.tiff','.tif']
   
           dirs=os.listdir(path)
           ret=[]
   
           for dir in dirs:
   
               if os.path.isdir(os.path.join(path,dir)):
                   
                   for subdir in os.listdir(os.path.join(path,dir)):
                       if os.path.splitext(subdir)[1].lower() in imageEnding:
                           ret.append(os.path.join(dir,subdir))
               else:
                   if os.path.splitext(dir)[1] in imageEnding:
                           ret.append(os.path.join(dir))
           return ret
       
   
       def getMovies(self,path):
           """hack"""
           movieEnding=['.dv','.mov','.mp4']
           dirs=os.listdir(path)
           ret=[]
           for dir in dirs:
               if os.path.isdir(os.path.join(path,dir)):
                   for subdir in os.listdir(os.path.join(path,dir)):
                       if os.path.splitext(subdir)[1].lower() in movieEnding:
                           ret.append(os.path.join(dir,subdir))
               else:
                   if os.path.splitext(dir)[1] in movieEnding:
                           ret.append(os.path.join(dir))
           return ret
       
       
     def findIndexMeta(self,realPath=""):      def findIndexMeta(self,realPath=""):
         """finde Rueckwaerts im Baum von Pfad ausgehend, dass erste index.meta file          """finde Rueckwaerts im Baum von Pfad ausgehend, dass erste index.meta file
Line 100  class OSAS_storeOnlineServer(SimpleItem) Line 140  class OSAS_storeOnlineServer(SimpleItem)
             compressed=encodeRPC(file(path+"/index.meta","r").read())              compressed=encodeRPC(file(path+"/index.meta","r").read())
             ret["."]=('OSAS_dir',compressed)              ret["."]=('OSAS_dir',compressed)
         for dir in os.listdir(path):          for dir in os.listdir(path):
           zLOG.LOG("SERVER",zLOG.INFO,"get all index meta in %s"%dir) 
             fileType=OSAS_helpers.checkOSASFileType(os.path.join(path,dir))              fileType=OSAS_helpers.checkOSASFileType(os.path.join(path,dir))
             if os.path.exists(os.path.join(path,dir,"index.meta")):              if os.path.exists(os.path.join(path,dir,"index.meta")):
                 compressed=encodeRPC(file(os.path.join(path,dir,"index.meta"),"r").read())                  compressed=encodeRPC(file(os.path.join(path,dir,"index.meta"),"r").read())
Line 108  class OSAS_storeOnlineServer(SimpleItem) Line 149  class OSAS_storeOnlineServer(SimpleItem)
                 ret[dir]=(fileType,None)                  ret[dir]=(fileType,None)
         return ret          return ret
   
                                     def writeMetaDataFile(self,path,metadata):
           """writefiletoserver"""
           try:
               fh=file(path,"w")
               fh.write(metadata)
               fh.close
               return True
           except:
               return False
   
       def generateMovieThumb(self,input,output):
           """generate Movie"""
           zLOG.LOG("SERVER",zLOG.INFO,"/usr/local/bin/thumbbite.pl %s %s"%(input,output)) 
           ret=os.popen("/usr/local/bin/thumbbite.pl %s %s"%(input,output))
           zLOG.LOG("SERVER",zLOG.INFO,ret)                        
           return "ok"
                   
 def manage_addOSAS_storeOnlineServerForm(self):  def manage_addOSAS_storeOnlineServerForm(self):
     """interface for adding the OSAS_storeOnline"""      """interface for adding the OSAS_storeOnline"""

Removed from v.1.10  
changed lines
  Added in v.1.17


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>