df7ba412ea
Changed naming of Ironic api files from horizon plugin defaults to meaningful names for the Ironic-UI. Code has also been amended where necessary to account for changes to file names. Change-Id: Ibfb60e8705d2d599bb9c15fa5aeb44c3b2e90394
125 lines
3.3 KiB
Python
Executable File
125 lines
3.3 KiB
Python
Executable File
#
|
|
# Copyright 2015, 2016 Hewlett Packard Enterprise Development Company LP
|
|
# Copyright 2016 Cray Inc.
|
|
#
|
|
# 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 django.views import generic
|
|
|
|
from ironic_ui.api import ironic
|
|
|
|
from openstack_dashboard.api.rest import urls
|
|
|
|
from openstack_dashboard.api.rest import utils as rest_utils
|
|
|
|
|
|
@urls.register
|
|
class Nodes(generic.View):
|
|
|
|
url_regex = r'ironic/nodes/$'
|
|
|
|
@rest_utils.ajax()
|
|
def get(self, request):
|
|
"""Get the list of nodes.
|
|
|
|
:param request: HTTP request.
|
|
:return: nodes.
|
|
"""
|
|
items = ironic.node_list(request)
|
|
return {
|
|
'items': [i.to_dict() for i in items],
|
|
}
|
|
|
|
|
|
@urls.register
|
|
class Node(generic.View):
|
|
|
|
url_regex = r'ironic/nodes/(?P<node_id>[0-9a-f-]+)$'
|
|
|
|
@rest_utils.ajax()
|
|
def get(self, request, node_id):
|
|
"""Get information on a specific node.
|
|
|
|
:param request: HTTP request.
|
|
:param node_id: Node name or uuid.
|
|
:return: node.
|
|
"""
|
|
return ironic.node_get(request, node_id).to_dict()
|
|
|
|
|
|
@urls.register
|
|
class Ports(generic.View):
|
|
|
|
url_regex = r'ironic/ports/$'
|
|
|
|
@rest_utils.ajax()
|
|
def get(self, request):
|
|
"""Get the list of ports associated with a specified node.
|
|
|
|
:param request: HTTP request
|
|
:return: List of ports.
|
|
"""
|
|
node_id = request.GET.get('node_id')
|
|
items = ironic.node_list_ports(request, node_id)
|
|
return {
|
|
'items': [i.to_dict() for i in items],
|
|
}
|
|
|
|
|
|
@urls.register
|
|
class StatesPower(generic.View):
|
|
|
|
url_regex = r'ironic/nodes/(?P<node_id>[0-9a-f-]+)/states/power$'
|
|
|
|
@rest_utils.ajax(data_required=True)
|
|
def patch(self, request, node_id):
|
|
"""Set the power state for a specified node.
|
|
|
|
:param request: HTTP request.
|
|
:param node_id: Node name or uuid
|
|
:return: Return code
|
|
"""
|
|
state = request.DATA.get('state')
|
|
return ironic.node_set_power_state(request, node_id, state)
|
|
|
|
|
|
@urls.register
|
|
class Maintenance(generic.View):
|
|
|
|
url_regex = r'ironic/nodes/(?P<node_id>[0-9a-f-]+)/maintenance$'
|
|
|
|
@rest_utils.ajax()
|
|
def patch(self, request, node_id):
|
|
"""Put a specified node into maintetance state
|
|
|
|
:param request: HTTP request.
|
|
:param node_id: Node name or uuid
|
|
:return: Return code
|
|
"""
|
|
maint_reason = request.DATA.get('maint_reason')
|
|
return ironic.node_set_maintenance(
|
|
request,
|
|
node_id,
|
|
'on',
|
|
maint_reason=maint_reason)
|
|
|
|
@rest_utils.ajax()
|
|
def delete(self, request, node_id):
|
|
"""Take a specified node out of the maintetance state
|
|
|
|
:param request: HTTP request.
|
|
:param node_id: Node name or uuid
|
|
:return: Return code
|
|
"""
|
|
return ironic.node_set_maintenance(request, node_id, 'off')
|