You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/cmd/commands/policiescmd/storage_funcs.go

150 lines
4.8 KiB

// Copyright IBM Corp. 2020, 2025
// SPDX-License-Identifier: BUSL-1.1
package policiescmd
import (
"fmt"
"strconv"
"github.com/hashicorp/boundary/api/policies"
"github.com/hashicorp/boundary/internal/cmd/base"
)
func init() {
extraStorageActionsFlagsMapFunc = extraStorageActionsFlagsMapFuncImpl
extraStorageFlagsFunc = extraStorageFlagsFuncImpl
extraStorageFlagsHandlingFunc = extraStorageFlagsHandlingFuncImpl
}
type extraStorageCmdVars struct {
flagRetainForDays string
flagRetainForOverridable string
flagDeleteAfterDays string
flagDeleteAfterOverridable string
flagRetainFor map[string]string
flagDeleteAfter map[string]string
}
func (c *StorageCommand) extraStorageHelpFunc(_ map[string]func() string) string {
var helpStr string
switch c.Func {
case "create":
helpStr = base.WrapForHelpText([]string{
"Usage: boundary policies create storage [options] [args]",
"",
" Create a storage-type policy. Example:",
"",
` $ boundary policies create storage -name prod -description "Prod Storage Policy" -retain-for-days 800 -retain-for-overridable false -delete-after-days 900 -delete-after-overridable false`,
"",
"",
})
case "update":
helpStr = base.WrapForHelpText([]string{
"Usage: boundary policies update storage [options] [args]",
"",
" Update a storage-type policy given its id. Example:",
"",
` $ boundary policies update storage -id pst_1234567890 -name dev -description "Dev Storage Policy" -retain-for-days 10 -retain-for-overridable null -delete-after-days 20 -delete-after-overridable true`,
"",
"",
})
}
return helpStr + c.Flags().Help()
}
func extraStorageActionsFlagsMapFuncImpl() map[string][]string {
return map[string][]string{
"create": {"retain-for-days", "retain-for-overridable", "delete-after-days", "delete-after-overridable"},
"update": {"retain-for-days", "retain-for-overridable", "delete-after-days", "delete-after-overridable"},
}
}
func extraStorageFlagsFuncImpl(c *StorageCommand, set *base.FlagSets, _ *base.FlagSet) {
fs := set.NewFlagSet("Storage Policy Options")
for _, name := range flagsStorageMap[c.Func] {
switch name {
case "retain-for-days":
fs.StringVar(&base.StringVar{
Name: "retain-for-days",
Target: &c.flagRetainForDays,
Usage: "Number of days a session recording should be retained for.",
})
case "retain-for-overridable":
fs.StringVar(&base.StringVar{
Name: "retain-for-overridable",
Target: &c.flagRetainForOverridable,
Usage: "Allow/Disallow this policy's retention period to be overridden by downstream storage policies (true or false).",
})
case "delete-after-days":
fs.StringVar(&base.StringVar{
Name: "delete-after-days",
Target: &c.flagDeleteAfterDays,
Usage: "Number of days after which a session recording will be deleted.",
})
case "delete-after-overridable":
fs.StringVar(&base.StringVar{
Name: "delete-after-overridable",
Target: &c.flagDeleteAfterOverridable,
Usage: "Allow/Disallow this policy's deletion period to be overridden by downstream Policies (true or false)",
})
}
}
}
func extraStorageFlagsHandlingFuncImpl(c *StorageCommand, _ *base.FlagSets, opts *[]policies.Option) bool {
switch c.flagRetainForDays {
case "":
case "null":
*opts = append(*opts, policies.DefaultStoragePolicyRetainForDays())
default:
days, err := strconv.ParseInt(c.flagRetainForDays, 10, 32)
if err != nil {
c.UI.Error(fmt.Sprintf("Error parsing %q: %s", c.flagRetainForDays, err))
return false
}
*opts = append(*opts, policies.WithStoragePolicyRetainForDays(int32(days)))
}
switch c.flagRetainForOverridable {
case "":
case "null":
*opts = append(*opts, policies.DefaultStoragePolicyRetainForOverridable())
default:
overridable, err := strconv.ParseBool(c.flagRetainForOverridable)
if err != nil {
c.UI.Error(fmt.Sprintf("Error parsing %q: %s", c.flagRetainForOverridable, err))
return false
}
*opts = append(*opts, policies.WithStoragePolicyRetainForOverridable(overridable))
}
switch c.flagDeleteAfterDays {
case "":
case "null":
*opts = append(*opts, policies.DefaultStoragePolicyDeleteAfterDays())
default:
days, err := strconv.ParseInt(c.flagDeleteAfterDays, 10, 32)
if err != nil {
c.UI.Error(fmt.Sprintf("Error parsing %q: %s", c.flagDeleteAfterDays, err))
return false
}
*opts = append(*opts, policies.WithStoragePolicyDeleteAfterDays(int32(days)))
}
switch c.flagDeleteAfterOverridable {
case "":
case "null":
*opts = append(*opts, policies.DefaultStoragePolicyDeleteAfterOverridable())
default:
overridable, err := strconv.ParseBool(c.flagDeleteAfterOverridable)
if err != nil {
c.UI.Error(fmt.Sprintf("Error parsing %q: %s", c.flagDeleteAfterOverridable, err))
return false
}
*opts = append(*opts, policies.WithStoragePolicyDeleteAfterOverridable(overridable))
}
return true
}