github.com/vmware/govmomi@v0.37.2/govc/library/publish.go (about)

     1  /*
     2  Copyright (c) 2020 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 library
    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  	"github.com/vmware/govmomi/vapi/library"
    27  )
    28  
    29  type publish struct {
    30  	*flags.ClientFlag
    31  }
    32  
    33  func init() {
    34  	cli.Register("library.publish", &publish{})
    35  }
    36  
    37  func (cmd *publish) Register(ctx context.Context, f *flag.FlagSet) {
    38  	cmd.ClientFlag, ctx = flags.NewClientFlag(ctx)
    39  	cmd.ClientFlag.Register(ctx, f)
    40  }
    41  
    42  func (cmd *publish) Usage() string {
    43  	return "NAME|ITEM [SUBSCRIPTION-ID]..."
    44  }
    45  
    46  func (cmd *publish) Description() string {
    47  	return `Publish library NAME or ITEM to subscribers.
    48  
    49  If no subscriptions are specified, then publishes the library to all its subscribers.
    50  See 'govc library.subscriber.ls' to get a list of subscription IDs.
    51  
    52  Examples:
    53    govc library.publish /my-library
    54    govc library.publish /my-library subscription-id1 subscription-id2
    55    govc library.publish /my-library/my-item
    56    govc library.publish /my-library/my-item subscription-id1 subscription-id2`
    57  }
    58  
    59  func (cmd *publish) Run(ctx context.Context, f *flag.FlagSet) error {
    60  	c, err := cmd.RestClient()
    61  	if err != nil {
    62  		return err
    63  	}
    64  
    65  	res, err := flags.ContentLibraryResult(ctx, c, "", f.Arg(0))
    66  	if err != nil {
    67  		return err
    68  	}
    69  
    70  	m := library.NewManager(c)
    71  
    72  	ids := f.Args()[1:]
    73  
    74  	switch t := res.GetResult().(type) {
    75  	case library.Library:
    76  		return m.PublishLibrary(ctx, &t, ids)
    77  	case library.Item:
    78  		return m.PublishLibraryItem(ctx, &t, false, ids)
    79  	default:
    80  		return fmt.Errorf("%q is a %T", res.GetPath(), t)
    81  	}
    82  }