Mercurial > hg > orthanc-book
view Sphinx/source/plugins/python/storage-area.py @ 880:ac9b677b73c3
object-storage 2.1.0
author | Alain Mazy <am@osimis.io> |
---|---|
date | Fri, 21 Oct 2022 14:57:05 +0200 |
parents | a296fe06fd86 |
children |
line wrap: on
line source
import orthanc import os def GetPath(uuid, contentType): # Returns the path where to store the given attachment return 'attachment-%d-%s' % (contentType, uuid) def OnCreate(uuid, contentType, data): with open(GetPath(uuid, contentType), 'wb') as f: f.write(data) def OnRead(uuid, contentType): with open(GetPath(uuid, contentType), 'rb') as f: return f.read() def OnRemove(uuid, contentType): os.remove(GetPath(uuid, contentType)) orthanc.RegisterStorageArea(OnCreate, OnRead, OnRemove)