Add form and service

This commit is contained in:
Stephan Porada
2020-01-07 13:03:42 +01:00
parent 65b00e47ed
commit 93891a34c9
2 changed files with 18 additions and 2 deletions

View File

@ -65,3 +65,16 @@ class AddOCRJobForm(FlaskForm):
'File does not have an approved extension: '
'.pdf | .tif | .tiff'
)
class AddMergeImagesJobForm(FlaskForm):
files = MultipleFileField('Files', validators=[DataRequired()])
def validate_files(form, filed):
for file in field.data:
if not file.filename.lower().endswith(('.jpeg', '.jpg', '.png',
'.tiff', '.tif')):
raise ValidationError(
'File does not have an approved extension: '
'.jpeg | .jpg | .png | .tiff | .tif'
)