2019-11-05 09:32:42 +00:00
|
|
|
|
from datetime import datetime
|
2019-07-08 11:55:56 +00:00
|
|
|
|
from flask import current_app
|
2019-07-09 13:41:16 +00:00
|
|
|
|
from flask_login import UserMixin, AnonymousUserMixin
|
2019-08-22 07:35:23 +00:00
|
|
|
|
from itsdangerous import BadSignature, TimedJSONWebSignatureSerializer
|
2019-11-18 14:55:19 +00:00
|
|
|
|
from time import sleep
|
2019-07-05 12:47:35 +00:00
|
|
|
|
from werkzeug.security import generate_password_hash, check_password_hash
|
2019-11-14 08:48:30 +00:00
|
|
|
|
from . import db, logger, login_manager
|
2019-09-12 14:45:05 +00:00
|
|
|
|
import os
|
|
|
|
|
import shutil
|
2019-11-05 09:32:42 +00:00
|
|
|
|
import xml.etree.ElementTree as ET
|
2019-07-05 12:47:35 +00:00
|
|
|
|
|
|
|
|
|
|
2019-07-09 13:41:16 +00:00
|
|
|
|
class Permission:
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
Defines User permissions as integers by the power of 2. User permission
|
|
|
|
|
can be evaluated using the bitwise operator &. 3 equals to CREATE_JOB and
|
|
|
|
|
DELETE_JOB and so on.
|
|
|
|
|
"""
|
2019-07-09 13:41:16 +00:00
|
|
|
|
CREATE_JOB = 1
|
|
|
|
|
DELETE_JOB = 2
|
|
|
|
|
# WRITE = 4
|
|
|
|
|
# MODERATE = 8
|
|
|
|
|
ADMIN = 16
|
|
|
|
|
|
|
|
|
|
|
2019-07-05 12:47:35 +00:00
|
|
|
|
class Role(db.Model):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
2019-08-22 07:35:23 +00:00
|
|
|
|
Model for the different roles Users can have. Is a one-to-many
|
|
|
|
|
relationship. A Role can be associated with many User rows.
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
2019-07-05 12:47:35 +00:00
|
|
|
|
__tablename__ = 'roles'
|
2019-08-06 09:47:04 +00:00
|
|
|
|
# Primary key
|
2019-07-05 12:47:35 +00:00
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
2019-07-09 13:41:16 +00:00
|
|
|
|
default = db.Column(db.Boolean, default=False, index=True)
|
2019-08-06 09:47:04 +00:00
|
|
|
|
name = db.Column(db.String(64), unique=True)
|
2019-07-09 13:41:16 +00:00
|
|
|
|
permissions = db.Column(db.Integer)
|
2019-08-06 09:47:04 +00:00
|
|
|
|
# Relationships
|
2019-07-09 13:41:16 +00:00
|
|
|
|
users = db.relationship('User', backref='role', lazy='dynamic')
|
|
|
|
|
|
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
|
super(Role, self).__init__(**kwargs)
|
|
|
|
|
if self.permissions is None:
|
|
|
|
|
self.permissions = 0
|
2019-07-05 12:47:35 +00:00
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
String representation of the Role. For human readability.
|
|
|
|
|
"""
|
2019-07-05 12:47:35 +00:00
|
|
|
|
return '<Role %r>' % self.name
|
|
|
|
|
|
2019-07-09 13:41:16 +00:00
|
|
|
|
def add_permission(self, perm):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
Add new permission to Role. Input is a Permission.
|
|
|
|
|
"""
|
2019-07-09 13:41:16 +00:00
|
|
|
|
if not self.has_permission(perm):
|
|
|
|
|
self.permissions += perm
|
|
|
|
|
|
|
|
|
|
def remove_permission(self, perm):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
Removes permission from a Role. Input a Permission.
|
|
|
|
|
"""
|
2019-07-09 13:41:16 +00:00
|
|
|
|
if self.has_permission(perm):
|
|
|
|
|
self.permissions -= perm
|
|
|
|
|
|
|
|
|
|
def reset_permissions(self):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
Resets permissions to zero. Zero equals no permissions at all.
|
|
|
|
|
"""
|
2019-07-09 13:41:16 +00:00
|
|
|
|
self.permissions = 0
|
|
|
|
|
|
|
|
|
|
def has_permission(self, perm):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
2019-09-10 11:49:01 +00:00
|
|
|
|
Checks if a Role has a specific Permission. Does this with the bitwise
|
2019-07-11 13:33:48 +00:00
|
|
|
|
operator.
|
|
|
|
|
"""
|
2019-07-09 13:41:16 +00:00
|
|
|
|
return self.permissions & perm == perm
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def insert_roles():
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
Inserts roles into the databes. This has to be executed befor Users are
|
|
|
|
|
added to the database. Otherwiese Users will not have a Role assigned
|
|
|
|
|
to them. Order of the roles dictionary determines the ID of each role.
|
|
|
|
|
User hast the ID 1 and Administrator has the ID 2.
|
|
|
|
|
"""
|
2019-11-14 08:48:30 +00:00
|
|
|
|
roles = {'User': [Permission.CREATE_JOB],
|
|
|
|
|
'Administrator': [Permission.ADMIN, Permission.CREATE_JOB,
|
|
|
|
|
Permission.DELETE_JOB]}
|
2019-07-09 13:41:16 +00:00
|
|
|
|
default_role = 'User'
|
|
|
|
|
for r in roles:
|
|
|
|
|
role = Role.query.filter_by(name=r).first()
|
|
|
|
|
if role is None:
|
|
|
|
|
role = Role(name=r)
|
|
|
|
|
role.reset_permissions()
|
|
|
|
|
for perm in roles[r]:
|
|
|
|
|
role.add_permission(perm)
|
|
|
|
|
role.default = (role.name == default_role)
|
|
|
|
|
db.session.add(role)
|
|
|
|
|
db.session.commit()
|
|
|
|
|
|
2019-07-05 12:47:35 +00:00
|
|
|
|
|
|
|
|
|
class User(UserMixin, db.Model):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
Model for Users that are registered to Opaque.
|
|
|
|
|
"""
|
2019-07-05 12:47:35 +00:00
|
|
|
|
__tablename__ = 'users'
|
2019-08-06 09:47:04 +00:00
|
|
|
|
# Primary key
|
2019-07-05 12:47:35 +00:00
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
2019-08-06 09:47:04 +00:00
|
|
|
|
confirmed = db.Column(db.Boolean, default=False)
|
2019-09-12 12:24:43 +00:00
|
|
|
|
email = db.Column(db.String(254), unique=True, index=True)
|
2019-07-05 12:47:35 +00:00
|
|
|
|
password_hash = db.Column(db.String(128))
|
2019-08-06 13:39:09 +00:00
|
|
|
|
registration_date = db.Column(db.DateTime(), default=datetime.utcnow)
|
2019-07-05 12:47:35 +00:00
|
|
|
|
role_id = db.Column(db.Integer, db.ForeignKey('roles.id'))
|
2019-08-06 09:47:04 +00:00
|
|
|
|
username = db.Column(db.String(64), unique=True, index=True)
|
|
|
|
|
# Relationships
|
2019-08-15 13:57:27 +00:00
|
|
|
|
corpora = db.relationship('Corpus', backref='creator', lazy='dynamic',
|
|
|
|
|
cascade='save-update, merge, delete')
|
|
|
|
|
jobs = db.relationship('Job', backref='creator', lazy='dynamic',
|
|
|
|
|
cascade='save-update, merge, delete')
|
2019-10-09 14:10:30 +00:00
|
|
|
|
is_dark = db.Column(db.Boolean, default=False)
|
2019-07-05 12:47:35 +00:00
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
String representation of the User. For human readability.
|
|
|
|
|
"""
|
2019-07-05 12:47:35 +00:00
|
|
|
|
return '<User %r>' % self.username
|
|
|
|
|
|
2019-07-09 13:41:16 +00:00
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
|
super(User, self).__init__(**kwargs)
|
|
|
|
|
if self.role is None:
|
2019-12-02 10:34:28 +00:00
|
|
|
|
if self.email == current_app.config['NOPAQUE_ADMIN']:
|
2019-07-09 13:41:16 +00:00
|
|
|
|
self.role = Role.query.filter_by(name='Administrator').first()
|
|
|
|
|
if self.role is None:
|
|
|
|
|
self.role = Role.query.filter_by(default=True).first()
|
|
|
|
|
|
2019-07-08 13:59:15 +00:00
|
|
|
|
def generate_confirmation_token(self, expiration=3600):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
Generates a confirmation token for user confirmation via email.
|
|
|
|
|
"""
|
2019-08-22 07:35:23 +00:00
|
|
|
|
s = TimedJSONWebSignatureSerializer(current_app.config['SECRET_KEY'],
|
|
|
|
|
expiration)
|
2019-07-08 13:59:15 +00:00
|
|
|
|
return s.dumps({'confirm': self.id}).decode('utf-8')
|
2019-07-05 12:47:35 +00:00
|
|
|
|
|
2019-07-08 11:55:56 +00:00
|
|
|
|
def generate_reset_token(self, expiration=3600):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
Generates a reset token for password reset via email.
|
|
|
|
|
"""
|
2019-08-22 07:35:23 +00:00
|
|
|
|
s = TimedJSONWebSignatureSerializer(current_app.config['SECRET_KEY'],
|
|
|
|
|
expiration)
|
2019-07-08 11:55:56 +00:00
|
|
|
|
return s.dumps({'reset': self.id}).decode('utf-8')
|
|
|
|
|
|
2019-07-08 13:59:15 +00:00
|
|
|
|
def confirm(self, token):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
Confirms User if the given token is valid and not expired.
|
|
|
|
|
"""
|
2019-08-22 07:35:23 +00:00
|
|
|
|
s = TimedJSONWebSignatureSerializer(current_app.config['SECRET_KEY'])
|
2019-07-08 13:59:15 +00:00
|
|
|
|
try:
|
|
|
|
|
data = s.loads(token.encode('utf-8'))
|
2019-08-22 07:35:23 +00:00
|
|
|
|
except BadSignature:
|
2019-07-08 13:59:15 +00:00
|
|
|
|
return False
|
|
|
|
|
if data.get('confirm') != self.id:
|
|
|
|
|
return False
|
|
|
|
|
self.confirmed = True
|
|
|
|
|
db.session.add(self)
|
|
|
|
|
return True
|
|
|
|
|
|
2019-07-08 13:13:32 +00:00
|
|
|
|
@staticmethod
|
|
|
|
|
def reset_password(token, new_password):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
Resets password for User if the given token is valid and not expired.
|
|
|
|
|
"""
|
2019-08-22 07:35:23 +00:00
|
|
|
|
s = TimedJSONWebSignatureSerializer(current_app.config['SECRET_KEY'])
|
2019-07-08 13:13:32 +00:00
|
|
|
|
try:
|
|
|
|
|
data = s.loads(token.encode('utf-8'))
|
2019-08-22 07:35:23 +00:00
|
|
|
|
except BadSignature:
|
2019-07-08 13:13:32 +00:00
|
|
|
|
return False
|
|
|
|
|
user = User.query.get(data.get('reset'))
|
|
|
|
|
if user is None:
|
|
|
|
|
return False
|
|
|
|
|
user.password = new_password
|
|
|
|
|
db.session.add(user)
|
|
|
|
|
return True
|
|
|
|
|
|
2019-07-05 12:47:35 +00:00
|
|
|
|
@property
|
|
|
|
|
def password(self):
|
|
|
|
|
raise AttributeError('password is not a readable attribute')
|
|
|
|
|
|
|
|
|
|
@password.setter
|
|
|
|
|
def password(self, password):
|
|
|
|
|
self.password_hash = generate_password_hash(password)
|
|
|
|
|
|
|
|
|
|
def verify_password(self, password):
|
|
|
|
|
return check_password_hash(self.password_hash, password)
|
|
|
|
|
|
2019-07-09 13:41:16 +00:00
|
|
|
|
def can(self, perm):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
Checks if a User with its current role can doe something. Checks if the
|
|
|
|
|
associated role actually has the needed Permission.
|
|
|
|
|
"""
|
2019-07-09 13:41:16 +00:00
|
|
|
|
return self.role is not None and self.role.has_permission(perm)
|
|
|
|
|
|
|
|
|
|
def is_administrator(self):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
Checks if User has Admin permissions.
|
|
|
|
|
"""
|
2019-07-09 13:41:16 +00:00
|
|
|
|
return self.can(Permission.ADMIN)
|
|
|
|
|
|
2019-11-14 08:48:30 +00:00
|
|
|
|
def delete(self):
|
2019-09-11 12:51:59 +00:00
|
|
|
|
"""
|
2019-11-14 08:48:30 +00:00
|
|
|
|
Delete the user and its corpora and jobs from database and filesystem.
|
2019-09-11 12:51:59 +00:00
|
|
|
|
"""
|
2019-11-14 08:48:30 +00:00
|
|
|
|
for job in self.jobs:
|
|
|
|
|
job.delete()
|
|
|
|
|
for corpus in self.corpora:
|
|
|
|
|
corpus.delete()
|
2019-12-02 10:34:28 +00:00
|
|
|
|
path = os.path.join(current_app.config['NOPAQUE_STORAGE'],
|
2019-11-14 08:48:30 +00:00
|
|
|
|
str(self.id))
|
|
|
|
|
try:
|
|
|
|
|
shutil.rmtree(path)
|
|
|
|
|
except Exception as e:
|
|
|
|
|
logger.warning(e)
|
|
|
|
|
pass
|
2019-09-17 14:31:41 +00:00
|
|
|
|
db.session.delete(self)
|
2019-09-11 12:51:59 +00:00
|
|
|
|
db.session.commit()
|
|
|
|
|
|
2019-09-09 14:17:59 +00:00
|
|
|
|
|
2019-07-09 13:41:16 +00:00
|
|
|
|
class AnonymousUser(AnonymousUserMixin):
|
2019-07-11 13:33:48 +00:00
|
|
|
|
"""
|
|
|
|
|
Model replaces the default AnonymousUser.
|
|
|
|
|
"""
|
2019-08-06 12:26:22 +00:00
|
|
|
|
|
2019-07-09 13:41:16 +00:00
|
|
|
|
def can(self, permissions):
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
def is_administrator(self):
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
2019-10-16 14:52:05 +00:00
|
|
|
|
class JobInput(db.Model):
|
|
|
|
|
"""
|
2019-10-17 11:26:20 +00:00
|
|
|
|
Class to define JobInputs.
|
2019-10-16 14:52:05 +00:00
|
|
|
|
"""
|
|
|
|
|
__tablename__ = 'job_inputs'
|
|
|
|
|
# Primary key
|
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
|
|
|
filename = db.Column(db.String(255))
|
2019-10-23 09:22:29 +00:00
|
|
|
|
dir = db.Column(db.String(255))
|
2019-10-16 14:52:05 +00:00
|
|
|
|
job_id = db.Column(db.Integer, db.ForeignKey('jobs.id'))
|
|
|
|
|
|
2019-10-17 11:26:20 +00:00
|
|
|
|
def __repr__(self):
|
|
|
|
|
"""
|
|
|
|
|
String representation of the JobInput. For human readability.
|
|
|
|
|
"""
|
|
|
|
|
return '<JobInput %r>' % self.filename
|
|
|
|
|
|
|
|
|
|
def to_dict(self):
|
|
|
|
|
return {'id': self.id,
|
2019-10-24 11:29:02 +00:00
|
|
|
|
'dir': self.dir,
|
2019-10-17 11:26:20 +00:00
|
|
|
|
'filename': self.filename,
|
2020-01-30 10:01:17 +00:00
|
|
|
|
'job_id': self.job_id}
|
2019-10-17 11:26:20 +00:00
|
|
|
|
|
2019-10-16 14:52:05 +00:00
|
|
|
|
|
|
|
|
|
class JobResult(db.Model):
|
|
|
|
|
"""
|
2019-10-17 11:26:20 +00:00
|
|
|
|
Class to define JobResults.
|
2019-10-16 14:52:05 +00:00
|
|
|
|
"""
|
|
|
|
|
__tablename__ = 'job_results'
|
|
|
|
|
# Primary key
|
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
|
|
|
filename = db.Column(db.String(255))
|
2019-10-23 09:22:29 +00:00
|
|
|
|
dir = db.Column(db.String(255))
|
2019-10-16 14:52:05 +00:00
|
|
|
|
job_id = db.Column(db.Integer, db.ForeignKey('jobs.id'))
|
|
|
|
|
|
2019-10-17 11:26:20 +00:00
|
|
|
|
def __repr__(self):
|
|
|
|
|
"""
|
|
|
|
|
String representation of the JobResult. For human readability.
|
|
|
|
|
"""
|
|
|
|
|
return '<JobResult %r>' % self.filename
|
|
|
|
|
|
|
|
|
|
def to_dict(self):
|
|
|
|
|
return {'id': self.id,
|
2019-10-24 11:29:02 +00:00
|
|
|
|
'dir': self.dir,
|
2019-10-17 11:26:20 +00:00
|
|
|
|
'filename': self.filename,
|
2020-01-30 10:01:17 +00:00
|
|
|
|
'job_id': self.job_id}
|
2019-10-17 11:26:20 +00:00
|
|
|
|
|
2019-10-16 14:52:05 +00:00
|
|
|
|
|
2019-08-06 09:47:04 +00:00
|
|
|
|
class Job(db.Model):
|
2019-08-05 14:45:38 +00:00
|
|
|
|
"""
|
|
|
|
|
Class to define Jobs.
|
|
|
|
|
"""
|
|
|
|
|
__tablename__ = 'jobs'
|
2019-08-06 09:47:04 +00:00
|
|
|
|
# Primary key
|
2019-08-05 14:45:38 +00:00
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
2019-08-06 12:26:22 +00:00
|
|
|
|
creation_date = db.Column(db.DateTime(), default=datetime.utcnow)
|
2019-08-09 09:48:43 +00:00
|
|
|
|
description = db.Column(db.String(255))
|
2019-08-09 13:59:53 +00:00
|
|
|
|
end_date = db.Column(db.DateTime())
|
2019-08-09 09:48:43 +00:00
|
|
|
|
mem_mb = db.Column(db.Integer)
|
|
|
|
|
n_cores = db.Column(db.Integer)
|
2019-08-06 09:47:04 +00:00
|
|
|
|
service = db.Column(db.String(64))
|
|
|
|
|
'''
|
2019-08-09 09:48:43 +00:00
|
|
|
|
' Service specific arguments as string list.
|
|
|
|
|
' Example: ["-l eng", "--keep-intermediates", "--skip-binarization"]
|
2019-08-06 09:47:04 +00:00
|
|
|
|
'''
|
|
|
|
|
service_args = db.Column(db.String(255))
|
2019-08-09 09:48:43 +00:00
|
|
|
|
service_version = db.Column(db.String(16))
|
|
|
|
|
status = db.Column(db.String(16))
|
2019-08-06 09:47:04 +00:00
|
|
|
|
title = db.Column(db.String(32))
|
|
|
|
|
user_id = db.Column(db.Integer, db.ForeignKey('users.id'))
|
2019-10-16 14:52:05 +00:00
|
|
|
|
# Relationships
|
2019-11-14 08:48:30 +00:00
|
|
|
|
inputs = db.relationship('JobInput', backref='job', lazy='dynamic',
|
2019-10-16 14:52:05 +00:00
|
|
|
|
cascade='save-update, merge, delete')
|
2019-11-14 08:48:30 +00:00
|
|
|
|
results = db.relationship('JobResult', backref='job', lazy='dynamic',
|
2019-10-16 14:52:05 +00:00
|
|
|
|
cascade='save-update, merge, delete')
|
2019-08-05 14:45:38 +00:00
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
|
"""
|
|
|
|
|
String representation of the Job. For human readability.
|
|
|
|
|
"""
|
|
|
|
|
return '<Job %r>' % self.title
|
|
|
|
|
|
2019-11-14 08:48:30 +00:00
|
|
|
|
def delete(self):
|
|
|
|
|
"""
|
|
|
|
|
Delete the job and its inputs and outputs from database and filesystem.
|
|
|
|
|
"""
|
|
|
|
|
self.status = 'stopping'
|
|
|
|
|
db.session.commit()
|
|
|
|
|
while self.status != 'deleted':
|
2019-11-18 14:55:19 +00:00
|
|
|
|
sleep(1)
|
2019-11-14 08:48:30 +00:00
|
|
|
|
db.session.refresh(self)
|
2019-12-02 10:34:28 +00:00
|
|
|
|
path = os.path.join(current_app.config['NOPAQUE_STORAGE'],
|
2019-11-14 08:48:30 +00:00
|
|
|
|
str(self.user_id), 'jobs', str(self.id))
|
2019-11-18 14:55:19 +00:00
|
|
|
|
try:
|
|
|
|
|
shutil.rmtree(path)
|
|
|
|
|
except Exception as e:
|
|
|
|
|
''' TODO: Proper exception handling '''
|
|
|
|
|
logger.warning(e)
|
|
|
|
|
pass
|
2019-11-14 08:48:30 +00:00
|
|
|
|
db.session.delete(self)
|
|
|
|
|
db.session.commit()
|
|
|
|
|
|
2019-08-16 12:53:59 +00:00
|
|
|
|
def to_dict(self):
|
2019-08-16 07:49:27 +00:00
|
|
|
|
return {'id': self.id,
|
|
|
|
|
'creation_date': self.creation_date.timestamp(),
|
|
|
|
|
'description': self.description,
|
|
|
|
|
'end_date': (self.end_date.timestamp() if self.end_date else
|
|
|
|
|
None),
|
2019-10-17 11:26:20 +00:00
|
|
|
|
'inputs': [input.to_dict() for input in self.inputs],
|
2019-08-16 07:49:27 +00:00
|
|
|
|
'mem_mb': self.mem_mb,
|
|
|
|
|
'n_cores': self.n_cores,
|
2019-10-17 11:26:20 +00:00
|
|
|
|
'results': [result.to_dict() for result in self.results],
|
2019-08-16 07:49:27 +00:00
|
|
|
|
'service': self.service,
|
|
|
|
|
'service_args': self.service_args,
|
|
|
|
|
'service_version': self.service_version,
|
|
|
|
|
'status': self.status,
|
|
|
|
|
'title': self.title,
|
|
|
|
|
'user_id': self.user_id}
|
|
|
|
|
|
2019-08-05 14:45:38 +00:00
|
|
|
|
|
2019-10-16 14:52:05 +00:00
|
|
|
|
class CorpusFile(db.Model):
|
|
|
|
|
"""
|
|
|
|
|
Class to define Files.
|
|
|
|
|
"""
|
|
|
|
|
__tablename__ = 'corpus_files'
|
|
|
|
|
# Primary key
|
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
2020-01-08 15:02:42 +00:00
|
|
|
|
address = db.Column(db.String(255))
|
|
|
|
|
author = db.Column(db.String(255))
|
|
|
|
|
booktitle = db.Column(db.String(255))
|
|
|
|
|
chapter = db.Column(db.String(255))
|
2019-10-23 09:22:29 +00:00
|
|
|
|
dir = db.Column(db.String(255))
|
2020-01-08 15:02:42 +00:00
|
|
|
|
editor = db.Column(db.String(255))
|
2019-10-28 14:46:25 +00:00
|
|
|
|
filename = db.Column(db.String(255))
|
2020-01-08 15:02:42 +00:00
|
|
|
|
institution = db.Column(db.String(255))
|
|
|
|
|
journal = db.Column(db.String(255))
|
|
|
|
|
pages = db.Column(db.String(255))
|
|
|
|
|
publisher = db.Column(db.String(255))
|
2019-10-28 14:46:25 +00:00
|
|
|
|
publishing_year = db.Column(db.Integer)
|
2020-01-08 15:02:42 +00:00
|
|
|
|
school = db.Column(db.String(255))
|
|
|
|
|
title = db.Column(db.String(255))
|
2019-10-16 14:52:05 +00:00
|
|
|
|
corpus_id = db.Column(db.Integer, db.ForeignKey('corpora.id'))
|
|
|
|
|
|
2019-10-30 07:28:52 +00:00
|
|
|
|
def delete(self):
|
2019-12-02 10:34:28 +00:00
|
|
|
|
path = os.path.join(current_app.config['NOPAQUE_STORAGE'],
|
2019-11-14 08:48:30 +00:00
|
|
|
|
self.dir, self.filename)
|
2019-10-30 07:28:52 +00:00
|
|
|
|
try:
|
|
|
|
|
os.remove(path)
|
2019-11-14 08:48:30 +00:00
|
|
|
|
except Exception as e:
|
|
|
|
|
''' TODO: Proper exception handling '''
|
|
|
|
|
logger.warning(e)
|
|
|
|
|
pass
|
2019-11-06 09:04:29 +00:00
|
|
|
|
self.corpus.status = 'unprepared'
|
2019-10-30 07:28:52 +00:00
|
|
|
|
db.session.delete(self)
|
|
|
|
|
db.session.commit()
|
|
|
|
|
|
2019-11-05 09:32:42 +00:00
|
|
|
|
def insert_metadata(self):
|
2019-12-02 10:34:28 +00:00
|
|
|
|
file = os.path.join(current_app.config['NOPAQUE_STORAGE'],
|
2019-11-14 08:48:30 +00:00
|
|
|
|
self.dir, self.filename)
|
2019-11-05 09:32:42 +00:00
|
|
|
|
element_tree = ET.parse(file)
|
|
|
|
|
text_node = element_tree.find('text')
|
2020-01-29 12:57:38 +00:00
|
|
|
|
text_node.set('address', self.address if self.address else "NULL")
|
2019-11-05 09:32:42 +00:00
|
|
|
|
text_node.set('author', self.author)
|
2020-01-29 12:57:38 +00:00
|
|
|
|
text_node.set('booktitle', self.booktitle if self.booktitle else "NULL")
|
|
|
|
|
text_node.set('chapter', self.chapter if self.chapter else "NULL")
|
|
|
|
|
text_node.set('editor', self.editor if self.editor else "NULL")
|
|
|
|
|
text_node.set('institution', self.institution if self.institution else "NULL")
|
|
|
|
|
text_node.set('journal', self.journal if self.journal else "NULL")
|
|
|
|
|
text_node.set('pages', self.pages if self.pages else "NULL")
|
|
|
|
|
text_node.set('publisher', self.publisher if self.publisher else "NULL")
|
2019-11-05 09:32:42 +00:00
|
|
|
|
text_node.set('publishing_year', str(self.publishing_year))
|
2020-01-29 12:57:38 +00:00
|
|
|
|
text_node.set('school', self.school if self.school else "NULL")
|
2019-11-05 09:32:42 +00:00
|
|
|
|
text_node.set('title', self.title)
|
|
|
|
|
element_tree.write(file)
|
2019-11-06 09:04:29 +00:00
|
|
|
|
self.corpus.status = 'unprepared'
|
|
|
|
|
db.session.commit()
|
2019-11-05 09:32:42 +00:00
|
|
|
|
|
2019-10-16 14:52:05 +00:00
|
|
|
|
|
2019-08-06 10:06:41 +00:00
|
|
|
|
class Corpus(db.Model):
|
|
|
|
|
"""
|
|
|
|
|
Class to define a corpus.
|
|
|
|
|
"""
|
|
|
|
|
__tablename__ = 'corpora'
|
|
|
|
|
# Primary key
|
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
2019-08-06 13:41:07 +00:00
|
|
|
|
creation_date = db.Column(db.DateTime(), default=datetime.utcnow)
|
2019-08-12 06:57:21 +00:00
|
|
|
|
description = db.Column(db.String(255))
|
2019-11-04 14:35:09 +00:00
|
|
|
|
status = db.Column(db.String(16))
|
2019-08-06 10:06:41 +00:00
|
|
|
|
title = db.Column(db.String(32))
|
|
|
|
|
user_id = db.Column(db.Integer, db.ForeignKey('users.id'))
|
2019-11-07 09:45:12 +00:00
|
|
|
|
analysis_container_ip = db.Column(db.String(16))
|
|
|
|
|
analysis_container_name = db.Column(db.String(32))
|
2019-10-16 14:52:05 +00:00
|
|
|
|
# Relationships
|
2019-11-14 08:48:30 +00:00
|
|
|
|
files = db.relationship('CorpusFile', backref='corpus', lazy='dynamic',
|
2019-10-16 14:52:05 +00:00
|
|
|
|
cascade='save-update, merge, delete')
|
2019-08-06 10:06:41 +00:00
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
|
"""
|
|
|
|
|
String representation of the corpus. For human readability.
|
|
|
|
|
"""
|
|
|
|
|
return '<Corpus %r>' % self.title
|
|
|
|
|
|
2019-08-16 12:53:59 +00:00
|
|
|
|
def to_dict(self):
|
2019-08-16 07:49:27 +00:00
|
|
|
|
return {'id': self.id,
|
2019-08-23 13:05:01 +00:00
|
|
|
|
'creation_date': self.creation_date.timestamp(),
|
2019-08-16 07:49:27 +00:00
|
|
|
|
'description': self.description,
|
2019-11-05 14:35:51 +00:00
|
|
|
|
'status': self.status,
|
2019-08-16 07:49:27 +00:00
|
|
|
|
'title': self.title,
|
|
|
|
|
'user_id': self.user_id}
|
2019-08-06 10:06:41 +00:00
|
|
|
|
|
2019-10-30 07:28:52 +00:00
|
|
|
|
def delete(self):
|
|
|
|
|
for corpus_file in self.files:
|
|
|
|
|
corpus_file.delete()
|
2019-12-02 10:34:28 +00:00
|
|
|
|
path = os.path.join(current_app.config['NOPAQUE_STORAGE'],
|
2019-11-14 08:48:30 +00:00
|
|
|
|
str(self.user_id), 'corpora', str(self.id))
|
2019-11-18 14:55:19 +00:00
|
|
|
|
try:
|
|
|
|
|
shutil.rmtree(path)
|
|
|
|
|
except Exception as e:
|
|
|
|
|
''' TODO: Proper exception handling '''
|
|
|
|
|
logger.warning(e)
|
|
|
|
|
pass
|
2019-09-24 12:04:49 +00:00
|
|
|
|
db.session.delete(self)
|
|
|
|
|
db.session.commit()
|
|
|
|
|
|
2019-11-04 14:06:54 +00:00
|
|
|
|
def prepare(self):
|
|
|
|
|
pass
|
|
|
|
|
|
2019-08-22 07:35:23 +00:00
|
|
|
|
|
2019-08-06 09:47:04 +00:00
|
|
|
|
'''
|
|
|
|
|
' Flask-Login is told to use the application’s custom anonymous user by setting
|
|
|
|
|
' its class in the login_manager.anonymous_user attribute.
|
|
|
|
|
'''
|
|
|
|
|
login_manager.anonymous_user = AnonymousUser
|
2019-07-09 13:41:16 +00:00
|
|
|
|
|
2019-07-05 12:47:35 +00:00
|
|
|
|
|
|
|
|
|
@login_manager.user_loader
|
|
|
|
|
def load_user(user_id):
|
|
|
|
|
return User.query.get(int(user_id))
|