65 lines
2.3 KiB
Python
65 lines
2.3 KiB
Python
# Copyright 2018 Huawei, Inc. All rights reserved.
|
|
#
|
|
# 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 argparse
|
|
import logging
|
|
|
|
from osc_lib.command import command
|
|
|
|
from tatuclient import utils
|
|
from tatuclient.v1.cli import common
|
|
from tatuclient.v1.utils import get_all
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
_columns = ['hostname', 'host_id', 'fingerprint', 'created_at', 'expires_at']
|
|
_names = ['Hostname', 'Instance ID', 'Fingerprint', 'Created', 'Expires']
|
|
|
|
|
|
class ListHostCertCommand(command.Lister):
|
|
"""List HostCerts"""
|
|
|
|
def get_parser(self, prog_name):
|
|
parser = super(ListHostCertCommand, self).get_parser(prog_name)
|
|
common.add_all_common_options(parser)
|
|
return parser
|
|
|
|
def take_action(self, parsed_args):
|
|
client = self.app.client_manager.ssh
|
|
common.set_all_common_headers(client, parsed_args)
|
|
data = get_all(client.hostcert.list)
|
|
return _names, (utils.get_item_properties(s, _columns) for s in data)
|
|
|
|
|
|
class ShowHostCertCommand(command.ShowOne):
|
|
"""Show HostCert details"""
|
|
|
|
def get_parser(self, prog_name):
|
|
parser = super(ShowHostCertCommand, self).get_parser(prog_name)
|
|
parser.add_argument('host_id', help="Instance ID")
|
|
parser.add_argument('fingerprint', help="Public Key Fingerprint")
|
|
common.add_all_common_options(parser)
|
|
return parser
|
|
|
|
def _get_data(self, parsed_args):
|
|
client = self.app.client_manager.ssh
|
|
common.set_all_common_headers(client, parsed_args)
|
|
return client.hostcert.get(parsed_args.host_id, parsed_args.fingerprint)
|
|
|
|
def take_action(self, parsed_args):
|
|
data = self._get_data(parsed_args)
|
|
return (_names + ['Certificate'],
|
|
utils.get_item_properties(data, _columns + ['cert']))
|