Parse YAML in muranoclient with the loader of the given class

This allows to embed YAQL-parsing inside the custom loader passed from
muranodashboard. By default yaml.Loader is used.

Change-Id: I2b0ef5949ce927a94806aa368674ae9fc3dbb677
This commit is contained in:
Timur Sufiev 2014-04-09 19:53:20 +04:00
parent f27c76ddb8
commit 108313a4fa
1 changed files with 5 additions and 2 deletions

View File

@ -91,11 +91,14 @@ class PackageManager(base.Manager):
data = [{'op': 'replace', 'path': '/enabled', 'value': not enabled}]
return self.api.json_patch_request(url, body=data)
def get_ui(self, app_id):
def get_ui(self, app_id, loader_cls=None):
if loader_cls is None:
loader_cls = yaml.Loader
url = '/v1/catalog/packages/{0}/ui'.format(app_id)
response, iterator = self.api.raw_request('GET', url)
if response.status == 200:
return yaml.load(''.join(iterator))
return yaml.load(''.join(iterator), loader_cls)
else:
raise exceptions.from_response(response)