bf45abee9d
This patch removes logging import unused in vitrageclient/v1/cli/template.py vitrageclient/v1/template.py Change-Id: Idfebf5e87d66acb872fd494e03f22ea1daa6ea98
74 lines
2.3 KiB
Python
74 lines
2.3 KiB
Python
# Copyright 2016 - Nokia Corporation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
import os
|
|
from vitrageclient.common import exc
|
|
from vitrageclient.common import yaml_utils
|
|
|
|
|
|
class Template(object):
|
|
|
|
url = 'v1/template/'
|
|
|
|
def __init__(self, api):
|
|
self.api = api
|
|
|
|
def list(self):
|
|
"""Get templates list"""
|
|
return self.api.get(self.url).json()
|
|
|
|
def show(self, uuid):
|
|
"""Show template content"""
|
|
|
|
url = self.url + uuid
|
|
return self.api.get(url).json()
|
|
|
|
def validate(self, path=None):
|
|
"""Template validation
|
|
|
|
Make sure that the template file is correct in terms of syntax
|
|
and content.
|
|
It is possible to pass a specific file path in order to validate one
|
|
template, or directory path for validation of several templates (the
|
|
directory must contain only templates)
|
|
|
|
:param path: the template file path or templates dir path
|
|
"""
|
|
|
|
if os.path.isdir(path):
|
|
|
|
templates = []
|
|
for file_name in os.listdir(path):
|
|
|
|
file_path = '%s/%s' % (path, file_name)
|
|
if os.path.isfile(file_path):
|
|
template = self.load_template_definition(file_path)
|
|
templates.append((file_path, template))
|
|
else:
|
|
templates = [(path, self.load_template_definition(path))]
|
|
|
|
params = dict(templates=templates)
|
|
|
|
return self.api.post(self.url, json=params).json()
|
|
|
|
@staticmethod
|
|
def load_template_definition(path):
|
|
|
|
with open(path, 'r') as stream:
|
|
try:
|
|
return yaml_utils.load(stream)
|
|
except ValueError as e:
|
|
message = 'Could not load template file: %s. Reason: %s' \
|
|
% (path, e.message)
|
|
raise exc.CommandException(message=message)
|