| |
| # Copyright 2017-present Open Networking Foundation |
| # |
| # 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. |
| |
| |
| from grpc_client.main import GRPC_Client |
| from klein import Klein |
| import os |
| from tosca.parser import TOSCA_Parser |
| from tosca.default import TOSCA_DEFS_DIR |
| import json |
| |
| BANNER = """ |
| _ ______ _____ __________ _____ _________ |
| | |/ / __ \/ ___/ /_ __/ __ \/ ___// ____/ | |
| | / / / /\__ \ / / / / / /\__ \/ / / /| | |
| / / /_/ /___/ / / / / /_/ /___/ / /___/ ___ | |
| /_/|_\____//____/ /_/ \____//____/\____/_/ |_| |
| """ |
| |
| class TOSCA_WebServer: |
| |
| current_dir = os.path.dirname(os.path.realpath(__file__)) |
| template_dir = os.path.join(current_dir, 'templates/') |
| |
| app = Klein() |
| |
| def execute_tosca(self, recipe): |
| self.parser.execute() |
| response_text = "Created models: %s" % str(self.parser.ordered_models_name) |
| return response_text |
| |
| def errorCallback(self, failure, request): |
| request.setResponseCode(500) |
| try: |
| return failure.getErrorMessage() |
| except: |
| print failure |
| return "Internal server error, please report this along with the failed recipe." |
| |
| @app.route('/', methods=['GET']) |
| def index(self, request): |
| request.responseHeaders.addRawHeader(b"content-type", b"application/json") |
| tosca_defs = [f for f in os.listdir(TOSCA_DEFS_DIR) if not f.startswith('.')] |
| |
| response = {} |
| for d in tosca_defs: |
| name = d.replace('.yaml', '') |
| response[name] = "/custom_type/%s" % name |
| return json.dumps(response) |
| |
| @app.route("/custom_type/<name>") |
| def custom_type(self, request, name): |
| request.responseHeaders.addRawHeader(b"content-type", b"text/plain") |
| custom_type = open(TOSCA_DEFS_DIR + '/' + name + '.yaml').read() |
| return custom_type |
| |
| @app.route('/run', methods=['POST']) |
| def run(self, request): |
| recipe = request.content.read() |
| headers = request.getAllHeaders() |
| username = headers['xos-username'] |
| password = headers['xos-password'] |
| |
| d = GRPC_Client().create_secure_client(username, password, recipe) |
| self.parser = TOSCA_Parser(recipe, username, password) |
| tosca_execution = d.addCallback(self.execute_tosca) |
| tosca_execution.addErrback(self.errorCallback, request) |
| return d |
| |
| @app.route('/delete', methods=['POST']) |
| def delete(self, request): |
| recipe = request.content.read() |
| headers = request.getAllHeaders() |
| username = headers['xos-username'] |
| password = headers['xos-password'] |
| |
| d = GRPC_Client().create_secure_client(username, password, recipe) |
| self.parser = TOSCA_Parser(recipe, username, password, delete=True) |
| tosca_execution = d.addCallback(self.execute_tosca) |
| tosca_execution.addErrback(self.errorCallback, request) |
| return d |
| |
| def __init__(self): |
| self.app.run('0.0.0.0', '9102') |