github.com/vmware/govmomi@v0.37.1/govc/host/cert/csr.go (about)

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