mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
116 lines
3.9 KiB
Python
116 lines
3.9 KiB
Python
from flask import abort, current_app, flash, redirect, request, render_template, url_for, send_from_directory
|
|
from flask_login import current_user, login_required
|
|
from ..models import Corpus, User, Job
|
|
from ..tables import AdminUserTable, AdminUserItem
|
|
from . import main
|
|
from .forms import CreateCorpusForm
|
|
from ..decorators import admin_required
|
|
from .. import db
|
|
import os
|
|
|
|
|
|
@main.route('/')
|
|
def index():
|
|
return render_template('main/index.html.j2', title='Opaque')
|
|
|
|
|
|
@main.route('/admin', methods=['GET', 'POST'])
|
|
@login_required
|
|
@admin_required
|
|
def for_admins_only():
|
|
users = User.query.order_by(User.username).all()
|
|
items = [AdminUserItem(u.username, u.email, u.role_id, u.confirmed) for u in users]
|
|
table = AdminUserTable(items).__html__() # converts table object to html string
|
|
table = table.replace('tbody', 'tbody class="list"', 1) # add class list to tbody element. Needed by list.js
|
|
return render_template('main/admin.html.j2', title='Administration tools',
|
|
table=table)
|
|
|
|
|
|
@main.route('/dashboard', methods=['GET', 'POST'])
|
|
@login_required
|
|
def dashboard():
|
|
create_corpus_form = CreateCorpusForm()
|
|
|
|
if create_corpus_form.validate_on_submit():
|
|
app = current_app._get_current_object()
|
|
corpus = Corpus(creator=current_user._get_current_object(),
|
|
description=create_corpus_form.description.data,
|
|
title=create_corpus_form.title.data)
|
|
db.session.add(corpus)
|
|
db.session.commit()
|
|
|
|
dir = os.path.join(app.config['OPAQUE_STORAGE'],
|
|
str(corpus.user_id),
|
|
'corpora',
|
|
str(corpus.id))
|
|
|
|
try:
|
|
os.makedirs(dir)
|
|
except OSError:
|
|
flash('OSError!')
|
|
else:
|
|
for file in create_corpus_form.files.data:
|
|
file.save(os.path.join(dir, file.filename))
|
|
flash('Corpus created!')
|
|
return redirect(url_for('main.dashboard'))
|
|
|
|
return render_template(
|
|
'main/dashboard.html.j2',
|
|
title='Dashboard',
|
|
create_corpus_form=create_corpus_form
|
|
)
|
|
|
|
|
|
@main.route('/jobs/<int:job_id>')
|
|
@login_required
|
|
def job(job_id):
|
|
job = Job.query.filter_by(id=job_id).first()
|
|
if not job:
|
|
print('Job not found.')
|
|
abort(404)
|
|
elif not job.user_id == current_user.id:
|
|
print('Job does not belong to current user.')
|
|
abort(403)
|
|
|
|
dir = os.path.join(current_app.config['OPAQUE_STORAGE'],
|
|
str(current_user.id),
|
|
'jobs',
|
|
str(job.id))
|
|
files = {}
|
|
for file in os.listdir(dir):
|
|
if file == 'output':
|
|
continue
|
|
files[file] = {}
|
|
files[file]['path'] = os.path.join(file)
|
|
if job.status == 'complete':
|
|
files[file]['results'] = {}
|
|
results_dir = os.path.join(dir, 'output', file)
|
|
for result in os.listdir(results_dir):
|
|
files[file]['results'][result] = {}
|
|
files[file]['results'][result]['path'] = os.path.join(
|
|
'output', files[file]['path'], result
|
|
)
|
|
|
|
return render_template('main/jobs/job.html.j2',
|
|
files=files,
|
|
job=job,
|
|
title='Job')
|
|
|
|
|
|
@main.route('/jobs/<int:job_id>/download')
|
|
@login_required
|
|
def job_download(job_id):
|
|
file = request.args.get('file')
|
|
job = Job.query.filter_by(id=job_id).first()
|
|
if not file or not job:
|
|
print('Job not found.')
|
|
abort(404)
|
|
elif not job.user_id == current_user.id:
|
|
print('Job does not belong to current user.')
|
|
abort(403)
|
|
dir = os.path.join(current_app.config['OPAQUE_STORAGE'],
|
|
str(current_user.id),
|
|
'jobs',
|
|
str(job.id))
|
|
return send_from_directory(directory=dir, filename=file, as_attachment=True)
|