An error occurred while loading the file. Please try again.
-
pushkar191098 authored53b4b040
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import json
import os
import sys
from flask import Flask
from flask.blueprints import Blueprint
from flask_basicauth import BasicAuth
from flask_cors import CORS
# local imports
import config
import routes
from models import AgentUtils
# flask server
server = Flask(__name__)
# server configuration
config.SERVER_STATIC_PATH = server.static_folder
server.config['BASIC_AUTH_USERNAME'] = config.BASIC_HTTP_USERNAME
server.config['BASIC_AUTH_PASSWORD'] = config.BASIC_HTTP_PASSWORD
# basic_auth for server
basic_auth = BasicAuth(server)
# load agents config
with open(os.path.join(config.SERVER_STATIC_PATH, config.AGENT_CONFIG_PATH), 'r') as f:
agent_list = json.load(f)
__import__("scripts")
my_scripts = sys.modules["scripts"]
# serialize agent config
agentUtils = AgentUtils()
agentUtils.filepath = os.path.join(
config.SERVER_STATIC_PATH, config.AGENT_CONFIG_PKL_PATH)
pkl_agent_list = agentUtils.listAgents()
len_diff = len(agent_list) - len(pkl_agent_list)
for i in range(len(agent_list)-1, len(agent_list)-len_diff-1, -1):
agent = agent_list[i]
agent_script = dict()
for type in config.AGENT_SCRIPT_TYPES.values():
agent_script[type] = my_scripts.__dict__[
type].__dict__[agent['scripts'][type]]
agent['scripts'] = agent_script
agentUtils.addAgent(agent)
# server CORS policy
if config.SERVER_CORS:
cors = CORS(server, resources={r"/api/*": {"origins": "*"}})
# add blueprint routes to server
for blueprint in vars(routes).values():
if isinstance(blueprint, Blueprint):
server.register_blueprint(blueprint, url_prefix=config.API_URL_PREFIX)
# sample route
@server.route('/')
def home():
return "<h1>HI</h1>"
# start server
if __name__ == "__main__":
print('starting server at {} at port {}'.format(
config.SERVER_HOST, config.SERVER_PORT))
server.run(host=config.SERVER_HOST,
port=config.SERVER_PORT,
debug=config.SERVER_DEBUG,
threaded=True)