Skip to content
Snippets Groups Projects
Commit 8a69d636 authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Add more examples

parent 523faaea
No related branches found
No related tags found
No related merge requests found
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
...@@ -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_Tokens(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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment