2022-02-08 11:26:20 +00:00
|
|
|
from flask import (
|
|
|
|
abort,
|
2022-09-02 11:07:30 +00:00
|
|
|
current_app,
|
2022-02-08 11:26:20 +00:00
|
|
|
render_template,
|
2022-09-02 11:07:30 +00:00
|
|
|
send_from_directory
|
2022-02-08 11:26:20 +00:00
|
|
|
)
|
2019-11-04 08:03:31 +00:00
|
|
|
from flask_login import current_user, login_required
|
2022-09-02 11:07:30 +00:00
|
|
|
from threading import Thread
|
2020-12-02 13:26:17 +00:00
|
|
|
import os
|
2022-09-02 11:07:30 +00:00
|
|
|
from app import db
|
|
|
|
from app.decorators import admin_required
|
|
|
|
from app.models import Job, JobInput, JobResult, JobStatus
|
|
|
|
from . import bp
|
2019-11-04 08:03:31 +00:00
|
|
|
|
|
|
|
|
2021-11-30 15:22:16 +00:00
|
|
|
@bp.route('/<hashid:job_id>')
|
2019-11-04 08:03:31 +00:00
|
|
|
@login_required
|
|
|
|
def job(job_id):
|
|
|
|
job = Job.query.get_or_404(job_id)
|
2021-11-30 15:22:16 +00:00
|
|
|
if not (job.user == current_user or current_user.is_administrator()):
|
2019-11-04 08:03:31 +00:00
|
|
|
abort(403)
|
2022-02-08 11:26:20 +00:00
|
|
|
return render_template(
|
|
|
|
'jobs/job.html.j2',
|
|
|
|
job=job,
|
|
|
|
title='Job'
|
|
|
|
)
|
2019-11-04 08:03:31 +00:00
|
|
|
|
|
|
|
|
2022-09-02 11:07:30 +00:00
|
|
|
@bp.route('/<hashid:job_id>', methods=['DELETE'])
|
2019-11-04 08:03:31 +00:00
|
|
|
@login_required
|
|
|
|
def delete_job(job_id):
|
2022-09-02 11:07:30 +00:00
|
|
|
def _delete_job(app, job_id):
|
|
|
|
with app.app_context():
|
|
|
|
job = Job.query.get(job_id)
|
|
|
|
job.delete()
|
|
|
|
db.session.commit()
|
|
|
|
|
2019-11-04 10:04:42 +00:00
|
|
|
job = Job.query.get_or_404(job_id)
|
2021-11-30 15:22:16 +00:00
|
|
|
if not (job.user == current_user or current_user.is_administrator()):
|
2019-11-04 10:04:42 +00:00
|
|
|
abort(403)
|
2022-09-02 11:07:30 +00:00
|
|
|
thread = Thread(
|
|
|
|
target=_delete_job,
|
|
|
|
args=(current_app._get_current_object(), job_id)
|
2022-02-03 11:39:16 +00:00
|
|
|
)
|
2022-09-02 11:07:30 +00:00
|
|
|
thread.start()
|
|
|
|
return {}, 202
|
2019-11-04 08:03:31 +00:00
|
|
|
|
|
|
|
|
2022-06-28 10:30:02 +00:00
|
|
|
@bp.route('/<hashid:job_id>/log')
|
|
|
|
@login_required
|
|
|
|
@admin_required
|
|
|
|
def job_log(job_id):
|
|
|
|
job = Job.query.get_or_404(job_id)
|
|
|
|
if job.status not in [JobStatus.COMPLETED, JobStatus.FAILED]:
|
2022-09-02 11:07:30 +00:00
|
|
|
response = {'errors': {'message': 'Job status is not completed or failed'}}
|
|
|
|
return response, 409
|
|
|
|
with open(os.path.join(job.path, 'pipeline_data', 'logs', 'pyflow_log.txt')) as log_file:
|
|
|
|
log = log_file.read()
|
|
|
|
return log, 200, {'Content-Type': 'text/plain; charset=utf-8'}
|
2022-06-28 10:30:02 +00:00
|
|
|
|
|
|
|
|
2022-09-02 11:07:30 +00:00
|
|
|
@bp.route('/<hashid:job_id>/restart', methods=['POST'])
|
2020-07-09 07:42:30 +00:00
|
|
|
@login_required
|
2022-09-02 11:07:30 +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()
|
|
|
|
|
2020-07-09 07:42:30 +00:00
|
|
|
job = Job.query.get_or_404(job_id)
|
2022-09-02 11:07:30 +00:00
|
|
|
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()
|
|
|
|
return {}, 202
|
|
|
|
|
|
|
|
|
|
|
|
@bp.route('/<hashid:job_id>/inputs/<hashid:job_input_id>/download')
|
|
|
|
@login_required
|
|
|
|
def download_job_input(job_id, job_input_id):
|
|
|
|
job_input = JobInput.query.get_or_404(job_input_id)
|
|
|
|
if job_input.job.id != job_id:
|
|
|
|
abort(404)
|
|
|
|
if not (job_input.job.user == current_user or current_user.is_administrator()):
|
|
|
|
abort(403)
|
|
|
|
return send_from_directory(
|
|
|
|
os.path.dirname(job_input.path),
|
|
|
|
os.path.basename(job_input.path),
|
|
|
|
as_attachment=True,
|
|
|
|
attachment_filename=job_input.filename,
|
|
|
|
mimetype=job_input.mimetype
|
|
|
|
)
|
2020-07-09 07:42:30 +00:00
|
|
|
|
|
|
|
|
2021-11-30 15:22:16 +00:00
|
|
|
@bp.route('/<hashid:job_id>/results/<hashid:job_result_id>/download')
|
2019-11-04 08:03:31 +00:00
|
|
|
@login_required
|
|
|
|
def download_job_result(job_id, job_result_id):
|
2022-09-02 11:07:30 +00:00
|
|
|
job_result = JobResult.query.get_or_404(job_result_id)
|
|
|
|
if job_result.job.id != job_id:
|
|
|
|
abort(404)
|
|
|
|
if not (job_result.job.user == current_user or current_user.is_administrator()):
|
2019-11-04 08:03:31 +00:00
|
|
|
abort(403)
|
2022-02-03 11:39:16 +00:00
|
|
|
return send_from_directory(
|
2022-09-02 11:07:30 +00:00
|
|
|
os.path.dirname(job_result.path),
|
|
|
|
os.path.basename(job_result.path),
|
2022-02-03 11:39:16 +00:00
|
|
|
as_attachment=True,
|
|
|
|
attachment_filename=job_result.filename,
|
2022-09-02 11:07:30 +00:00
|
|
|
mimetype=job_result.mimetype
|
2022-02-03 11:39:16 +00:00
|
|
|
)
|