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
8a69d636
Commit
8a69d636
authored
3 years ago
by
Patrick Jentsch
Browse files
Options
Downloads
Patches
Plain Diff
Add more examples
parent
523faaea
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/api/jobs.py
+32
-2
32 additions, 2 deletions
app/api/jobs.py
app/api/tokens.py
+3
-3
3 additions, 3 deletions
app/api/tokens.py
with
35 additions
and
5 deletions
app/api/jobs.py
+
32
−
2
View file @
8a69d636
from
flask_restx
import
Namespace
,
Resource
from
flask_restx
import
Namespace
,
Resource
from
.auth
import
token_auth
from
.auth
import
token_auth
from
..jobs
import
tasks
from
..models
import
Job
from
..models
import
Job
...
@@ -7,12 +8,41 @@ ns = Namespace('jobs', description='Job operations')
...
@@ -7,12 +8,41 @@ ns = Namespace('jobs', description='Job operations')
@ns.route
(
'
/
'
)
@ns.route
(
'
/
'
)
class
JobList
(
Resource
):
class
API_Jobs
(
Resource
):
'''
Shows a list of all jobs
,
and lets you POST to add new job
'''
'''
Shows a list of all jobs and lets you POST to add new job
'''
@ns.doc
(
security
=
'
apiKey
'
)
@ns.doc
(
security
=
'
apiKey
'
)
@token_auth.login_required
@token_auth.login_required
def
get
(
self
):
def
get
(
self
):
'''
List all jobs
'''
'''
List all jobs
'''
# TODO: Implement the correct get_jobs functionality
jobs
=
Job
.
query
.
all
()
jobs
=
Job
.
query
.
all
()
return
[
job
.
to_dict
(
include_relationships
=
False
)
for
job
in
jobs
]
return
[
job
.
to_dict
(
include_relationships
=
False
)
for
job
in
jobs
]
@ns.doc
(
security
=
'
apiKey
'
)
@token_auth.login_required
def
post
(
self
):
'''
Create a new job
'''
# TODO: Implement this
pass
@ns.route
(
'
/<int:id>
'
)
class
API_Job
(
Resource
):
'''
Show a single job and lets you delete it
'''
@ns.doc
(
security
=
'
apiKey
'
)
@token_auth.login_required
def
get
(
self
,
id
):
'''
Get a job by id
'''
job
=
Job
.
query
.
get_or_404
(
id
)
return
job
.
to_dict
(
include_relationships
=
False
)
@ns.doc
(
security
=
'
apiKey
'
)
@token_auth.login_required
def
delete
(
self
,
id
):
'''
Delete a job by id
'''
job
=
Job
.
query
.
get_or_404
(
id
)
# We use this imported task because it will run in the background
tasks
.
delete_job
(
job
.
id
)
return
''
,
204
This diff is collapsed.
Click to expand it.
app/api/tokens.py
+
3
−
3
View file @
8a69d636
...
@@ -7,13 +7,13 @@ ns = Namespace('tokens', description='Token operations')
...
@@ -7,13 +7,13 @@ ns = Namespace('tokens', description='Token operations')
@ns.route
(
'
/
'
)
@ns.route
(
'
/
'
)
class
Token
(
Resource
):
class
API_
Token
s
(
Resource
):
'''
Get or revoke a user authentication token
'''
'''
Get or revoke a user authentication token
'''
@ns.doc
(
security
=
'
basicAuth
'
)
@ns.doc
(
security
=
'
basicAuth
'
)
@basic_auth.login_required
@basic_auth.login_required
def
post
(
self
):
def
post
(
self
):
'''
Get user token
'''
'''
Get
a
user token
'''
token
=
basic_auth
.
current_user
().
get_token
()
token
=
basic_auth
.
current_user
().
get_token
()
db
.
session
.
commit
()
db
.
session
.
commit
()
return
{
'
token
'
:
'
Bearer
'
+
token
}
return
{
'
token
'
:
'
Bearer
'
+
token
}
...
@@ -21,7 +21,7 @@ class Token(Resource):
...
@@ -21,7 +21,7 @@ class Token(Resource):
@ns.doc
(
security
=
'
apiKey
'
)
@ns.doc
(
security
=
'
apiKey
'
)
@token_auth.login_required
@token_auth.login_required
def
delete
(
self
):
def
delete
(
self
):
'''
Revoke user token
'''
'''
Revoke
a
user token
'''
token_auth
.
current_user
().
revoke_token
()
token_auth
.
current_user
().
revoke_token
()
db
.
session
.
commit
()
db
.
session
.
commit
()
return
''
,
204
return
''
,
204
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