d00eaf0303
This PS implements the following changes: - switches freeze approach to requirements-direct.txt and requirements-frozen.txt files - adjusts code tabulation style according to yapf recommendations - replaces deprecated usage of responce.body attribute with responce.text - fixes integration tests in controlled by Makefile + tox - uplifts Helm to v3.9.4 Change-Id: I751db72eb8f670825382f11a36657112faeb169a
80 lines
2.9 KiB
Python
80 lines
2.9 KiB
Python
# Copyright 2017 AT&T Intellectual Property. All other rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import falcon
|
|
import json
|
|
|
|
from drydock_provisioner import policy
|
|
from drydock_provisioner.control.base import StatefulResource
|
|
from drydock_provisioner.objects import fields as hd_fields
|
|
|
|
import drydock_provisioner.error as errors
|
|
|
|
|
|
class ValidationResource(StatefulResource):
|
|
"""
|
|
Drydock validation endpoint
|
|
"""
|
|
|
|
def __init__(self, orchestrator=None, **kwargs):
|
|
"""Object initializer.
|
|
|
|
:param orchestrator: instance of orchestrator.Orchestrator
|
|
"""
|
|
super().__init__(**kwargs)
|
|
self.orchestrator = orchestrator
|
|
|
|
@policy.ApiEnforcer('physical_provisioner:validate_site_design')
|
|
def on_post(self, req, resp):
|
|
|
|
try:
|
|
json_data = self.req_json(req)
|
|
|
|
if json_data is None:
|
|
resp.status = falcon.HTTP_400
|
|
err_message = 'Request body must not be empty for validation.'
|
|
self.error(req.context, err_message)
|
|
return self.return_error(resp, falcon.HTTP_400, err_message)
|
|
|
|
design_ref = json_data.get('href', None)
|
|
|
|
if not design_ref:
|
|
resp.status = falcon.HTTP_400
|
|
err_message = 'The "href" key must be provided in the request body.'
|
|
self.error(req.context, err_message)
|
|
return self.return_error(resp, falcon.HTTP_400, err_message)
|
|
|
|
validation, design_data = self.orchestrator.get_effective_site(
|
|
design_ref)
|
|
|
|
if validation.status == hd_fields.ValidationResult.Success:
|
|
resp_message = validation.to_dict()
|
|
resp_message['code'] = 200
|
|
resp.status = falcon.HTTP_200
|
|
resp.text = json.dumps(resp_message)
|
|
else:
|
|
resp_message = validation.to_dict()
|
|
resp_message['code'] = 400
|
|
resp.status = falcon.HTTP_400
|
|
resp.text = json.dumps(resp_message)
|
|
|
|
except errors.InvalidFormat as e:
|
|
err_message = str(e)
|
|
self.error(req.context, err_message)
|
|
self.return_error(resp, falcon.HTTP_400, err_message)
|
|
except Exception as ex:
|
|
err_message = str(ex)
|
|
self.error(req.context, err_message)
|
|
self.return_error(resp, falcon.HTTP_500, err_message)
|