
Implementation of resource values operations moved to library. Filtration of resource definition with respect to envirionment id implemented. Implementation of resource overrides operations moved to library. All business logic finally moved from the app to the library. Change-Id: If5d14699e56485761ca6c54bd8bbf34dd21e9155
73 lines
2.6 KiB
Python
73 lines
2.6 KiB
Python
# 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 flask
|
|
import flask_restful
|
|
|
|
from tuning_box import db
|
|
from tuning_box import library
|
|
from tuning_box.library import levels_hierarchy
|
|
|
|
|
|
class ResourceOverrides(flask_restful.Resource):
|
|
|
|
@db.with_transaction
|
|
def put(self, environment_id, levels, resource_id_or_name):
|
|
environment = db.Environment.query.get_or_404(environment_id)
|
|
resdef = library.get_resource_definition(
|
|
resource_id_or_name, environment_id)
|
|
if resdef.id != resource_id_or_name:
|
|
from tuning_box.app import api
|
|
return flask.redirect(api.url_for(
|
|
ResourceOverrides,
|
|
environment_id=environment_id,
|
|
levels=levels,
|
|
resource_id_or_name=resdef.id,
|
|
), code=308)
|
|
|
|
level_value = levels_hierarchy.get_environment_level_value(
|
|
environment, levels)
|
|
esv = db.get_or_create(
|
|
db.ResourceValues,
|
|
environment=environment,
|
|
resource_definition=resdef,
|
|
level_value=level_value,
|
|
)
|
|
esv.overrides = flask.request.json
|
|
return None, 204
|
|
|
|
@db.with_transaction
|
|
def get(self, environment_id, resource_id_or_name, levels):
|
|
environment = db.Environment.query.get_or_404(environment_id)
|
|
resdef = library.get_resource_definition(
|
|
resource_id_or_name, environment_id)
|
|
if resdef.id != resource_id_or_name:
|
|
from tuning_box.app import api
|
|
url = api.url_for(
|
|
ResourceOverrides,
|
|
environment_id=environment_id,
|
|
levels=levels,
|
|
resource_id_or_name=resdef.id,
|
|
)
|
|
return flask.redirect(url, code=308)
|
|
|
|
level_value = levels_hierarchy.get_environment_level_value(
|
|
environment, levels)
|
|
res_values = db.ResourceValues.query.filter_by(
|
|
resource_definition=resdef,
|
|
environment=environment,
|
|
level_value=level_value,
|
|
).one_or_none()
|
|
if not res_values:
|
|
return {}
|
|
return res_values.overrides
|