mirror of https://github.com/rancher/cli.git
49 lines
928 B
Go
49 lines
928 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/rancher/norman/types"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
func listAllFlag() cli.BoolFlag {
|
|
return cli.BoolFlag{
|
|
Name: "all,a",
|
|
Usage: "Show stop/inactive and recently removed resources",
|
|
}
|
|
}
|
|
|
|
func listSystemFlag() cli.BoolFlag {
|
|
return cli.BoolFlag{
|
|
Name: "system,s",
|
|
Usage: "Show system resources",
|
|
}
|
|
}
|
|
|
|
func baseListOpts() *types.ListOpts {
|
|
return &types.ListOpts{
|
|
Filters: map[string]interface{}{
|
|
"limit": -1,
|
|
"all": true,
|
|
},
|
|
}
|
|
}
|
|
|
|
func defaultListOpts(ctx *cli.Context) *types.ListOpts {
|
|
listOpts := baseListOpts()
|
|
if ctx != nil && !ctx.Bool("all") {
|
|
listOpts.Filters["removed_null"] = "1"
|
|
listOpts.Filters["state_ne"] = []string{
|
|
"inactive",
|
|
"stopped",
|
|
"removing",
|
|
}
|
|
delete(listOpts.Filters, "all")
|
|
}
|
|
if ctx != nil && ctx.Bool("system") {
|
|
delete(listOpts.Filters, "system")
|
|
} else {
|
|
listOpts.Filters["system"] = "false"
|
|
}
|
|
return listOpts
|
|
}
|