1/*
2Copyright (c) 2016 VMware, Inc. All Rights Reserved.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8    http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17package cert
18
19import (
20	"context"
21	"flag"
22
23	"github.com/vmware/govmomi/govc/cli"
24	"github.com/vmware/govmomi/govc/flags"
25)
26
27type info struct {
28	*flags.HostSystemFlag
29	*flags.OutputFlag
30}
31
32func init() {
33	cli.Register("host.cert.info", &info{})
34}
35
36func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
37	cmd.HostSystemFlag, ctx = flags.NewHostSystemFlag(ctx)
38	cmd.HostSystemFlag.Register(ctx, f)
39
40	cmd.OutputFlag, ctx = flags.NewOutputFlag(ctx)
41	cmd.OutputFlag.Register(ctx, f)
42}
43
44func (cmd *info) Description() string {
45	return `Display SSL certificate info for HOST.`
46}
47
48func (cmd *info) Process(ctx context.Context) error {
49	if err := cmd.HostSystemFlag.Process(ctx); err != nil {
50		return err
51	}
52	if err := cmd.OutputFlag.Process(ctx); err != nil {
53		return err
54	}
55	return nil
56}
57
58func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
59	host, err := cmd.HostSystem()
60	if err != nil {
61		return err
62	}
63
64	m, err := host.ConfigManager().CertificateManager(ctx)
65	if err != nil {
66		return err
67	}
68
69	info, err := m.CertificateInfo(ctx)
70	if err != nil {
71		return err
72	}
73
74	return cmd.WriteResult(info)
75}
76