diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-08-13 23:12:16 +0300 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-08-13 23:12:16 +0300 |
| commit | f589682b0840aab0624122052eb863cf8dc3a0b9 (patch) | |
| tree | ea97449f7a83b7f911aa196976266551f834fc9d /opendc/api/v1/jobs | |
| parent | db460a0e734f9f1cf60088f63a3c05eaed255074 (diff) | |
Convert API codebase to flat model
Diffstat (limited to 'opendc/api/v1/jobs')
| -rw-r--r-- | opendc/api/v1/jobs/__init__.py | 0 | ||||
| -rw-r--r-- | opendc/api/v1/jobs/jobId/__init__.py | 0 | ||||
| -rw-r--r-- | opendc/api/v1/jobs/jobId/endpoint.py | 33 | ||||
| -rw-r--r-- | opendc/api/v1/jobs/jobId/tasks/__init__.py | 0 | ||||
| -rw-r--r-- | opendc/api/v1/jobs/jobId/tasks/endpoint.py | 36 |
5 files changed, 69 insertions, 0 deletions
diff --git a/opendc/api/v1/jobs/__init__.py b/opendc/api/v1/jobs/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/opendc/api/v1/jobs/__init__.py diff --git a/opendc/api/v1/jobs/jobId/__init__.py b/opendc/api/v1/jobs/jobId/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/opendc/api/v1/jobs/jobId/__init__.py diff --git a/opendc/api/v1/jobs/jobId/endpoint.py b/opendc/api/v1/jobs/jobId/endpoint.py new file mode 100644 index 00000000..84b8f3c4 --- /dev/null +++ b/opendc/api/v1/jobs/jobId/endpoint.py @@ -0,0 +1,33 @@ +from opendc.models.job import Job +from opendc.util import exceptions +from opendc.util.rest import Response + +def GET(request): + """Get this Job.""" + + # Make sure required parameters are there + + try: + request.check_required_parameters( + path = { + 'jobId': 'int' + } + ) + + except exceptions.ParameterError as e: + return Response(400, e.message) + + # Instantiate a Job and make sure it exists + + job = Job.from_primary_key((request.params_path['jobId'],)) + + if not job.exists(): + return Response(404, '{} not found.'.format(job)) + + # Return this Job + + return Response( + 200, + 'Successfully retrieved {}.'.format(job), + job.to_JSON() + ) diff --git a/opendc/api/v1/jobs/jobId/tasks/__init__.py b/opendc/api/v1/jobs/jobId/tasks/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/opendc/api/v1/jobs/jobId/tasks/__init__.py diff --git a/opendc/api/v1/jobs/jobId/tasks/endpoint.py b/opendc/api/v1/jobs/jobId/tasks/endpoint.py new file mode 100644 index 00000000..9b6a1cab --- /dev/null +++ b/opendc/api/v1/jobs/jobId/tasks/endpoint.py @@ -0,0 +1,36 @@ +from opendc.models.job import Job +from opendc.models.task import Task +from opendc.util import database, exceptions +from opendc.util.rest import Response + +def GET(request): + """Get this Job's Tasks.""" + + # Make sure required parameters are there + + try: + request.check_required_parameters( + path = { + 'jobId': 'int' + } + ) + + except exceptions.ParameterError as e: + return Response(400, e.message) + + # Instantiate a Job and make sure it exists + + job = Job.from_primary_key((request.params_path['jobId'],)) + + if not job.exists(): + return Response(404, '{} not found.'.format(job)) + + # Get and return the Tasks + + tasks = Task.query('job_id', request.params_path['jobId']) + + return Response( + 200, + 'Successfully retrieved Tasks for {}.'.format(job), + [x.to_JSON() for x in tasks] + ) |
