-
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 pull request #408 from joseph-v/port-res
Add Port resource to Delfin
- Loading branch information
Showing
18 changed files
with
620 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 ports as port_view | ||
|
||
|
||
class PortController(wsgi.Controller): | ||
|
||
def __init__(self): | ||
super(PortController, self).__init__() | ||
self.search_options = ['name', 'status', 'id', 'storage_id', 'wwn', | ||
'native_controller_id', 'native_port_id'] | ||
|
||
def _get_ports_search_options(self): | ||
"""Return ports 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_ports_search_options()) | ||
|
||
ports = db.port_get_all(ctxt, marker, limit, sort_keys, | ||
sort_dirs, query_params, offset) | ||
return port_view.build_ports(ports) | ||
|
||
def show(self, req, id): | ||
ctxt = req.environ['delfin.context'] | ||
port = db.port_get(ctxt, id) | ||
return port_view.build_port(port) | ||
|
||
|
||
def create_resource(): | ||
return wsgi.Resource(PortController()) |
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_ports(ports): | ||
# Build list of ports | ||
views = [build_port(port) | ||
for port in ports] | ||
return dict(ports=views) | ||
|
||
|
||
def build_port(port): | ||
view = copy.deepcopy(port) | ||
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
Oops, something went wrong.