2023-03-13 12:29:01 +00:00
|
|
|
from flask import abort, current_app
|
2023-04-11 09:46:33 +00:00
|
|
|
from flask_login import current_user
|
2023-03-09 13:55:52 +00:00
|
|
|
from threading import Thread
|
|
|
|
from app import db
|
|
|
|
from app.decorators import admin_required, content_negotiation
|
2023-03-10 07:47:03 +00:00
|
|
|
from app.models import Job, JobStatus
|
2023-03-09 13:55:52 +00:00
|
|
|
from . import bp
|
|
|
|
|
2023-03-13 12:29:01 +00:00
|
|
|
|
2023-03-09 13:55:52 +00:00
|
|
|
@bp.route('/<hashid:job_id>', methods=['DELETE'])
|
|
|
|
@content_negotiation(produces='application/json')
|
|
|
|
def delete_job(job_id):
|
|
|
|
def _delete_job(app, job_id):
|
|
|
|
with app.app_context():
|
|
|
|
job = Job.query.get(job_id)
|
|
|
|
job.delete()
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
job = Job.query.get_or_404(job_id)
|
|
|
|
if not (job.user == current_user or current_user.is_administrator()):
|
|
|
|
abort(403)
|
|
|
|
thread = Thread(
|
|
|
|
target=_delete_job,
|
|
|
|
args=(current_app._get_current_object(), job_id)
|
|
|
|
)
|
|
|
|
thread.start()
|
|
|
|
response_data = {
|
2023-03-13 12:29:01 +00:00
|
|
|
'message': f'Job "{job.title}" marked for deletion'
|
2023-03-09 13:55:52 +00:00
|
|
|
}
|
2023-03-13 12:29:01 +00:00
|
|
|
return response_data, 202
|
|
|
|
|
2023-03-09 13:55:52 +00:00
|
|
|
|
|
|
|
@bp.route('/<hashid:job_id>/log')
|
|
|
|
@admin_required
|
2023-03-10 07:47:03 +00:00
|
|
|
@content_negotiation(produces='application/json')
|
2023-03-09 13:55:52 +00:00
|
|
|
def job_log(job_id):
|
|
|
|
job = Job.query.get_or_404(job_id)
|
|
|
|
if job.status not in [JobStatus.COMPLETED, JobStatus.FAILED]:
|
|
|
|
response = {'errors': {'message': 'Job status is not completed or failed'}}
|
|
|
|
return response, 409
|
2024-03-07 14:49:04 +00:00
|
|
|
with open(job.path / 'pipeline_data' / 'logs' / 'pyflow_log.txt') as log_file:
|
2023-03-09 13:55:52 +00:00
|
|
|
log = log_file.read()
|
2023-03-10 07:47:03 +00:00
|
|
|
response_data = {
|
|
|
|
'jobLog': log
|
|
|
|
}
|
2023-03-13 12:29:01 +00:00
|
|
|
return response_data, 200
|
2023-03-09 13:55:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
@bp.route('/<hashid:job_id>/restart', methods=['POST'])
|
2023-03-10 07:47:03 +00:00
|
|
|
@content_negotiation(produces='application/json')
|
2023-03-09 13:55:52 +00:00
|
|
|
def restart_job(job_id):
|
|
|
|
def _restart_job(app, job_id):
|
|
|
|
with app.app_context():
|
|
|
|
job = Job.query.get(job_id)
|
|
|
|
job.restart()
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
job = Job.query.get_or_404(job_id)
|
|
|
|
if not (job.user == current_user or current_user.is_administrator()):
|
|
|
|
abort(403)
|
|
|
|
if job.status == JobStatus.FAILED:
|
|
|
|
response = {'errors': {'message': 'Job status is not "failed"'}}
|
|
|
|
return response, 409
|
|
|
|
thread = Thread(
|
|
|
|
target=_restart_job,
|
|
|
|
args=(current_app._get_current_object(), job_id)
|
|
|
|
)
|
|
|
|
thread.start()
|
2023-03-10 07:47:03 +00:00
|
|
|
response_data = {
|
2023-03-13 12:29:01 +00:00
|
|
|
'message': f'Job "{job.title}" marked for restarting'
|
2023-03-10 07:47:03 +00:00
|
|
|
}
|
2023-03-13 12:29:01 +00:00
|
|
|
return response_data, 202
|