2019-03-09 03:52:23 -08:00
|
|
|
# Copyright 2019 Red Hat, 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.
|
|
|
|
|
2021-08-18 16:45:20 +00:00
|
|
|
import logging
|
|
|
|
|
2020-01-06 13:06:04 +00:00
|
|
|
from oslo_utils import strutils
|
2019-03-09 03:52:23 -08:00
|
|
|
|
2021-08-18 16:45:20 +00:00
|
|
|
from manilaclient.common._i18n import _
|
2020-01-06 13:06:04 +00:00
|
|
|
from manilaclient.common import constants
|
2019-03-09 03:52:23 -08:00
|
|
|
from manilaclient import exceptions
|
|
|
|
|
2021-08-18 16:45:20 +00:00
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
2019-03-09 03:52:23 -08:00
|
|
|
|
|
|
|
def extract_key_value_options(pairs):
|
|
|
|
result_dict = {}
|
|
|
|
duplicate_options = []
|
|
|
|
pairs = pairs or {}
|
|
|
|
|
|
|
|
for attr, value in pairs.items():
|
|
|
|
if attr not in result_dict:
|
|
|
|
result_dict[attr] = value
|
|
|
|
else:
|
|
|
|
duplicate_options.append(attr)
|
|
|
|
|
|
|
|
if pairs and len(duplicate_options) > 0:
|
|
|
|
duplicate_str = ', '.join(duplicate_options)
|
|
|
|
msg = "Following options were duplicated: %s" % duplicate_str
|
|
|
|
raise exceptions.CommandError(msg)
|
|
|
|
|
|
|
|
return result_dict
|
2020-01-16 17:06:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
def format_properties(properties):
|
|
|
|
formatted_data = []
|
2020-01-06 13:06:04 +00:00
|
|
|
|
2020-01-16 17:06:06 +00:00
|
|
|
for item in properties:
|
|
|
|
formatted_data.append("%s : %s" % (item, properties[item]))
|
|
|
|
return "\n".join(formatted_data)
|
|
|
|
|
|
|
|
|
|
|
|
def extract_properties(properties):
|
|
|
|
result_dict = {}
|
|
|
|
for item in properties:
|
|
|
|
try:
|
|
|
|
(key, value) = item.split('=', 1)
|
|
|
|
if key in result_dict:
|
|
|
|
raise exceptions.CommandError(
|
|
|
|
"Argument '%s' is specified twice." % key)
|
|
|
|
else:
|
|
|
|
result_dict[key] = value
|
|
|
|
except ValueError:
|
|
|
|
raise exceptions.CommandError(
|
|
|
|
"Parsing error, expected format 'key=value' for " + item
|
|
|
|
)
|
|
|
|
return result_dict
|
2020-01-06 13:06:04 +00:00
|
|
|
|
|
|
|
|
2021-08-18 16:45:20 +00:00
|
|
|
def extract_extra_specs(extra_specs, specs_to_add,
|
|
|
|
bool_specs=constants.BOOL_SPECS):
|
|
|
|
try:
|
|
|
|
for item in specs_to_add:
|
|
|
|
(key, value) = item.split('=', 1)
|
|
|
|
if key in extra_specs:
|
|
|
|
msg = ("Argument '%s' value specified twice." % key)
|
2020-01-06 13:06:04 +00:00
|
|
|
raise exceptions.CommandError(msg)
|
2021-08-18 16:45:20 +00:00
|
|
|
elif key in bool_specs:
|
|
|
|
if strutils.is_valid_boolstr(value):
|
|
|
|
extra_specs[key] = value.capitalize()
|
|
|
|
else:
|
|
|
|
msg = (
|
|
|
|
"Argument '%s' is of boolean "
|
|
|
|
"type and has invalid value: %s"
|
|
|
|
% (key, str(value)))
|
|
|
|
raise exceptions.CommandError(msg)
|
|
|
|
else:
|
|
|
|
extra_specs[key] = value
|
|
|
|
except ValueError:
|
|
|
|
msg = LOG.error(_(
|
|
|
|
"Wrong format: specs should be key=value pairs."))
|
|
|
|
raise exceptions.CommandError(msg)
|
2020-01-06 13:06:04 +00:00
|
|
|
return extra_specs
|
2020-11-29 09:33:32 +00:00
|
|
|
|
|
|
|
|
2021-08-18 16:45:20 +00:00
|
|
|
def extract_group_specs(extra_specs, specs_to_add):
|
|
|
|
return extract_extra_specs(extra_specs,
|
|
|
|
specs_to_add, constants.GROUP_BOOL_SPECS)
|
|
|
|
|
|
|
|
|
2020-11-29 09:33:32 +00:00
|
|
|
def format_column_headers(columns):
|
|
|
|
column_headers = []
|
|
|
|
for column in columns:
|
|
|
|
column_headers.append(
|
|
|
|
column.replace('_', ' ').title().replace('Id', 'ID'))
|
|
|
|
return column_headers
|
2021-08-18 16:45:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
def format_share_group_type(share_group_type, formatter='table'):
|
|
|
|
printable_share_group_type = share_group_type._info
|
|
|
|
|
|
|
|
is_public = printable_share_group_type.pop('is_public')
|
|
|
|
|
|
|
|
printable_share_group_type['visibility'] = (
|
|
|
|
'public' if is_public else 'private')
|
|
|
|
|
|
|
|
if formatter == 'table':
|
|
|
|
printable_share_group_type['group_specs'] = (
|
|
|
|
format_properties(share_group_type.group_specs))
|
|
|
|
printable_share_group_type['share_types'] = (
|
|
|
|
"\n".join(printable_share_group_type['share_types'])
|
|
|
|
)
|
|
|
|
|
|
|
|
return printable_share_group_type
|