mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
63 lines
2.0 KiB
Python
63 lines
2.0 KiB
Python
class QueryResult(FileMixin, HashidMixin, db.Model):
|
|
__tablename__ = 'query_results'
|
|
# Primary key
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
# Foreign keys
|
|
user_id = db.Column(db.Integer, db.ForeignKey('users.id'))
|
|
# Fields
|
|
description = db.Column(db.String(255))
|
|
query_metadata = db.Column(db.JSON())
|
|
title = db.Column(db.String(32))
|
|
# Backrefs: user: User
|
|
|
|
def __repr__(self):
|
|
'''
|
|
String representation of the QueryResult. For human readability.
|
|
'''
|
|
return f'<QueryResult {self.title}>'
|
|
|
|
@property
|
|
def download_url(self):
|
|
return url_for(
|
|
'corpora.download_query_result', query_result_id=self.id)
|
|
|
|
@property
|
|
def jsonpatch_path(self):
|
|
return f'{self.user.jsonpatch_path}/query_results/{self.hashid}'
|
|
|
|
@property
|
|
def path(self):
|
|
return os.path.join(
|
|
self.user.path, 'query_results', str(self.id), self.filename)
|
|
|
|
@property
|
|
def url(self):
|
|
return url_for('corpora.query_result', query_result_id=self.id)
|
|
|
|
@property
|
|
def user_hashid(self):
|
|
return self.user.hashid
|
|
|
|
def delete(self):
|
|
shutil.rmtree(self.path, ignore_errors=True)
|
|
db.session.delete(self)
|
|
|
|
def to_dict(self, backrefs=False, relationships=False):
|
|
dict_query_result = {
|
|
'id': self.hashid,
|
|
'user_id': self.user.hashid,
|
|
'download_url': self.download_url,
|
|
'url': self.url,
|
|
'corpus_title': self.query_metadata['corpus_name'],
|
|
'description': self.description,
|
|
'filename': self.filename,
|
|
'query': self.query_metadata['query'],
|
|
'query_metadata': self.query_metadata,
|
|
'title': self.title,
|
|
**self.file_mixin_to_dict(
|
|
backrefs=backrefs, relationships=relationships)
|
|
}
|
|
if backrefs:
|
|
dict_query_result['user'] = self.user.to_dict(
|
|
backrefs=True, relationships=False)
|