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
b0c6bb9c
Commit
b0c6bb9c
authored
5 years ago
by
Patrick Jentsch
Browse files
Options
Downloads
Patches
Plain Diff
Add checks if the user is allowed to start an analysis.
parent
19f1dea4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/corpora/events.py
+13
-6
13 additions, 6 deletions
app/corpora/events.py
with
13 additions
and
6 deletions
app/corpora/events.py
+
13
−
6
View file @
b0c6bb9c
...
...
@@ -2,19 +2,19 @@ from app import db, socketio
from
app.events
import
connected_sessions
from
app.models
import
Corpus
from
flask
import
current_app
,
request
from
flask_login
import
login_required
from
flask_login
import
current_user
,
login_required
from
.CQiWrapper.CQiWrapper
import
CQiWrapper
import
logging
'''
'
A dictionary containing lists of with corpus ids associated Socket.IO
session
'
ids (sid). {<corpus_id>: [<sid>, ...], ...}
'
A dictionary containing lists of
,
with corpus ids associated
,
Socket.IO
'
session
ids (sid). {<corpus_id>: [<sid>, ...], ...}
'''
analysis_sessions
=
{}
'''
'
A dictionary containing Socket.IO session id - CQi client pairs.
'
{<sid>: CQi
c
lient, ...}
'
{<sid>: CQi
C
lient, ...}
'''
analysis_clients
=
{}
...
...
@@ -22,7 +22,13 @@ analysis_clients = {}
@socketio.on
(
'
init_corpus_analysis
'
)
@login_required
def
init_corpus_analysis
(
corpus_id
):
'''
TODO: Check if current_user is allowed to subscribe to this
'''
corpus
=
Corpus
.
query
.
filter_by
(
id
=
corpus_id
).
first
()
if
corpus
is
None
:
socketio
.
emit
(
'
init_corpus_analysis
'
,
'
[ERROR 404]: Not Found
'
,
room
=
request
.
sid
)
if
not
(
corpus
.
creator
==
current_user
or
current_user
.
is_administrator
()):
socketio
.
emit
(
'
init_corpus_analysis
'
,
'
[ERROR 403]: Forbidden
'
,
room
=
request
.
sid
)
if
str
(
corpus_id
)
not
in
analysis_sessions
:
analysis_sessions
[
str
(
corpus_id
)]
=
[
request
.
sid
]
socketio
.
start_background_task
(
observe_corpus_analysis_connection
,
...
...
@@ -31,6 +37,7 @@ def init_corpus_analysis(corpus_id):
@socketio.on
(
'
query_event
'
)
@login_required
def
recv_query
(
message
):
logger
=
logging
.
getLogger
(
__name__
)
logger
.
warning
(
message
)
...
...
@@ -72,4 +79,4 @@ def observe_corpus_analysis_connection(app, corpus_id, session_id):
if
not
analysis_sessions
[
str
(
corpus_id
)]:
analysis_sessions
.
pop
(
str
(
corpus_id
),
None
)
corpus
.
status
=
'
stop analysis
'
db
.
session
.
commit
()
db
.
session
.
commit
()
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