2022-02-08 11:26:20 +00:00
|
|
|
from app import db
|
|
|
|
from app.decorators import background
|
|
|
|
from app.models import Corpus, CorpusFile
|
2020-04-21 16:34:21 +00:00
|
|
|
|
|
|
|
|
2020-04-23 05:56:23 +00:00
|
|
|
@background
|
2020-04-23 06:35:18 +00:00
|
|
|
def build_corpus(corpus_id, *args, **kwargs):
|
|
|
|
app = kwargs['app']
|
2020-04-23 05:56:23 +00:00
|
|
|
with app.app_context():
|
|
|
|
corpus = Corpus.query.get(corpus_id)
|
|
|
|
if corpus is None:
|
2021-12-08 13:45:05 +00:00
|
|
|
raise Exception(f'Corpus {corpus_id} not found')
|
2020-07-10 09:36:54 +00:00
|
|
|
corpus.build()
|
2020-04-23 05:56:23 +00:00
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
|
2020-04-21 16:34:21 +00:00
|
|
|
@background
|
2020-04-23 06:35:18 +00:00
|
|
|
def delete_corpus(corpus_id, *args, **kwargs):
|
2020-07-10 09:36:54 +00:00
|
|
|
with kwargs['app'].app_context():
|
2020-04-21 16:34:21 +00:00
|
|
|
corpus = Corpus.query.get(corpus_id)
|
|
|
|
if corpus is None:
|
2021-12-08 13:45:05 +00:00
|
|
|
raise Exception(f'Corpus {corpus_id} not found')
|
2020-04-21 16:34:21 +00:00
|
|
|
corpus.delete()
|
2020-07-10 09:36:54 +00:00
|
|
|
db.session.commit()
|
2020-04-21 16:34:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
@background
|
2020-04-23 06:35:18 +00:00
|
|
|
def delete_corpus_file(corpus_file_id, *args, **kwargs):
|
2020-07-10 09:36:54 +00:00
|
|
|
with kwargs['app'].app_context():
|
2020-04-21 16:34:21 +00:00
|
|
|
corpus_file = CorpusFile.query.get(corpus_file_id)
|
|
|
|
if corpus_file is None:
|
2021-12-08 13:45:05 +00:00
|
|
|
raise Exception(f'Corpus file {corpus_file_id} not found')
|
2020-07-10 09:36:54 +00:00
|
|
|
corpus_file.delete()
|
|
|
|
db.session.commit()
|