cornflow 2.0.0a12__py3-none-any.whl → 2.0.0a14__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cornflow/app.py +3 -1
- cornflow/cli/__init__.py +4 -0
- cornflow/cli/actions.py +4 -0
- cornflow/cli/config.py +4 -0
- cornflow/cli/migrations.py +13 -8
- cornflow/cli/permissions.py +4 -0
- cornflow/cli/roles.py +4 -0
- cornflow/cli/schemas.py +5 -0
- cornflow/cli/service.py +260 -147
- cornflow/cli/tools/api_generator.py +13 -10
- cornflow/cli/tools/endpoint_tools.py +191 -196
- cornflow/cli/tools/models_tools.py +87 -60
- cornflow/cli/tools/schema_generator.py +161 -67
- cornflow/cli/tools/schemas_tools.py +4 -5
- cornflow/cli/users.py +8 -0
- cornflow/cli/views.py +4 -0
- cornflow/commands/dag.py +3 -2
- cornflow/commands/schemas.py +6 -4
- cornflow/commands/users.py +12 -17
- cornflow/config.py +3 -2
- cornflow/endpoints/dag.py +27 -25
- cornflow/endpoints/data_check.py +102 -164
- cornflow/endpoints/example_data.py +9 -3
- cornflow/endpoints/execution.py +27 -23
- cornflow/endpoints/health.py +4 -5
- cornflow/endpoints/instance.py +39 -12
- cornflow/endpoints/meta_resource.py +4 -5
- cornflow/schemas/execution.py +1 -0
- cornflow/shared/airflow.py +157 -0
- cornflow/shared/authentication/auth.py +73 -42
- cornflow/shared/const.py +9 -0
- cornflow/shared/databricks.py +10 -10
- cornflow/shared/exceptions.py +3 -1
- cornflow/shared/utils_tables.py +36 -8
- cornflow/shared/validators.py +1 -1
- cornflow/tests/const.py +1 -0
- cornflow/tests/custom_test_case.py +4 -4
- cornflow/tests/unit/test_alarms.py +1 -2
- cornflow/tests/unit/test_cases.py +4 -7
- cornflow/tests/unit/test_executions.py +105 -43
- cornflow/tests/unit/test_log_in.py +46 -9
- cornflow/tests/unit/test_tables.py +3 -3
- cornflow/tests/unit/tools.py +31 -13
- {cornflow-2.0.0a12.dist-info → cornflow-2.0.0a14.dist-info}/METADATA +2 -2
- {cornflow-2.0.0a12.dist-info → cornflow-2.0.0a14.dist-info}/RECORD +48 -47
- {cornflow-2.0.0a12.dist-info → cornflow-2.0.0a14.dist-info}/WHEEL +1 -1
- {cornflow-2.0.0a12.dist-info → cornflow-2.0.0a14.dist-info}/entry_points.txt +0 -0
- {cornflow-2.0.0a12.dist-info → cornflow-2.0.0a14.dist-info}/top_level.txt +0 -0
cornflow/app.py
CHANGED
@@ -51,6 +51,8 @@ def create_app(env_name="development", dataconn=None):
|
|
51
51
|
"""
|
52
52
|
dictConfig(log_config(app_config[env_name].LOG_LEVEL))
|
53
53
|
|
54
|
+
# Note: Explicit CSRF protection is not configured as the application uses
|
55
|
+
# JWT for authentication via headers, mitigating standard CSRF vulnerabilities.
|
54
56
|
app = Flask(__name__)
|
55
57
|
app.json.sort_keys = False
|
56
58
|
app.logger.setLevel(app_config[env_name].LOG_LEVEL)
|
@@ -103,7 +105,7 @@ def create_app(env_name="development", dataconn=None):
|
|
103
105
|
else:
|
104
106
|
raise ConfigurationError(
|
105
107
|
error="Invalid authentication type",
|
106
|
-
log_txt="Error while configuring authentication. The authentication type is not valid."
|
108
|
+
log_txt="Error while configuring authentication. The authentication type is not valid.",
|
107
109
|
)
|
108
110
|
|
109
111
|
initialize_errorhandlers(app)
|
cornflow/cli/__init__.py
CHANGED
cornflow/cli/actions.py
CHANGED
cornflow/cli/config.py
CHANGED
cornflow/cli/migrations.py
CHANGED
@@ -3,6 +3,7 @@ import os.path
|
|
3
3
|
|
4
4
|
import click
|
5
5
|
from cornflow.shared import db
|
6
|
+
from cornflow.shared.const import MIGRATIONS_DEFAULT_PATH
|
6
7
|
from flask_migrate import Migrate, migrate, upgrade, downgrade, init
|
7
8
|
|
8
9
|
from .utils import get_app
|
@@ -10,6 +11,10 @@ from .utils import get_app
|
|
10
11
|
|
11
12
|
@click.group(name="migrations", help="Commands to manage the migrations")
|
12
13
|
def migrations():
|
14
|
+
"""
|
15
|
+
This method is empty but it serves as the building block
|
16
|
+
for the rest of the commands
|
17
|
+
"""
|
13
18
|
pass
|
14
19
|
|
15
20
|
|
@@ -18,12 +23,12 @@ def migrate_migrations():
|
|
18
23
|
app = get_app()
|
19
24
|
external = int(os.getenv("EXTERNAL_APP", 0))
|
20
25
|
if external == 0:
|
21
|
-
path =
|
26
|
+
path = MIGRATIONS_DEFAULT_PATH
|
22
27
|
else:
|
23
28
|
path = f"./{os.getenv('EXTERNAL_APP_MODULE', 'external_app')}/migrations"
|
24
29
|
|
25
30
|
with app.app_context():
|
26
|
-
|
31
|
+
Migrate(app=app, db=db, directory=path)
|
27
32
|
migrate()
|
28
33
|
|
29
34
|
|
@@ -35,12 +40,12 @@ def upgrade_migrations(revision="head"):
|
|
35
40
|
app = get_app()
|
36
41
|
external = int(os.getenv("EXTERNAL_APP", 0))
|
37
42
|
if external == 0:
|
38
|
-
path =
|
43
|
+
path = MIGRATIONS_DEFAULT_PATH
|
39
44
|
else:
|
40
45
|
path = f"./{os.getenv('EXTERNAL_APP_MODULE', 'external_app')}/migrations"
|
41
46
|
|
42
47
|
with app.app_context():
|
43
|
-
|
48
|
+
Migrate(app=app, db=db, directory=path)
|
44
49
|
upgrade(revision=revision)
|
45
50
|
|
46
51
|
|
@@ -52,12 +57,12 @@ def downgrade_migrations(revision="-1"):
|
|
52
57
|
app = get_app()
|
53
58
|
external = int(os.getenv("EXTERNAL_APP", 0))
|
54
59
|
if external == 0:
|
55
|
-
path =
|
60
|
+
path = MIGRATIONS_DEFAULT_PATH
|
56
61
|
else:
|
57
62
|
path = f"./{os.getenv('EXTERNAL_APP_MODULE', 'external_app')}/migrations"
|
58
63
|
|
59
64
|
with app.app_context():
|
60
|
-
|
65
|
+
Migrate(app=app, db=db, directory=path)
|
61
66
|
downgrade(revision=revision)
|
62
67
|
|
63
68
|
|
@@ -69,10 +74,10 @@ def init_migrations():
|
|
69
74
|
app = get_app()
|
70
75
|
external = int(os.getenv("EXTERNAL_APP", 0))
|
71
76
|
if external == 0:
|
72
|
-
path =
|
77
|
+
path = MIGRATIONS_DEFAULT_PATH
|
73
78
|
else:
|
74
79
|
path = f"./{os.getenv('EXTERNAL_APP_MODULE', 'external_app')}/migrations"
|
75
80
|
|
76
81
|
with app.app_context():
|
77
|
-
|
82
|
+
Migrate(app=app, db=db, directory=path)
|
78
83
|
init()
|
cornflow/cli/permissions.py
CHANGED
cornflow/cli/roles.py
CHANGED
cornflow/cli/schemas.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
"""
|
2
2
|
File that implements the generate from schema cli command
|
3
3
|
"""
|
4
|
+
|
4
5
|
import click
|
5
6
|
from .tools.api_generator import APIGenerator
|
6
7
|
from .tools.schema_generator import SchemaGenerator
|
@@ -20,6 +21,10 @@ METHOD_OPTIONS = [
|
|
20
21
|
|
21
22
|
@click.group(name="schemas", help="Commands to manage the schemas")
|
22
23
|
def schemas():
|
24
|
+
"""
|
25
|
+
This method is empty but it serves as the building block
|
26
|
+
for the rest of the commands
|
27
|
+
"""
|
23
28
|
pass
|
24
29
|
|
25
30
|
|
cornflow/cli/service.py
CHANGED
@@ -31,16 +31,94 @@ from cornflow.shared import db
|
|
31
31
|
from cryptography.fernet import Fernet
|
32
32
|
from flask_migrate import Migrate, upgrade
|
33
33
|
|
34
|
+
MAIN_WD = "/usr/src/app"
|
35
|
+
|
34
36
|
|
35
37
|
@click.group(name="service", help="Commands to run the cornflow service")
|
36
38
|
def service():
|
39
|
+
"""
|
40
|
+
This method is empty but it serves as the building block
|
41
|
+
for the rest of the commands
|
42
|
+
"""
|
37
43
|
pass
|
38
44
|
|
39
45
|
|
40
46
|
@service.command(name="init", help="Initialize the service")
|
41
47
|
def init_cornflow_service():
|
42
48
|
click.echo("Starting the service")
|
43
|
-
os.chdir(
|
49
|
+
os.chdir(MAIN_WD)
|
50
|
+
|
51
|
+
config = _setup_environment_variables()
|
52
|
+
_configure_logging(config["cornflow_logging"])
|
53
|
+
|
54
|
+
external_application = config["external_application"]
|
55
|
+
environment = config["environment"]
|
56
|
+
cornflow_db_conn = config["cornflow_db_conn"]
|
57
|
+
external_app_module = config["external_app_module"]
|
58
|
+
|
59
|
+
app = None # Initialize app to None
|
60
|
+
|
61
|
+
if external_application == 0:
|
62
|
+
click.echo("Initializing standard Cornflow application")
|
63
|
+
app = create_app(environment, cornflow_db_conn)
|
64
|
+
with app.app_context():
|
65
|
+
_initialize_database(app)
|
66
|
+
_create_initial_users(
|
67
|
+
config["auth"],
|
68
|
+
config["cornflow_admin_user"],
|
69
|
+
config["cornflow_admin_email"],
|
70
|
+
config["cornflow_admin_pwd"],
|
71
|
+
config["cornflow_service_user"],
|
72
|
+
config["cornflow_service_email"],
|
73
|
+
config["cornflow_service_pwd"],
|
74
|
+
)
|
75
|
+
_sync_with_airflow(
|
76
|
+
config["airflow_url"],
|
77
|
+
config["airflow_user"],
|
78
|
+
config["airflow_pwd"],
|
79
|
+
config["open_deployment"],
|
80
|
+
external_app=False,
|
81
|
+
)
|
82
|
+
_start_application(external_application, environment)
|
83
|
+
|
84
|
+
elif external_application == 1:
|
85
|
+
click.echo(f"Initializing Cornflow with external app: {external_app_module}")
|
86
|
+
if not external_app_module:
|
87
|
+
sys.exit("FATAL: EXTERNAL_APP is 1 but EXTERNAL_APP_MODULE is not set.")
|
88
|
+
|
89
|
+
_setup_external_app()
|
90
|
+
from importlib import import_module
|
91
|
+
|
92
|
+
external_app_lib = import_module(external_app_module)
|
93
|
+
app = external_app_lib.create_wsgi_app(environment, cornflow_db_conn)
|
94
|
+
|
95
|
+
with app.app_context():
|
96
|
+
_initialize_database(app, external_app_module)
|
97
|
+
_create_initial_users(
|
98
|
+
config["auth"],
|
99
|
+
config["cornflow_admin_user"],
|
100
|
+
config["cornflow_admin_email"],
|
101
|
+
config["cornflow_admin_pwd"],
|
102
|
+
config["cornflow_service_user"],
|
103
|
+
config["cornflow_service_email"],
|
104
|
+
config["cornflow_service_pwd"],
|
105
|
+
)
|
106
|
+
_sync_with_airflow(
|
107
|
+
config["airflow_url"],
|
108
|
+
config["airflow_user"],
|
109
|
+
config["airflow_pwd"],
|
110
|
+
config["open_deployment"],
|
111
|
+
external_app=True,
|
112
|
+
)
|
113
|
+
_start_application(external_application, environment, external_app_module)
|
114
|
+
|
115
|
+
else:
|
116
|
+
# This case should ideally be caught earlier or handled differently
|
117
|
+
sys.exit(f"FATAL: Invalid EXTERNAL_APP value: {external_application}")
|
118
|
+
|
119
|
+
|
120
|
+
def _setup_environment_variables():
|
121
|
+
"""Reads environment variables, sets defaults, and returns config values."""
|
44
122
|
environment = os.getenv("FLASK_ENV", "development")
|
45
123
|
os.environ["FLASK_ENV"] = environment
|
46
124
|
|
@@ -72,7 +150,8 @@ def init_cornflow_service():
|
|
72
150
|
os.environ["DATABRICKS_CLIENT_ID"] = databricks_client_id
|
73
151
|
else:
|
74
152
|
raise Exception("Selected backend not among valid options")
|
75
|
-
|
153
|
+
# Cornflow app config
|
154
|
+
os.environ.setdefault("cornflow_url", "http://cornflow:5000")
|
76
155
|
os.environ["FLASK_APP"] = "cornflow.app"
|
77
156
|
os.environ["SECRET_KEY"] = os.getenv("FERNET_KEY", Fernet.generate_key().decode())
|
78
157
|
|
@@ -94,10 +173,9 @@ def init_cornflow_service():
|
|
94
173
|
)
|
95
174
|
cornflow_service_pwd = os.getenv("CORNFLOW_SERVICE_PWD", "Service_user1234")
|
96
175
|
|
97
|
-
# Cornflow logging and
|
176
|
+
# Cornflow logging and deployment config
|
98
177
|
cornflow_logging = os.getenv("CORNFLOW_LOGGING", "console")
|
99
178
|
os.environ["CORNFLOW_LOGGING"] = cornflow_logging
|
100
|
-
|
101
179
|
open_deployment = os.getenv("OPEN_DEPLOYMENT", 1)
|
102
180
|
os.environ["OPEN_DEPLOYMENT"] = str(open_deployment)
|
103
181
|
signup_activated = os.getenv("SIGNUP_ACTIVATED", 1)
|
@@ -108,176 +186,211 @@ def init_cornflow_service():
|
|
108
186
|
os.environ["DEFAULT_ROLE"] = str(default_role)
|
109
187
|
|
110
188
|
# Check LDAP parameters for active directory and show message
|
111
|
-
if
|
112
|
-
|
113
|
-
"WARNING: Cornflow will be deployed with LDAP Authorization.
|
189
|
+
if auth == AUTH_LDAP:
|
190
|
+
click.echo(
|
191
|
+
"WARNING: Cornflow will be deployed with LDAP Authorization. "
|
192
|
+
"Please review your ldap auth configuration."
|
114
193
|
)
|
115
194
|
|
116
195
|
# check database param from docker env
|
117
|
-
if
|
196
|
+
if cornflow_db_conn is None:
|
118
197
|
sys.exit("FATAL: you need to provide a postgres database for Cornflow")
|
119
198
|
|
120
|
-
|
199
|
+
external_application = int(os.getenv("EXTERNAL_APP", 0))
|
200
|
+
external_app_module = os.getenv("EXTERNAL_APP_MODULE")
|
201
|
+
if cornflow_backend == AIRFLOW_BACKEND:
|
202
|
+
return {
|
203
|
+
"environment": environment,
|
204
|
+
"auth": auth,
|
205
|
+
"airflow_user": airflow_user,
|
206
|
+
"airflow_pwd": airflow_pwd,
|
207
|
+
"airflow_url": airflow_url,
|
208
|
+
"cornflow_db_conn": cornflow_db_conn,
|
209
|
+
"cornflow_admin_user": cornflow_admin_user,
|
210
|
+
"cornflow_admin_email": cornflow_admin_email,
|
211
|
+
"cornflow_admin_pwd": cornflow_admin_pwd,
|
212
|
+
"cornflow_service_user": cornflow_service_user,
|
213
|
+
"cornflow_service_email": cornflow_service_email,
|
214
|
+
"cornflow_service_pwd": cornflow_service_pwd,
|
215
|
+
"cornflow_logging": cornflow_logging,
|
216
|
+
"open_deployment": open_deployment,
|
217
|
+
"external_application": external_application,
|
218
|
+
"external_app_module": external_app_module,
|
219
|
+
}
|
220
|
+
elif cornflow_backend == DATABRICKS_BACKEND:
|
221
|
+
return {
|
222
|
+
"environment": environment,
|
223
|
+
"auth": auth,
|
224
|
+
"databricks_url": databricks_url,
|
225
|
+
"databricks_auth_secret": databricks_auth_secret,
|
226
|
+
"databricks_token_endpoint": databricks_token_endpoint,
|
227
|
+
"databricks_ep_clusters": databricks_ep_clusters,
|
228
|
+
"databricks_client_id": databricks_client_id,
|
229
|
+
"cornflow_db_conn": cornflow_db_conn,
|
230
|
+
"cornflow_admin_user": cornflow_admin_user,
|
231
|
+
"cornflow_admin_email": cornflow_admin_email,
|
232
|
+
"cornflow_admin_pwd": cornflow_admin_pwd,
|
233
|
+
"cornflow_service_user": cornflow_service_user,
|
234
|
+
"cornflow_service_email": cornflow_service_email,
|
235
|
+
"cornflow_service_pwd": cornflow_service_pwd,
|
236
|
+
"cornflow_logging": cornflow_logging,
|
237
|
+
"open_deployment": open_deployment,
|
238
|
+
"external_application": external_application,
|
239
|
+
"external_app_module": external_app_module,
|
240
|
+
}
|
241
|
+
else:
|
242
|
+
raise Exception("Selected backend not among valid options")
|
243
|
+
|
244
|
+
|
245
|
+
def _configure_logging(cornflow_logging):
|
246
|
+
"""Configures log rotation if logging to file."""
|
121
247
|
if cornflow_logging == "file":
|
122
248
|
try:
|
123
|
-
conf = "/usr/src/app/log/*.log {
|
124
|
-
rotate 30
|
125
|
-
daily
|
126
|
-
compress
|
127
|
-
size 20M
|
128
|
-
postrotate
|
129
|
-
kill -HUP
|
130
|
-
endscript}"
|
249
|
+
conf = f"""/usr/src/app/log/*.log {{
|
250
|
+
rotate 30
|
251
|
+
daily
|
252
|
+
compress
|
253
|
+
size 20M
|
254
|
+
postrotate
|
255
|
+
kill -HUP $(cat {MAIN_WD}/gunicorn.pid)
|
256
|
+
endscript}}"""
|
131
257
|
logrotate = subprocess.run(
|
132
|
-
f"cat > /etc/logrotate.d/cornflow <<EOF\n {conf} \nEOF",
|
258
|
+
f"cat > /etc/logrotate.d/cornflow <<EOF\n {conf} \nEOF",
|
259
|
+
shell=True,
|
260
|
+
capture_output=True,
|
261
|
+
text=True,
|
133
262
|
)
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
except error:
|
138
|
-
click.echo(error)
|
139
|
-
|
140
|
-
external_application = int(os.getenv("EXTERNAL_APP", 0))
|
141
|
-
if external_application == 0:
|
142
|
-
os.environ["GUNICORN_WORKING_DIR"] = "/usr/src/app"
|
143
|
-
elif external_application == 1:
|
144
|
-
os.environ["GUNICORN_WORKING_DIR"] = "/usr/src/app"
|
145
|
-
else:
|
146
|
-
raise Exception("No external application found")
|
147
|
-
|
148
|
-
if external_application == 0:
|
149
|
-
click.echo("Starting cornflow")
|
150
|
-
app = create_app(environment, cornflow_db_conn)
|
151
|
-
with app.app_context():
|
152
|
-
path = f"{os.path.dirname(cornflow.__file__)}/migrations"
|
153
|
-
Migrate(app=app, db=db, directory=path)
|
154
|
-
upgrade()
|
155
|
-
access_init_command(verbose=False)
|
156
|
-
if auth == AUTH_DB or auth == AUTH_OID:
|
157
|
-
# create cornflow admin user
|
158
|
-
create_user_with_role(
|
159
|
-
cornflow_admin_user,
|
160
|
-
cornflow_admin_email,
|
161
|
-
cornflow_admin_pwd,
|
162
|
-
"admin",
|
163
|
-
ADMIN_ROLE,
|
164
|
-
verbose=True,
|
165
|
-
)
|
166
|
-
# create cornflow service user
|
167
|
-
create_user_with_role(
|
168
|
-
cornflow_service_user,
|
169
|
-
cornflow_service_email,
|
170
|
-
cornflow_service_pwd,
|
171
|
-
"serviceuser",
|
172
|
-
SERVICE_ROLE,
|
173
|
-
verbose=True,
|
174
|
-
)
|
175
|
-
|
176
|
-
if cornflow_backend == AIRFLOW_BACKEND:
|
177
|
-
register_deployed_dags_command(
|
178
|
-
airflow_url, airflow_user, airflow_pwd, verbose=True
|
179
|
-
)
|
180
|
-
register_dag_permissions_command(open_deployment, verbose=True)
|
181
|
-
update_schemas_command(
|
182
|
-
airflow_url, airflow_user, airflow_pwd, verbose=True
|
183
|
-
)
|
263
|
+
if logrotate.returncode != 0:
|
264
|
+
error(f"Error configuring logrotate: {logrotate.stderr}")
|
184
265
|
else:
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
266
|
+
print(logrotate.stdout)
|
267
|
+
except Exception as e:
|
268
|
+
error(f"Exception during logrotate configuration: {e}")
|
269
|
+
|
270
|
+
|
271
|
+
def _initialize_database(app, external_app_module=None):
|
272
|
+
"""Initializes the database and runs migrations."""
|
273
|
+
with app.app_context():
|
274
|
+
if external_app_module:
|
275
|
+
from importlib import import_module
|
276
|
+
|
277
|
+
external_app_lib = import_module(external_app_module)
|
278
|
+
migrations_path = f"{os.path.dirname(external_app_lib.__file__)}/migrations"
|
279
|
+
else:
|
280
|
+
migrations_path = f"{os.path.dirname(cornflow.__file__)}/migrations"
|
281
|
+
|
282
|
+
Migrate(app=app, db=db, directory=migrations_path)
|
283
|
+
upgrade()
|
284
|
+
access_init_command(verbose=False)
|
285
|
+
|
286
|
+
|
287
|
+
def _create_initial_users(
|
288
|
+
auth,
|
289
|
+
admin_user,
|
290
|
+
admin_email,
|
291
|
+
admin_pwd,
|
292
|
+
service_user,
|
293
|
+
service_email,
|
294
|
+
service_pwd,
|
295
|
+
):
|
296
|
+
"""Creates the initial admin and service users if using DB or OID auth."""
|
297
|
+
if auth == AUTH_DB or auth == AUTH_OID:
|
298
|
+
# create cornflow admin user
|
299
|
+
create_user_with_role(
|
300
|
+
admin_user,
|
301
|
+
admin_email,
|
302
|
+
admin_pwd,
|
303
|
+
"admin",
|
304
|
+
ADMIN_ROLE,
|
305
|
+
verbose=True,
|
306
|
+
)
|
307
|
+
# create cornflow service user
|
308
|
+
create_user_with_role(
|
309
|
+
service_user,
|
310
|
+
service_email,
|
311
|
+
service_pwd,
|
312
|
+
"serviceuser",
|
313
|
+
SERVICE_ROLE,
|
314
|
+
verbose=True,
|
190
315
|
)
|
191
316
|
|
192
|
-
elif external_application == 1:
|
193
|
-
click.echo(f"Starting cornflow + {os.getenv('EXTERNAL_APP_MODULE')}")
|
194
|
-
os.chdir("/usr/src/app")
|
195
|
-
|
196
|
-
if register_key():
|
197
|
-
prefix = "CUSTOM_SSH_"
|
198
|
-
env_variables = {}
|
199
|
-
for key, value in os.environ.items():
|
200
|
-
if key.startswith(prefix):
|
201
|
-
env_variables[key] = value
|
202
317
|
|
203
|
-
|
204
|
-
|
318
|
+
def _sync_with_airflow(
|
319
|
+
airflow_url, airflow_user, airflow_pwd, open_deployment, external_app=False
|
320
|
+
):
|
321
|
+
"""Syncs DAGs, permissions, and schemas with Airflow."""
|
322
|
+
register_deployed_dags_command(airflow_url, airflow_user, airflow_pwd, verbose=True)
|
323
|
+
register_dag_permissions_command(open_deployment, verbose=True)
|
324
|
+
update_schemas_command(airflow_url, airflow_user, airflow_pwd, verbose=True)
|
325
|
+
if external_app:
|
326
|
+
update_dag_registry_command(
|
327
|
+
airflow_url, airflow_user, airflow_pwd, verbose=True
|
328
|
+
)
|
205
329
|
|
206
|
-
os.system("$(command -v pip) install --user -r requirements.txt")
|
207
|
-
time.sleep(5)
|
208
|
-
sys.path.append("/usr/src/app")
|
209
330
|
|
210
|
-
|
331
|
+
def _setup_external_app():
|
332
|
+
"""Performs setup steps specific to external applications."""
|
333
|
+
os.chdir(MAIN_WD)
|
334
|
+
if _register_key():
|
335
|
+
prefix = "CUSTOM_SSH_"
|
336
|
+
env_variables = {
|
337
|
+
key: value for key, value in os.environ.items() if key.startswith(prefix)
|
338
|
+
}
|
339
|
+
for _, value in env_variables.items():
|
340
|
+
_register_ssh_host(value)
|
341
|
+
|
342
|
+
# Install requirements for the external app
|
343
|
+
pip_install_cmd = "$(command -v pip) install --user -r requirements.txt"
|
344
|
+
click.echo(f"Running: {pip_install_cmd}")
|
345
|
+
result = subprocess.run(pip_install_cmd, shell=True, capture_output=True, text=True)
|
346
|
+
if result.returncode != 0:
|
347
|
+
error(f"Error installing requirements: {result.stderr}")
|
348
|
+
else:
|
349
|
+
print(result.stdout)
|
350
|
+
time.sleep(5) # Consider if this sleep is truly necessary
|
351
|
+
sys.path.append(MAIN_WD)
|
211
352
|
|
212
|
-
external_app = import_module(os.getenv("EXTERNAL_APP_MODULE"))
|
213
|
-
app = external_app.create_wsgi_app(environment, cornflow_db_conn)
|
214
|
-
with app.app_context():
|
215
|
-
path = f"{os.path.dirname(external_app.__file__)}/migrations"
|
216
|
-
migrate = Migrate(app=app, db=db, directory=path)
|
217
|
-
upgrade()
|
218
|
-
access_init_command(verbose=False)
|
219
|
-
if auth == AUTH_DB or auth == AUTH_OID:
|
220
|
-
# create cornflow admin user
|
221
|
-
create_user_with_role(
|
222
|
-
cornflow_admin_user,
|
223
|
-
cornflow_admin_email,
|
224
|
-
cornflow_admin_pwd,
|
225
|
-
"admin",
|
226
|
-
ADMIN_ROLE,
|
227
|
-
verbose=True,
|
228
|
-
)
|
229
|
-
# create cornflow service user
|
230
|
-
create_user_with_role(
|
231
|
-
cornflow_service_user,
|
232
|
-
cornflow_service_email,
|
233
|
-
cornflow_service_pwd,
|
234
|
-
"serviceuser",
|
235
|
-
SERVICE_ROLE,
|
236
|
-
verbose=True,
|
237
|
-
)
|
238
|
-
|
239
|
-
click.echo(f"Selected backend is: {cornflow_backend}")
|
240
|
-
if cornflow_backend == AIRFLOW_BACKEND:
|
241
|
-
register_deployed_dags_command(
|
242
|
-
airflow_url, airflow_user, airflow_pwd, verbose=True
|
243
|
-
)
|
244
|
-
|
245
|
-
register_dag_permissions_command(open_deployment, verbose=True)
|
246
|
-
update_schemas_command(
|
247
|
-
airflow_url, airflow_user, airflow_pwd, verbose=True
|
248
|
-
)
|
249
|
-
update_dag_registry_command(
|
250
|
-
airflow_url, airflow_user, airflow_pwd, verbose=True
|
251
|
-
)
|
252
|
-
elif cornflow_backend == DATABRICKS_BACKEND:
|
253
|
-
register_dag_permissions_command(open_deployment, verbose=True)
|
254
|
-
else:
|
255
|
-
raise Exception("Selected backend not among valid options")
|
256
353
|
|
257
|
-
|
258
|
-
|
259
|
-
|
354
|
+
def _start_application(external_application, environment, external_app_module=None):
|
355
|
+
"""Starts the Gunicorn server."""
|
356
|
+
if external_application == 0:
|
357
|
+
os.environ["GUNICORN_WORKING_DIR"] = MAIN_WD
|
358
|
+
gunicorn_cmd = (
|
359
|
+
"/usr/local/bin/gunicorn -c python:cornflow.gunicorn "
|
360
|
+
f"\"cornflow.app:create_app('{environment}')\""
|
361
|
+
)
|
362
|
+
elif external_application == 1:
|
363
|
+
os.environ["GUNICORN_WORKING_DIR"] = MAIN_WD
|
364
|
+
if not external_app_module:
|
365
|
+
raise ValueError(
|
366
|
+
"EXTERNAL_APP_MODULE must be set for external applications"
|
367
|
+
)
|
368
|
+
gunicorn_cmd = (
|
369
|
+
"/usr/local/bin/gunicorn -c python:cornflow.gunicorn "
|
370
|
+
f"\"{external_app_module}:create_wsgi_app('{environment}')\""
|
260
371
|
)
|
261
|
-
|
262
372
|
else:
|
263
|
-
raise
|
373
|
+
raise ValueError(f"Invalid EXTERNAL_APP value: {external_application}")
|
264
374
|
|
375
|
+
click.echo(f"Starting application with Gunicorn: {gunicorn_cmd}")
|
376
|
+
os.system(gunicorn_cmd)
|
265
377
|
|
266
|
-
|
378
|
+
|
379
|
+
def _register_ssh_host(host):
|
267
380
|
if host is not None:
|
268
|
-
add_host = f"ssh-keyscan {host} >>
|
269
|
-
config_ssh_host = f"echo Host {host} >>
|
270
|
-
config_ssh_key =
|
381
|
+
add_host = f"ssh-keyscan {host} >> {MAIN_WD}/.ssh/known_hosts"
|
382
|
+
config_ssh_host = f"echo Host {host} >> {MAIN_WD}/.ssh/config"
|
383
|
+
config_ssh_key = (
|
384
|
+
'echo " IdentityFile {MAIN_WD}/.ssh/id_rsa" >> {MAIN_WD}/.ssh/config'
|
385
|
+
)
|
271
386
|
os.system(add_host)
|
272
387
|
os.system(config_ssh_host)
|
273
388
|
os.system(config_ssh_key)
|
274
389
|
|
275
390
|
|
276
|
-
def
|
277
|
-
if os.path.isfile("
|
278
|
-
add_key =
|
279
|
-
"chmod 0600 /usr/src/app/.ssh/id_rsa && ssh-add /usr/src/app/.ssh/id_rsa"
|
280
|
-
)
|
391
|
+
def _register_key():
|
392
|
+
if os.path.isfile(f"{MAIN_WD}/.ssh/id_rsa"):
|
393
|
+
add_key = f"chmod 0600 {MAIN_WD}/.ssh/id_rsa && ssh-add {MAIN_WD}/.ssh/id_rsa"
|
281
394
|
os.system(add_key)
|
282
395
|
return True
|
283
396
|
else:
|