2019-08-01 08:33:05 +00:00
|
|
|
from flask_wtf import FlaskForm
|
2019-10-29 16:44:24 +00:00
|
|
|
from wtforms import (FileField, StringField, SubmitField,
|
2019-10-30 13:06:23 +00:00
|
|
|
ValidationError, IntegerField, SelectField, TextAreaField)
|
2019-10-29 12:47:25 +00:00
|
|
|
from wtforms.validators import DataRequired, Length
|
2019-08-01 12:01:22 +00:00
|
|
|
|
2019-10-28 14:46:25 +00:00
|
|
|
|
|
|
|
class AddCorpusFileForm(FlaskForm):
|
2020-01-08 15:02:42 +00:00
|
|
|
address = StringField('Adress', validators=[Length(0, 255)])
|
|
|
|
author = StringField('Author', validators=[DataRequired(), Length(1, 255)])
|
|
|
|
booktitle = StringField('Booktitle', validators=[Length(0, 255)])
|
|
|
|
chapter = StringField('Chapter', validators=[Length(0, 255)])
|
|
|
|
editor = StringField('Editor', validators=[Length(0, 255)])
|
2019-10-29 12:47:25 +00:00
|
|
|
file = FileField('File', validators=[DataRequired()])
|
2020-01-08 15:02:42 +00:00
|
|
|
institution = StringField('institution', validators=[Length(0, 255)])
|
|
|
|
journal = StringField('Journal', validators=[Length(0, 255)])
|
2020-01-09 15:04:52 +00:00
|
|
|
pages = StringField('Pages', validators=[Length(0, 255)])
|
2020-01-08 15:02:42 +00:00
|
|
|
publisher = StringField('Publisher', validators=[Length(0, 255)])
|
|
|
|
publishing_year = IntegerField('Publishing year', validators=[DataRequired()])
|
|
|
|
school = StringField('School', validators=[Length(0, 255)])
|
2019-10-28 14:46:25 +00:00
|
|
|
submit = SubmitField()
|
2020-01-08 15:02:42 +00:00
|
|
|
title = StringField('Title', validators=[DataRequired(), Length(1, 255)])
|
2019-10-28 14:46:25 +00:00
|
|
|
|
2019-10-29 12:47:25 +00:00
|
|
|
def validate_file(form, field):
|
|
|
|
if not field.data.filename.lower().endswith('.vrt'):
|
|
|
|
raise ValidationError('File does not have an approved extension: '
|
|
|
|
'.vrt')
|
|
|
|
|
|
|
|
|
2019-10-31 09:25:48 +00:00
|
|
|
class AddCorpusForm(FlaskForm):
|
2019-10-29 12:47:25 +00:00
|
|
|
description = StringField('Description',
|
|
|
|
validators=[DataRequired(), Length(1, 64)])
|
2019-10-30 13:29:17 +00:00
|
|
|
submit = SubmitField()
|
2019-10-29 12:47:25 +00:00
|
|
|
title = StringField('Title', validators=[DataRequired(), Length(1, 32)])
|
2019-10-28 08:16:34 +00:00
|
|
|
|
|
|
|
|
2020-01-09 15:04:52 +00:00
|
|
|
class EditCorpusFileForm(AddCorpusFileForm):
|
|
|
|
pass
|
2019-10-30 12:12:31 +00:00
|
|
|
|
|
|
|
|
2019-10-28 08:16:34 +00:00
|
|
|
class QueryForm(FlaskForm):
|
2019-10-30 13:06:23 +00:00
|
|
|
query = TextAreaField('CQP Query', validators=[DataRequired(),
|
2019-11-12 13:02:01 +00:00
|
|
|
(Length(1, 1024))])
|
2019-10-29 16:42:32 +00:00
|
|
|
hits_per_page = SelectField('Hits per page',
|
|
|
|
choices=[('', 'Nr. of hits per page'),
|
|
|
|
('10', '10'),
|
|
|
|
('20', '20'),
|
|
|
|
('30', '30'),
|
|
|
|
('40', '40'),
|
2019-11-19 14:21:42 +00:00
|
|
|
('50', '50'),
|
|
|
|
('60', '60'),
|
|
|
|
('70', '70'),
|
|
|
|
('80', '80'),
|
|
|
|
('90', '90'),
|
|
|
|
('100', '100')],
|
2019-10-30 13:06:23 +00:00
|
|
|
validators=[DataRequired()])
|
2019-10-29 16:42:32 +00:00
|
|
|
context = SelectField('Context',
|
|
|
|
choices=[('', 'Words of context around hit'),
|
|
|
|
('5', '5'),
|
|
|
|
('10', '10'),
|
|
|
|
('15', '15'),
|
|
|
|
('20', '20'),
|
|
|
|
('25', '25')],
|
2019-10-30 13:06:23 +00:00
|
|
|
validators=[DataRequired()])
|
2019-10-28 08:16:34 +00:00
|
|
|
submit = SubmitField('Start Query')
|
2019-10-29 16:42:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
class QueryDownloadForm(FlaskForm):
|
2019-10-30 13:06:23 +00:00
|
|
|
file_type = SelectField('File type',
|
|
|
|
choices=[('', 'Choose file type'),
|
|
|
|
('csv', 'csv'),
|
|
|
|
('json', 'json'),
|
|
|
|
('excel', 'excel')],
|
|
|
|
validators=[DataRequired()])
|