Fix two bugs in simulator & code cleaning
[sim/a1-interface.git] / near-rt-ric-simulator / src / STD_1.1.3 / callBack.py
1 #  ============LICENSE_START===============================================
2 #  Copyright (C) 2020 Nordix Foundation. All rights reserved.
3 #  ========================================================================
4 #  Licensed under the Apache License, Version 2.0 (the "License");
5 #  you may not use this file except in compliance with the License.
6 #  You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #  Unless required by applicable law or agreed to in writing, software
11 #  distributed under the License is distributed on an "AS IS" BASIS,
12 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #  See the License for the specific language governing permissions and
14 #  limitations under the License.
15 #  ============LICENSE_END=================================================
16 #
17
18 import json
19 from flask import Flask, request, Response
20
21 app = Flask(__name__)
22
23 #Check alive function
24 @app.route('/', methods=['GET'])
25 def test():
26
27   return Response("OK", 200, mimetype='text/plain')
28
29 #Receive status (only for testing callbacks)
30 #/statustest
31 @app.route('/statustest', methods=['POST', 'PUT'])
32 def statustest():
33   try:
34     data = request.data
35     data = json.loads(data)
36   except:
37     return Response("The status data is corrupt or missing.", 400, mimetype='text/plain')
38
39   return Response(json.dumps(data), 200, mimetype='application/json')
40
41 port_number = 2223
42
43 app.run(port=port_number, host="127.0.0.1", threaded=False)