mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
87 lines
2.7 KiB
Python
87 lines
2.7 KiB
Python
from flask_wtf import FlaskForm
|
|
from flask_wtf.file import FileField, FileRequired
|
|
from wtforms import (
|
|
BooleanField,
|
|
StringField,
|
|
SubmitField,
|
|
TextAreaField,
|
|
ValidationError,
|
|
IntegerField
|
|
)
|
|
from wtforms.validators import InputRequired, Length
|
|
|
|
|
|
class CorpusBaseForm(FlaskForm):
|
|
description = TextAreaField(
|
|
'Description',
|
|
validators=[InputRequired(), Length(max=255)]
|
|
)
|
|
title = StringField('Title', validators=[InputRequired(), Length(max=32)])
|
|
submit = SubmitField()
|
|
|
|
|
|
class CreateCorpusForm(CorpusBaseForm):
|
|
def __init__(self, *args, **kwargs):
|
|
if 'prefix' not in kwargs:
|
|
kwargs['prefix'] = 'create-corpus-form'
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
|
class UpdateCorpusForm(CorpusBaseForm):
|
|
def __init__(self, *args, **kwargs):
|
|
if 'prefix' not in kwargs:
|
|
kwargs['prefix'] = 'update-corpus-form'
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
|
class CorpusFileBaseForm(FlaskForm):
|
|
author = StringField(
|
|
'Author',
|
|
validators=[InputRequired(), Length(max=255)]
|
|
)
|
|
publishing_year = IntegerField(
|
|
'Publishing year',
|
|
validators=[InputRequired()]
|
|
)
|
|
title = StringField(
|
|
'Title',
|
|
validators=[InputRequired(), Length(max=255)]
|
|
)
|
|
address = StringField('Adress', validators=[Length(max=255)])
|
|
booktitle = StringField('Booktitle', validators=[Length(max=255)])
|
|
chapter = StringField('Chapter', validators=[Length(max=255)])
|
|
editor = StringField('Editor', validators=[Length(max=255)])
|
|
institution = StringField('Institution', validators=[Length(max=255)])
|
|
journal = StringField('Journal', validators=[Length(max=255)])
|
|
pages = StringField('Pages', validators=[Length(max=255)])
|
|
publisher = StringField('Publisher', validators=[Length(max=255)])
|
|
school = StringField('School', validators=[Length(max=255)])
|
|
submit = SubmitField()
|
|
|
|
|
|
class CreateCorpusFileForm(CorpusFileBaseForm):
|
|
vrt = FileField('File', validators=[FileRequired()])
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
if 'prefix' not in kwargs:
|
|
kwargs['prefix'] = 'create-corpus-file-form'
|
|
super().__init__(*args, **kwargs)
|
|
|
|
def validate_vrt(self, field):
|
|
if not field.data.filename.lower().endswith('.vrt'):
|
|
raise ValidationError('VRT files only!')
|
|
|
|
|
|
class UpdateCorpusFileForm(CorpusFileBaseForm):
|
|
def __init__(self, *args, **kwargs):
|
|
if 'prefix' not in kwargs:
|
|
kwargs['prefix'] = 'update-corpus-file-form'
|
|
super().__init__(*args, **kwargs)
|
|
|
|
class ChangeCorpusSettingsForm(FlaskForm):
|
|
is_public = BooleanField('Public Corpus')
|
|
submit = SubmitField()
|
|
|
|
class ImportCorpusForm(FlaskForm):
|
|
pass
|