mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
40 lines
1.6 KiB
Python
40 lines
1.6 KiB
Python
from flask_wtf.file import FileField, FileRequired
|
|
from wtforms import ValidationError
|
|
from app.services import SERVICES
|
|
from ..forms import ContributionBaseForm, UpdateContributionBaseForm
|
|
|
|
|
|
class CreateTesseractOCRPipelineModelForm(ContributionBaseForm):
|
|
tesseract_model_file = FileField(
|
|
'File',
|
|
validators=[FileRequired()]
|
|
)
|
|
|
|
def validate_tesseract_model_file(self, field):
|
|
if not field.data.filename.lower().endswith('.traineddata'):
|
|
raise ValidationError('traineddata files only!')
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
if 'prefix' not in kwargs:
|
|
kwargs['prefix'] = 'create-tesseract-ocr-pipeline-model-form'
|
|
service_manifest = SERVICES['tesseract-ocr-pipeline']
|
|
super().__init__(*args, **kwargs)
|
|
self.compatible_service_versions.choices = [('', 'Choose your option')]
|
|
self.compatible_service_versions.choices += [
|
|
(x, x) for x in service_manifest['versions'].keys()
|
|
]
|
|
self.compatible_service_versions.default = ''
|
|
|
|
|
|
class UpdateTesseractOCRPipelineModelForm(UpdateContributionBaseForm):
|
|
def __init__(self, *args, **kwargs):
|
|
if 'prefix' not in kwargs:
|
|
kwargs['prefix'] = 'edit-tesseract-ocr-pipeline-model-form'
|
|
service_manifest = SERVICES['tesseract-ocr-pipeline']
|
|
super().__init__(*args, **kwargs)
|
|
self.compatible_service_versions.choices = [('', 'Choose your option')]
|
|
self.compatible_service_versions.choices += [
|
|
(x, x) for x in service_manifest['versions'].keys()
|
|
]
|
|
self.compatible_service_versions.default = ''
|