diff options
-rw-r--r-- | api/resources/v2/environments.py | 20 | ||||
-rw-r--r-- | api/urls.py | 1 |
2 files changed, 21 insertions, 0 deletions
diff --git a/api/resources/v2/environments.py b/api/resources/v2/environments.py index 4b27c45b8..f83c0a941 100644 --- a/api/resources/v2/environments.py +++ b/api/resources/v2/environments.py @@ -49,3 +49,23 @@ class V2Environments(ApiResource): environment_handler.insert(env_init_data) return result_handler(consts.API_SUCCESS, {'uuid': env_id}) + + +class V2Environment(ApiResource): + + def get(self, environment_id): + try: + uuid.UUID(environment_id) + except ValueError: + return result_handler(consts.API_ERROR, 'invalid environment id') + + environment_handler = V2EnvironmentHandler() + try: + environment = environment_handler.get_by_uuid(environment_id) + except ValueError: + return result_handler(consts.API_ERROR, 'no such environment id') + + environment = change_obj_to_dict(environment) + container_id = environment['container_id'] + environment['container_id'] = jsonutils.loads(container_id) if container_id else {} + return result_handler(consts.API_SUCCESS, {'environment': environment}) diff --git a/api/urls.py b/api/urls.py index 0c63fb040..70d69f881 100644 --- a/api/urls.py +++ b/api/urls.py @@ -24,4 +24,5 @@ urlpatterns = [ # api v2 Url('/api/v2/yardstick/environments', 'v2_environments'), Url('/api/v2/yardstick/environments/action', 'v2_environments'), + Url('/api/v2/yardstick/environments/<environment_id>', 'v2_environment'), ] |