-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into api-update
- Loading branch information
Showing
18 changed files
with
558 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Copyright 2020 The SODA Authors. | ||
# | ||
# 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. | ||
|
||
from delfin import db | ||
from delfin.api import api_utils | ||
from delfin.api.common import wsgi | ||
from delfin.api.views import controllers as controller_view | ||
|
||
|
||
class ControllerController(wsgi.Controller): | ||
|
||
def __init__(self): | ||
super(ControllerController, self).__init__() | ||
self.search_options = ['name', 'status', 'id', 'storage_id', | ||
'native_controller_id'] | ||
|
||
def _get_controllers_search_options(self): | ||
"""Return controllers search options allowed .""" | ||
return self.search_options | ||
|
||
def index(self, req): | ||
ctxt = req.environ['delfin.context'] | ||
query_params = {} | ||
query_params.update(req.GET) | ||
# update options other than filters | ||
sort_keys, sort_dirs = api_utils.get_sort_params(query_params) | ||
marker, limit, offset = api_utils.get_pagination_params(query_params) | ||
# strip out options except supported search options | ||
api_utils.remove_invalid_options( | ||
ctxt, query_params, self._get_controllers_search_options()) | ||
|
||
controllers = db.controller_get_all(ctxt, marker, limit, sort_keys, | ||
sort_dirs, query_params, offset) | ||
return controller_view.build_controllers(controllers) | ||
|
||
def show(self, req, id): | ||
ctxt = req.environ['delfin.context'] | ||
controller = db.controller_get(ctxt, id) | ||
return controller_view.build_controller(controller) | ||
|
||
|
||
def create_resource(): | ||
return wsgi.Resource(ControllerController()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 2020 The SODA Authors. | ||
# | ||
# 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 copy | ||
|
||
|
||
def build_controllers(controllers): | ||
# Build list of controllers | ||
views = [build_controller(controller) | ||
for controller in controllers] | ||
return dict(controllers=views) | ||
|
||
|
||
def build_controller(controller): | ||
view = copy.deepcopy(controller) | ||
return dict(view) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.