Mercurial > hg > orthanc-book
view Sphinx/source/plugins/python/authorization-2.py @ 882:815f70009ec2
highlight osimis/orthanc docker images since jodogne/orthanc images are currently not up-to-date
author | Alain Mazy <am@osimis.io> |
---|---|
date | Fri, 21 Oct 2022 15:19:22 +0200 |
parents | ba2403ebd4b7 |
children |
line wrap: on
line source
import json import orthanc import requests def Filter(uri, **request): body = { 'uri' : uri, 'headers' : request['headers'] } r = requests.post('http://localhost:8000/authorize', data = json.dumps(body)) return r.json() ['granted'] # Must be a Boolean orthanc.RegisterIncomingHttpRequestFilter(Filter)