2022-02-08 11:26:20 +00:00
|
|
|
from app.decorators import admin_required
|
|
|
|
from app.models import Job, JobInput, JobResult, JobStatus
|
|
|
|
from flask import (
|
|
|
|
abort,
|
|
|
|
flash,
|
|
|
|
redirect,
|
|
|
|
render_template,
|
|
|
|
send_from_directory,
|
|
|
|
url_for
|
|
|
|
)
|
2019-11-04 08:03:31 +00:00
|
|
|
from flask_login import current_user, login_required
|
2021-09-13 09:45:43 +00:00
|
|
|
from . import bp
|
2020-04-21 16:34:21 +00:00
|
|
|
from . import tasks
|
2020-12-02 13:26:17 +00:00
|
|
|
import os
|
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
|
|
|
|
|
|
|
|
2021-11-30 15:22:16 +00:00
|
|
|
@bp.route('/<hashid:job_id>/delete')
|
2019-11-04 08:03:31 +00:00
|
|
|
@login_required
|
|
|
|
def delete_job(job_id):
|
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)
|
2020-04-21 16:34:21 +00:00
|
|
|
tasks.delete_job(job_id)
|
2022-02-08 11:26:20 +00:00
|
|
|
flash(f'Job "{job.title}" marked for deletion', 'job')
|
2019-11-04 08:03:31 +00:00
|
|
|
return redirect(url_for('main.dashboard'))
|
|
|
|
|
|
|
|
|
2021-11-30 15:22:16 +00:00
|
|
|
@bp.route('/<hashid:job_id>/inputs/<hashid:job_input_id>/download')
|
2019-11-04 08:03:31 +00:00
|
|
|
@login_required
|
|
|
|
def download_job_input(job_id, job_input_id):
|
2022-02-08 11:26:20 +00:00
|
|
|
job_input = JobInput.query.filter(
|
|
|
|
JobInput.job_id == job_id,
|
|
|
|
JobInput.id == job_input_id
|
|
|
|
).first_or_404()
|
|
|
|
if not (
|
|
|
|
job_input.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(
|
|
|
|
as_attachment=True,
|
|
|
|
attachment_filename=job_input.filename,
|
|
|
|
directory=os.path.dirname(job_input.path),
|
|
|
|
filename=os.path.basename(job_input.path)
|
|
|
|
)
|
2019-11-04 08:03:31 +00:00
|
|
|
|
|
|
|
|
2021-11-30 15:22:16 +00:00
|
|
|
@bp.route('/<hashid:job_id>/restart')
|
2020-07-09 07:42:30 +00:00
|
|
|
@login_required
|
|
|
|
@admin_required
|
|
|
|
def restart(job_id):
|
|
|
|
job = Job.query.get_or_404(job_id)
|
2022-02-08 11:26:20 +00:00
|
|
|
if job.status not in [JobStatus.COMPLETED, JobStatus.FAILED]:
|
|
|
|
flash(
|
|
|
|
f'Can\'t restart job "{job.title}": Status is not "Completed/Failed"', # noqa
|
|
|
|
category='error'
|
|
|
|
)
|
2020-07-09 07:42:30 +00:00
|
|
|
else:
|
|
|
|
tasks.restart_job(job_id)
|
2022-02-08 11:26:20 +00:00
|
|
|
flash(f'Job "{job.title}" marked to get restarted', category='job')
|
2020-11-13 09:01:51 +00:00
|
|
|
return redirect(url_for('.job', job_id=job_id))
|
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-02-08 11:26:20 +00:00
|
|
|
job_result = JobResult.query.filter(
|
|
|
|
JobResult.job_id == job_id,
|
|
|
|
JobResult.id == job_result_id
|
|
|
|
).first_or_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(
|
|
|
|
as_attachment=True,
|
|
|
|
attachment_filename=job_result.filename,
|
|
|
|
directory=os.path.dirname(job_result.path),
|
|
|
|
filename=os.path.basename(job_result.path)
|
|
|
|
)
|