mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
61 lines
1.9 KiB
Python
61 lines
1.9 KiB
Python
from flask import (
|
|
abort,
|
|
redirect,
|
|
render_template,
|
|
send_from_directory,
|
|
url_for
|
|
)
|
|
from flask_breadcrumbs import register_breadcrumb
|
|
from flask_login import current_user
|
|
import os
|
|
from app.models import Job, JobInput, JobResult
|
|
from . import bp
|
|
from .utils import job_dynamic_list_constructor as job_dlc
|
|
|
|
|
|
@bp.route('')
|
|
@register_breadcrumb(bp, '.', '<i class="nopaque-icons left">J</i>My Jobs')
|
|
def corpora():
|
|
return redirect(url_for('main.dashboard', _anchor='jobs'))
|
|
|
|
|
|
@bp.route('/<hashid:job_id>')
|
|
@register_breadcrumb(bp, '.entity', '', dynamic_list_constructor=job_dlc)
|
|
def job(job_id):
|
|
job = Job.query.get_or_404(job_id)
|
|
if not (job.user == current_user or current_user.is_administrator()):
|
|
abort(403)
|
|
return render_template(
|
|
'jobs/job.html.j2',
|
|
title='Job',
|
|
job=job
|
|
)
|
|
|
|
|
|
@bp.route('/<hashid:job_id>/inputs/<hashid:job_input_id>/download')
|
|
def download_job_input(job_id, job_input_id):
|
|
job_input = JobInput.query.filter_by(job_id=job_id, id=job_input_id).first_or_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
|
|
)
|
|
|
|
|
|
@bp.route('/<hashid:job_id>/results/<hashid:job_result_id>/download')
|
|
def download_job_result(job_id, job_result_id):
|
|
job_result = JobResult.query.filter_by(job_id=job_id, id=job_result_id).first_or_404()
|
|
if not (job_result.job.user == current_user or current_user.is_administrator()):
|
|
abort(403)
|
|
return send_from_directory(
|
|
os.path.dirname(job_result.path),
|
|
os.path.basename(job_result.path),
|
|
as_attachment=True,
|
|
attachment_filename=job_result.filename,
|
|
mimetype=job_result.mimetype
|
|
)
|