2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 17:43:14 +00:00

Fix http relations for .. in the case of root collection, which has no containing collection

This commit is contained in:
Jarrod Johnson 2013-11-07 14:49:16 -05:00
parent 215acdf4a7
commit 6fbdbcde82
2 changed files with 9 additions and 10 deletions

View File

@ -236,14 +236,14 @@ def resourcehandler(env, start_response):
return
start_response('200 OK', headers)
if mimetype == 'text/html':
for datum in _assemble_html(hdlr, resource, querydict):
for datum in _assemble_html(hdlr, resource, querydict, url):
yield datum
else:
for datum in _assemble_json(hdlr, resource):
for datum in _assemble_json(hdlr, resource, url):
yield datum
def _assemble_html(responses, resource, querydict):
def _assemble_html(responses, resource, querydict, url):
yield '<html><head><title>'
yield 'Confluent REST Explorer: ' + resource + '</title></head>'
yield '<body><form action="' + resource + '" method="post">'
@ -257,10 +257,9 @@ def _assemble_html(responses, resource, querydict):
yield '<input type="hidden" name="restexplorerop" value="update">'
yield '<input type="hidden" name="restexplorerhonorkey" value="">'
yield '<a rel="self" href="%s">%s</a><br>' % (resource, resource)
print 'got a %s' % resource
if resource in ('/', './'):
if url == '/':
pass
if resource[-1] == '/':
elif resource[-1] == '/':
yield '<a rel="collection" href="../">../</a><br>'
else:
yield '<a rel="collection" href="./">./</a><br>'
@ -277,7 +276,7 @@ def _assemble_html(responses, resource, querydict):
yield '<input value="PUT" type="submit"></form></body></html>'
def _assemble_json(responses, resource):
def _assemble_json(responses, resource, url):
#NOTE(jbjohnso) I'm considering giving up on yielding bit by bit
#in json case over http. Notably, duplicate key values from plugin
#overwrite, but we'd want to preserve them into an array instead.
@ -287,7 +286,9 @@ def _assemble_json(responses, resource):
links = {
'self': ['{"href":"%s"}' % resource],
}
if resource[-1] == '/':
if url == '/':
pass
elif resource[-1] == '/':
links['collection'] = ['{"href":"%s"}' % '../']
else:
links['collection'] = ['{"href":"%s"}' % './']

View File

@ -176,8 +176,6 @@ def handle_path(path, operation, configmanager, inputdata=None):
except IndexError: # doesn't actually have a long enough path
return iterate_collections(configmanager.get_nodes())
if iscollection:
print "oh hi there..."
print repr(pathcomponents[2:])
return enumerate_node_collection(pathcomponents, configmanager)
print repr(pathcomponents)
del pathcomponents[0:2]