mirror of https://github.com/rancher/cli.git
35 lines
666 B
Go
35 lines
666 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/rancher/norman/types"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
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
|
|
}
|