added possibility to define own ./well-known-core endpoint
This commit is contained in:
parent
985763bfe2
commit
5e5bd043c6
3 changed files with 7 additions and 2 deletions
|
@ -50,11 +50,12 @@ class ForwardLayer(object):
|
||||||
:rtype : Transaction
|
:rtype : Transaction
|
||||||
:return: the edited transaction
|
:return: the edited transaction
|
||||||
"""
|
"""
|
||||||
|
wkc_resource_is_defined = defines.DISCOVERY_URL in self._server.root
|
||||||
path = str("/" + transaction.request.uri_path)
|
path = str("/" + transaction.request.uri_path)
|
||||||
transaction.response = Response()
|
transaction.response = Response()
|
||||||
transaction.response.destination = transaction.request.source
|
transaction.response.destination = transaction.request.source
|
||||||
transaction.response.token = transaction.request.token
|
transaction.response.token = transaction.request.token
|
||||||
if path == defines.DISCOVERY_URL:
|
if path == defines.DISCOVERY_URL and not wkc_resource_is_defined:
|
||||||
transaction = self._server.resourceLayer.discover(transaction)
|
transaction = self._server.resourceLayer.discover(transaction)
|
||||||
else:
|
else:
|
||||||
new = False
|
new = False
|
||||||
|
|
|
@ -52,11 +52,12 @@ class RequestLayer(object):
|
||||||
:rtype : Transaction
|
:rtype : Transaction
|
||||||
:return: the edited transaction with the response to the request
|
:return: the edited transaction with the response to the request
|
||||||
"""
|
"""
|
||||||
|
wkc_resource_is_defined = defines.DISCOVERY_URL in self._server.root
|
||||||
path = str("/" + transaction.request.uri_path)
|
path = str("/" + transaction.request.uri_path)
|
||||||
transaction.response = Response()
|
transaction.response = Response()
|
||||||
transaction.response.destination = transaction.request.source
|
transaction.response.destination = transaction.request.source
|
||||||
transaction.response.token = transaction.request.token
|
transaction.response.token = transaction.request.token
|
||||||
if path == defines.DISCOVERY_URL:
|
if path == defines.DISCOVERY_URL and not wkc_resource_is_defined:
|
||||||
transaction = self._server.resourceLayer.discover(transaction)
|
transaction = self._server.resourceLayer.discover(transaction)
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -186,3 +186,6 @@ class Tree(object):
|
||||||
|
|
||||||
def __delitem__(self, key):
|
def __delitem__(self, key):
|
||||||
del self.tree[key]
|
del self.tree[key]
|
||||||
|
|
||||||
|
def __contains__(self, item):
|
||||||
|
return item in self.tree
|
||||||
|
|
Loading…
Reference in a new issue