Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
nopaque
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Looking for advice? Join the
Matrix channel for GitLab users in Bielefeld
!
Show more breadcrumbs
SFB 1288 - INF
nopaque
Commits
b98e3002
Commit
b98e3002
authored
2 years ago
by
Patrick Jentsch
Browse files
Options
Downloads
Patches
Plain Diff
restructure corpus routes file and add new decorators
parent
4fb5f2f2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/contributions/routes.py
+137
-101
137 additions, 101 deletions
app/contributions/routes.py
with
137 additions
and
101 deletions
app/contributions/routes.py
+
137
−
101
View file @
b98e3002
...
...
@@ -2,20 +2,18 @@ from flask import (
abort
,
current_app
,
flash
,
jsonify
,
Markup
,
redirect
,
render_template
,
request
,
url_for
)
from
flask_login
import
login_required
,
current_user
from
threading
import
Thread
from
app
import
db
from
app.decorators
import
permission_required
from
app.models
import
(
Permission
,
SpaCyNLPPipelineModel
,
TesseractOCRPipelineModel
)
from
app.decorators
import
content_negotiation
,
permission_required
from
app.models
import
SpaCyNLPPipelineModel
,
TesseractOCRPipelineModel
from
.
import
bp
from
.forms
import
(
CreateSpaCyNLPPipelineModelForm
,
...
...
@@ -39,67 +37,31 @@ def contributions():
)
@bp.route
(
'
/tesseract-ocr-pipeline-models
'
)
def
tesseract_ocr_pipeline_models
():
return
render_template
(
'
contributions/tesseract_ocr_pipeline_models.html.j2
'
,
title
=
'
Tesseract OCR Pipeline Models
'
)
@bp.route
(
'
/tesseract-ocr-pipeline-models/<hashid:tesseract_ocr_pipeline_model_id>
'
,
methods
=
[
'
GET
'
,
'
POST
'
])
def
tesseract_ocr_pipeline_model
(
tesseract_ocr_pipeline_model_id
):
tesseract_ocr_pipeline_model
=
TesseractOCRPipelineModel
.
query
.
get_or_404
(
tesseract_ocr_pipeline_model_id
)
form
=
EditTesseractOCRPipelineModelForm
(
data
=
tesseract_ocr_pipeline_model
.
to_json_serializeable
(),
prefix
=
'
edit-tesseract-ocr-pipeline-model-form
'
)
if
form
.
validate_on_submit
():
form
.
populate_obj
(
tesseract_ocr_pipeline_model
)
if
db
.
session
.
is_modified
(
tesseract_ocr_pipeline_model
):
message
=
Markup
(
f
'
Tesseract OCR Pipeline model
"
<a href=
"
{
tesseract_ocr_pipeline_model
.
url
}
"
>
{
tesseract_ocr_pipeline_model
.
title
}
</a>
"
updated
'
)
flash
(
message
)
db
.
session
.
commit
()
return
redirect
(
url_for
(
'
.tesseract_ocr_pipeline_models
'
))
##############################################################################
# SpaCy NLP Pipeline Models #
##############################################################################
#region spacy-nlp-pipeline-models
@bp.route
(
'
/spacy-nlp-pipeline-models
'
)
def
spacy_nlp_pipeline_models
():
return
render_template
(
'
contributions/tesseract_ocr_pipeline_model.html.j2
'
,
form
=
form
,
tesseract_ocr_pipeline_model
=
tesseract_ocr_pipeline_model
,
title
=
f
'
{
tesseract_ocr_pipeline_model
.
title
}
{
tesseract_ocr_pipeline_model
.
version
}
'
)
@bp.route
(
'
/tesseract-ocr-pipeline-models/<hashid:tesseract_ocr_pipeline_model_id>
'
,
methods
=
[
'
DELETE
'
])
def
delete_tesseract_model
(
tesseract_ocr_pipeline_model_id
):
def
_delete_tesseract_ocr_pipeline_model
(
app
,
tesseract_ocr_pipeline_model_id
):
with
app
.
app_context
():
tesseract_ocr_pipeline_model
=
TesseractOCRPipelineModel
.
query
.
get
(
tesseract_ocr_pipeline_model_id
)
tesseract_ocr_pipeline_model
.
delete
()
db
.
session
.
commit
()
tesseract_ocr_pipeline_model
=
TesseractOCRPipelineModel
.
query
.
get_or_404
(
tesseract_ocr_pipeline_model_id
)
if
not
(
tesseract_ocr_pipeline_model
.
user
==
current_user
or
current_user
.
is_administrator
()):
abort
(
403
)
thread
=
Thread
(
target
=
_delete_tesseract_ocr_pipeline_model
,
args
=
(
current_app
.
_get_current_object
(),
tesseract_ocr_pipeline_model_id
)
'
contributions/spacy_nlp_pipeline_models.html.j2
'
,
title
=
'
SpaCy NLP Pipeline Models
'
)
thread
.
start
()
return
{},
202
@bp.route
(
'
/
tesseract-ocr
-pipeline-models/create
'
,
methods
=
[
'
GET
'
,
'
POST
'
])
def
create_
tesseract_ocr
_pipeline_model
():
form
=
Create
TesseractOCR
PipelineModelForm
(
prefix
=
'
create-
tesseract-ocr
-pipeline-model-form
'
)
@bp.route
(
'
/
spacy-nlp
-pipeline-models/create
'
,
methods
=
[
'
GET
'
,
'
POST
'
])
def
create_
spacy_nlp
_pipeline_model
():
form
=
Create
SpaCyNLP
PipelineModelForm
(
prefix
=
'
create-
spacy-nlp
-pipeline-model-form
'
)
if
form
.
is_submitted
():
if
not
form
.
validate
():
response
=
{
'
errors
'
:
form
.
errors
}
return
response
,
400
try
:
tesseract_ocr
_pipeline_model
=
TesseractOCR
PipelineModel
.
create
(
form
.
tesser
ac
t
_model_file
.
data
,
spacy_nlp
_pipeline_model
=
SpaCyNLP
PipelineModel
.
create
(
form
.
sp
ac
y
_model_file
.
data
,
compatible_service_versions
=
form
.
compatible_service_versions
.
data
,
description
=
form
.
description
.
data
,
pipeline_name
=
form
.
pipeline_name
.
data
,
publisher
=
form
.
publisher
.
data
,
publisher_url
=
form
.
publisher_url
.
data
,
publishing_url
=
form
.
publishing_url
.
data
,
...
...
@@ -112,35 +74,17 @@ def create_tesseract_ocr_pipeline_model():
except
OSError
:
abort
(
500
)
db
.
session
.
commit
()
tesseract_ocr
_pipeline_model_url
=
url_for
(
'
.
tesseract_ocr
_pipeline_model
'
,
tesseract_ocr
_pipeline_model_id
=
tesseract_ocr
_pipeline_model
.
id
spacy_nlp
_pipeline_model_url
=
url_for
(
'
.
spacy_nlp
_pipeline_model
'
,
spacy_nlp
_pipeline_model_id
=
spacy_nlp
_pipeline_model
.
id
)
message
=
Markup
(
f
'
Tesseract OCR
Pipeline model
"
<a href=
"
{
tesseract_ocr
_pipeline_model_url
}
"
>
{
tesseract_ocr
_pipeline_model
.
title
}
</a>
"
created
'
)
message
=
Markup
(
f
'
SpaCy NLP
Pipeline model
"
<a href=
"
{
spacy_nlp
_pipeline_model_url
}
"
>
{
spacy_nlp
_pipeline_model
.
title
}
</a>
"
created
'
)
flash
(
message
)
return
{},
201
,
{
'
Location
'
:
tesseract_ocr
_pipeline_model_url
}
return
{},
201
,
{
'
Location
'
:
spacy_nlp
_pipeline_model_url
}
return
render_template
(
'
contributions/create_
tesseract_ocr
_pipeline_model.html.j2
'
,
'
contributions/create_
spacy_nlp
_pipeline_model.html.j2
'
,
form
=
form
,
title
=
'
Create Tesseract OCR Pipeline Model
'
)
@bp.route
(
'
/tesseract-ocr-pipeline-models/<hashid:tesseract_ocr_pipeline_model_id>/toggle-public-status
'
,
methods
=
[
'
POST
'
])
@permission_required
(
Permission
.
CONTRIBUTE
)
def
toggle_tesseract_ocr_pipeline_model_public_status
(
tesseract_ocr_pipeline_model_id
):
tesseract_ocr_pipeline_model
=
TesseractOCRPipelineModel
.
query
.
get_or_404
(
tesseract_ocr_pipeline_model_id
)
if
not
(
tesseract_ocr_pipeline_model
.
user
==
current_user
or
current_user
.
is_administrator
()):
abort
(
403
)
tesseract_ocr_pipeline_model
.
is_public
=
not
tesseract_ocr_pipeline_model
.
is_public
db
.
session
.
commit
()
return
{},
201
@bp.route
(
'
/spacy-nlp-pipeline-models
'
)
def
spacy_nlp_pipeline_models
():
return
render_template
(
'
contributions/spacy_nlp_pipeline_models.html.j2
'
,
title
=
'
SpaCy NLP Pipeline Models
'
title
=
'
Create SpaCy NLP Pipeline Model
'
)
...
...
@@ -165,6 +109,7 @@ def spacy_nlp_pipeline_model(spacy_nlp_pipeline_model_id):
title
=
f
'
{
spacy_nlp_pipeline_model
.
title
}
{
spacy_nlp_pipeline_model
.
version
}
'
)
@bp.route
(
'
/spacy-nlp-pipeline-models/<hashid:spacy_nlp_pipeline_model_id>
'
,
methods
=
[
'
DELETE
'
])
def
delete_spacy_model
(
spacy_nlp_pipeline_model_id
):
def
_delete_spacy_model
(
app
,
spacy_nlp_pipeline_model_id
):
...
...
@@ -184,19 +129,54 @@ def delete_spacy_model(spacy_nlp_pipeline_model_id):
return
{},
202
@bp.route
(
'
/spacy-nlp-pipeline-models/create
'
,
methods
=
[
'
GET
'
,
'
POST
'
])
def
create_spacy_nlp_pipeline_model
():
form
=
CreateSpaCyNLPPipelineModelForm
(
prefix
=
'
create-spacy-nlp-pipeline-model-form
'
)
#region json-routes
@bp.route
(
'
/spacy-nlp-pipeline-models/<hashid:spacy_nlp_pipeline_model_id>/is_public
'
,
methods
=
[
'
PUT
'
])
@login_required
@permission_required
(
'
CONTRIBUTE
'
)
@content_negotiation
(
consumes
=
'
application/json
'
,
produces
=
'
application/json
'
)
def
update_spacy_nlp_pipeline_model_is_public
(
spacy_nlp_pipeline_model_id
):
is_public
=
request
.
json
if
not
isinstance
(
is_public
,
bool
):
response
=
jsonify
(
'
The request body must be a boolean
'
)
response
.
status_code
=
400
abort
(
response
)
spacy_nlp_pipeline_model
=
\
SpaCyNLPPipelineModel
.
query
.
get_or_404
(
spacy_nlp_pipeline_model_id
)
spacy_nlp_pipeline_model
.
is_public
=
is_public
db
.
session
.
commit
()
response
=
jsonify
(
f
'
SpaCy NLP Pipeline Model
"
{
spacy_nlp_pipeline_model
.
title
}
"'
f
'
is now
{
"
public
"
if
is_public
else
"
private
"
}
'
)
response
.
status_code
=
200
return
response
#endregion json-routes
#endregion spacy-nlp-pipeline-models
##############################################################################
# Tesseract OCR Pipeline Models #
##############################################################################
#region tesseract-ocr-pipeline-models
@bp.route
(
'
/tesseract-ocr-pipeline-models
'
)
def
tesseract_ocr_pipeline_models
():
return
render_template
(
'
contributions/tesseract_ocr_pipeline_models.html.j2
'
,
title
=
'
Tesseract OCR Pipeline Models
'
)
@bp.route
(
'
/tesseract-ocr-pipeline-models/create
'
,
methods
=
[
'
GET
'
,
'
POST
'
])
def
create_tesseract_ocr_pipeline_model
():
form
=
CreateTesseractOCRPipelineModelForm
(
prefix
=
'
create-tesseract-ocr-pipeline-model-form
'
)
if
form
.
is_submitted
():
if
not
form
.
validate
():
response
=
{
'
errors
'
:
form
.
errors
}
return
response
,
400
try
:
spacy_nlp
_pipeline_model
=
SpaCyNLP
PipelineModel
.
create
(
form
.
sp
ac
y
_model_file
.
data
,
tesseract_ocr
_pipeline_model
=
TesseractOCR
PipelineModel
.
create
(
form
.
tesser
ac
t
_model_file
.
data
,
compatible_service_versions
=
form
.
compatible_service_versions
.
data
,
description
=
form
.
description
.
data
,
pipeline_name
=
form
.
pipeline_name
.
data
,
publisher
=
form
.
publisher
.
data
,
publisher_url
=
form
.
publisher_url
.
data
,
publishing_url
=
form
.
publishing_url
.
data
,
...
...
@@ -209,25 +189,81 @@ def create_spacy_nlp_pipeline_model():
except
OSError
:
abort
(
500
)
db
.
session
.
commit
()
spacy_nlp
_pipeline_model_url
=
url_for
(
'
.
spacy_nlp
_pipeline_model
'
,
spacy_nlp
_pipeline_model_id
=
spacy_nlp
_pipeline_model
.
id
tesseract_ocr
_pipeline_model_url
=
url_for
(
'
.
tesseract_ocr
_pipeline_model
'
,
tesseract_ocr
_pipeline_model_id
=
tesseract_ocr
_pipeline_model
.
id
)
message
=
Markup
(
f
'
SpaCy NLP
Pipeline model
"
<a href=
"
{
spacy_nlp
_pipeline_model_url
}
"
>
{
spacy_nlp
_pipeline_model
.
title
}
</a>
"
created
'
)
message
=
Markup
(
f
'
Tesseract OCR
Pipeline model
"
<a href=
"
{
tesseract_ocr
_pipeline_model_url
}
"
>
{
tesseract_ocr
_pipeline_model
.
title
}
</a>
"
created
'
)
flash
(
message
)
return
{},
201
,
{
'
Location
'
:
spacy_nlp
_pipeline_model_url
}
return
{},
201
,
{
'
Location
'
:
tesseract_ocr
_pipeline_model_url
}
return
render_template
(
'
contributions/create_
spacy_nlp
_pipeline_model.html.j2
'
,
'
contributions/create_
tesseract_ocr
_pipeline_model.html.j2
'
,
form
=
form
,
title
=
'
Create
SpaCy NLP
Pipeline Model
'
title
=
'
Create
Tesseract OCR
Pipeline Model
'
)
@bp.route
(
'
/spacy-nlp-pipeline-models/<hashid:spacy_nlp_pipeline_model_id>/toggle-public-status
'
,
methods
=
[
'
POST
'
])
@permission_required
(
Permission
.
CONTRIBUTE
)
def
toggle_spacy_nlp_pipeline_model_public_status
(
spacy_nlp_pipeline_model_id
):
spacy_nlp_pipeline_model
=
SpaCyNLPPipelineModel
.
query
.
get_or_404
(
spacy_nlp_pipeline_model_id
)
if
not
(
spacy_nlp_pipeline_model
.
user
==
current_user
or
current_user
.
is_administrator
()):
@bp.route
(
'
/tesseract-ocr-pipeline-models/<hashid:tesseract_ocr_pipeline_model_id>
'
,
methods
=
[
'
GET
'
,
'
POST
'
])
def
tesseract_ocr_pipeline_model
(
tesseract_ocr_pipeline_model_id
):
tesseract_ocr_pipeline_model
=
TesseractOCRPipelineModel
.
query
.
get_or_404
(
tesseract_ocr_pipeline_model_id
)
form
=
EditTesseractOCRPipelineModelForm
(
data
=
tesseract_ocr_pipeline_model
.
to_json_serializeable
(),
prefix
=
'
edit-tesseract-ocr-pipeline-model-form
'
)
if
form
.
validate_on_submit
():
form
.
populate_obj
(
tesseract_ocr_pipeline_model
)
if
db
.
session
.
is_modified
(
tesseract_ocr_pipeline_model
):
message
=
Markup
(
f
'
Tesseract OCR Pipeline model
"
<a href=
"
{
tesseract_ocr_pipeline_model
.
url
}
"
>
{
tesseract_ocr_pipeline_model
.
title
}
</a>
"
updated
'
)
flash
(
message
)
db
.
session
.
commit
()
return
redirect
(
url_for
(
'
.tesseract_ocr_pipeline_models
'
))
return
render_template
(
'
contributions/tesseract_ocr_pipeline_model.html.j2
'
,
form
=
form
,
tesseract_ocr_pipeline_model
=
tesseract_ocr_pipeline_model
,
title
=
f
'
{
tesseract_ocr_pipeline_model
.
title
}
{
tesseract_ocr_pipeline_model
.
version
}
'
)
@bp.route
(
'
/tesseract-ocr-pipeline-models/<hashid:tesseract_ocr_pipeline_model_id>
'
,
methods
=
[
'
DELETE
'
])
def
delete_tesseract_model
(
tesseract_ocr_pipeline_model_id
):
def
_delete_tesseract_ocr_pipeline_model
(
app
,
tesseract_ocr_pipeline_model_id
):
with
app
.
app_context
():
tesseract_ocr_pipeline_model
=
TesseractOCRPipelineModel
.
query
.
get
(
tesseract_ocr_pipeline_model_id
)
tesseract_ocr_pipeline_model
.
delete
()
db
.
session
.
commit
()
tesseract_ocr_pipeline_model
=
TesseractOCRPipelineModel
.
query
.
get_or_404
(
tesseract_ocr_pipeline_model_id
)
if
not
(
tesseract_ocr_pipeline_model
.
user
==
current_user
or
current_user
.
is_administrator
()):
abort
(
403
)
spacy_nlp_pipeline_model
.
is_public
=
not
spacy_nlp_pipeline_model
.
is_public
thread
=
Thread
(
target
=
_delete_tesseract_ocr_pipeline_model
,
args
=
(
current_app
.
_get_current_object
(),
tesseract_ocr_pipeline_model_id
)
)
thread
.
start
()
return
{},
202
#region json-routes
@bp.route
(
'
/tesseract-ocr-pipeline-models/<hashid:tesseract_ocr_pipeline_model_id>/is_public
'
,
methods
=
[
'
PUT
'
])
@login_required
@permission_required
(
'
CONTRIBUTE
'
)
@content_negotiation
(
consumes
=
'
application/json
'
,
produces
=
'
application/json
'
)
def
update_tesseract_ocr_pipeline_model_is_public
(
tesseract_ocr_pipeline_model_id
):
is_public
=
request
.
json
if
not
isinstance
(
is_public
,
bool
):
response
=
jsonify
(
'
The request body must be a boolean
'
)
response
.
status_code
=
400
abort
(
response
)
tesseract_ocr_pipeline_model
=
\
TesseractOCRPipelineModel
.
query
.
get_or_404
(
tesseract_ocr_pipeline_model_id
)
tesseract_ocr_pipeline_model
.
is_public
=
is_public
db
.
session
.
commit
()
return
{},
201
response
=
jsonify
(
f
'
Tesseract OCR Pipeline Model
"
{
tesseract_ocr_pipeline_model
.
title
}
"'
f
'
is now
{
"
public
"
if
is_public
else
"
private
"
}
'
)
response
.
status_code
=
200
return
response
#endregion json-routes
#endregion tesseract-ocr-pipeline-models
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment