# ------------------------------------------------------------------------- # Copyright (c) 2018 AT&T Intellectual Property # # 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. # # ------------------------------------------------------------------------- # """ Simulators for dependencies of OSDF (e.g. HAS-API, Policy, SO-callback, etc.) """ import glob import json import os from flask import Flask, jsonify, request from osdf.utils.interfaces import json_from_file app = Flask(__name__) @app.route("/simulated/ERROR/", methods=["GET", "POST"]) @app.route("/simulated/unhealthy/", methods=["GET", "POST"]) def error_for_component(component): """Send an HTTP error for component""" return jsonify({"error": "{} error".format(component)}), 503 @app.route("/simulated/healthy/", methods=["GET", "POST"]) def healthy_status_for_component(component): """Send a health-OK response for component""" return jsonify({"success": "Passed Health Check for Component {}".format(component)}) @app.route("/simulated/success/", methods=["GET", "POST"]) def successful_call_for_component(component): """Send a message about successful call to component""" return jsonify({"success": "made a call to Component: {}".format(component)}) @app.route("/simulated/oof/has-api/", methods=["GET", "POST"]) def has_api_calls(mainpath): data, status = get_payload_for_simulated_component('has-api', mainpath) if not status: return jsonify(data) return jsonify(data), 503 def get_payload_for_simulated_component(component, mainpath): """ Get the payload for the given path for the given component :param component: Component we are using (e.g. HAS-API, Policy, SO-callback, etc.) :param mainpath: path within the URL (e.g. /main/X1/y1/) :return: Content if file exists, or else 503 error """ file_name = "{}/response-payloads/{}".format(component, mainpath) data = json_from_file(file_name) if not data: return {"Error": "Unable to read File {}".format(file_name)}, 503 return data, None @app.route("/simulated/policy//getConfig", methods=["POST"]) def get_policies(sub_component): """ Get all policies for this folder :param sub_component: The folder we are interested in (e.g. "pdp-has-vcpe-good", "pdp-has-vcpe-bad") :return: A list of policies as a json object (each element is one policy) """ main_dir = "policy/response-payloads/" + sub_component files = glob.glob("{}/*.json".format(main_dir)) list_json = [] for x in files: list_json.append({ "policyConfigMessage": "Config Retrieved! ", "policyConfigStatus": "CONFIG_RETRIEVED", "type": "JSON", "config": json.dumps(json_from_file(x)), "policyName": os.path.basename(x), "policyType": "MicroService", "policyVersion": "1" }) return jsonify(list_json) @app.route("/simulated/configdb/getCellList", methods=["GET"]) def get_cell_list(): data, status = get_payload_for_simulated_component('configdb', 'getCellList-' + request.args.get('networkId') + '.json') if not status: return jsonify(data) return jsonify(data), 503 @app.route("/simulated/configdb/getNbrList", methods=["GET"]) def get_nbr_list(): data, status = get_payload_for_simulated_component('configdb', 'getNbrList-' + request.args.get('cellId') + '.json') if not status: return jsonify(data) return jsonify(data), 503 if __name__ == "__main__": app.run(debug=True, host='0.0.0.0')