# 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 argparse import ast import json import logging import logging.config import os import prettytable import requests import sys import uuid import yaml from toscaparser.tosca_template import ToscaTemplate from toscaparser.utils.gettextutils import _ from toscaparser.utils.urlutils import UrlUtils from translator.common import utils from translator.conf.config import ConfigProvider from translator.hot.tosca_translator import TOSCATranslator """ Test the heat-translator translation from command line as: #heat-translator --template-file= --template-type= --parameters="purpose=test" Takes three user arguments, 1. type of translation (e.g. tosca) (required) 2. Path to the file that needs to be translated (required) 3. Input parameters (optional) In order to use heat-translator to only validate template, without actual translation, pass --validate-only=true along with other required arguments. """ conf_file = ConfigProvider.get_translator_logging_file() logging.config.fileConfig(conf_file) log = logging.getLogger("heat-translator") class TranslatorShell(object): SUPPORTED_TYPES = ['tosca'] def get_parser(self): parser = argparse.ArgumentParser(prog="heat-translator") parser.add_argument('--template-file', metavar='', required=True, help=_('Template file to load.')) parser.add_argument('--output-file', metavar='', help=_('Where to store the output file. If not ' 'passed, it will be printed to stdin.')) parser.add_argument('--template-type', metavar='', choices=self.SUPPORTED_TYPES, default='tosca', help=(_('Template type to parse. Choose between ' '%s.') % self.SUPPORTED_TYPES)) parser.add_argument('--parameters', metavar='', help=_('Optional input parameters.')) parser.add_argument('--validate-only', action='store_true', default=False, help=_('Only validate input template, do not ' 'perform translation.')) parser.add_argument('--deploy', action='store_true', default=False, help=_('Whether to deploy the generated template ' 'or not.')) parser.add_argument('--stack-name', metavar='', required=False, help=_('Stack name when deploy the generated ' 'template.')) return parser def main(self, argv): parser = self.get_parser() (args, args_list) = parser.parse_known_args(argv) template_file = args.template_file template_type = args.template_type output_file = args.output_file validate_only = args.validate_only deploy = args.deploy stack_name = args.stack_name parsed_params = {} if args.parameters: parsed_params = self._parse_parameters(args.parameters) a_file = os.path.isfile(template_file) a_url = UrlUtils.validate_url(template_file) if not a_file else False if a_file or a_url: if validate_only: ToscaTemplate(template_file, parsed_params, a_file) msg = (_('The input "%(template_file)s" successfully passed ' 'validation.') % {'template_file': template_file}) print(msg) else: heat_tpl = self._translate(template_type, template_file, parsed_params, a_file, deploy) if heat_tpl: if utils.check_for_env_variables() and deploy: try: file_name = os.path.basename( os.path.splitext(template_file)[0]) heatclient(heat_tpl, stack_name, file_name, parsed_params) except Exception: log.error(_("Unable to launch the heat stack")) self._write_output(heat_tpl, output_file) else: msg = (_('The path %(template_file)s is not a valid ' 'file or URL.') % {'template_file': template_file}) log.error(msg) raise ValueError(msg) def _parse_parameters(self, parameter_list): parsed_inputs = {} # Parameters are semi-colon separated inputs = parameter_list.replace('"', '').split(';') # Each parameter should be an assignment for param in inputs: keyvalue = param.split('=') # Validate the parameter has both a name and value msg = _("'%(param)s' is not a well-formed parameter.") % { 'param': param} if keyvalue.__len__() is 2: # Assure parameter name is not zero-length or whitespace stripped_name = keyvalue[0].strip() if not stripped_name: log.error(msg) raise ValueError(msg) # Add the valid parameter to the dictionary parsed_inputs[keyvalue[0]] = keyvalue[1] else: log.error(msg) raise ValueError(msg) return parsed_inputs def _translate(self, sourcetype, path, parsed_params, a_file, deploy): output = None if sourcetype == "tosca": log.debug(_('Loading the tosca template.')) tosca = ToscaTemplate(path, parsed_params, a_file) translator = TOSCATranslator(tosca, parsed_params, deploy) log.debug(_('Translating the tosca template.')) output = translator.translate() return output def _write_output(self, output, output_file=None): if output: if output_file: with open(output_file, 'w+') as f: f.write(output) else: print(output) def heatclient(output, stack_name, file_name, params): try: access_dict = utils.get_ks_access_dict() endpoint = utils.get_url_for(access_dict, 'orchestration') token = utils.get_token_id(access_dict) except Exception as e: log.error(e) headers = { 'Content-Type': 'application/json', 'X-Auth-Token': token } heat_stack_name = stack_name if stack_name else \ "heat_" + file_name + '_' + str(uuid.uuid4()).split("-")[0] output = yaml.load(output) output['heat_template_version'] = str(output['heat_template_version']) data = { 'stack_name': heat_stack_name, 'template': output, 'parameters': params } response = requests.post(endpoint + '/stacks', data=json.dumps(data), headers=headers) content = ast.literal_eval(response._content) if response.status_code == 201: stack_id = content["stack"]["id"] get_url = endpoint + '/stacks/' + heat_stack_name + '/' + stack_id get_stack_response = requests.get(get_url, headers=headers) stack_details = json.loads(get_stack_response.content)["stack"] col_names = ["id", "stack_name", "stack_status", "creation_time", "updated_time"] pt = prettytable.PrettyTable(col_names) stack_list = [] for col in col_names: stack_list.append(stack_details[col]) pt.add_row(stack_list) print(pt) else: err_msg = content["error"]["message"] log(_("Unable to deploy to Heat\n%s\n") % err_msg) def main(args=None): if args is None: args = sys.argv[1:] TranslatorShell().main(args) if __name__ == '__main__': main()