/* * MinIO Client (C) 2019 MinIO, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package cmd import ( "fmt" "github.com/fatih/color" "github.com/minio/cli" "github.com/minio/mc/pkg/console" "github.com/minio/mc/pkg/probe" ) var adminPolicyInfoCmd = cli.Command{ Name: "info", Usage: "show info on a policy", Action: mainAdminPolicyInfo, Before: setGlobalsFromContext, Flags: globalFlags, CustomHelpTemplate: `NAME: {{.HelpName}} - {{.Usage}} USAGE: {{.HelpName}} TARGET POLICYNAME POLICYNAME: Name of the policy on the MinIO server. FLAGS: {{range .VisibleFlags}}{{.}} {{end}} EXAMPLES: 1. Show information on a given policy. $ {{.HelpName}} myminio writeonly `, } // checkAdminPolicyInfoSyntax - validate all the passed arguments func checkAdminPolicyInfoSyntax(ctx *cli.Context) { if len(ctx.Args()) != 2 { cli.ShowCommandHelpAndExit(ctx, "info", 1) // last argument is exit code } } // mainAdminPolicyInfo is the handler for "mc admin policy info" command. func mainAdminPolicyInfo(ctx *cli.Context) error { checkAdminPolicyInfoSyntax(ctx) console.SetColor("PolicyMessage", color.New(color.FgGreen)) console.SetColor("Policy", color.New(color.FgBlue)) // Get the alias parameter from cli args := ctx.Args() aliasedURL := args.Get(0) policyName := args.Get(1) // Create a new MinIO Admin Client client, err := newAdminClient(aliasedURL) fatalIf(err, "Unable to initialize admin connection.") policies, e := client.ListCannedPolicies() fatalIf(probe.NewError(e).Trace(args...), "Cannot list policy") if len(policies[policyName]) != 0 { printMsg(userPolicyMessage{ op: "info", Policy: policyName, PolicyJSON: policies[policyName], }) } else { fatalIf(probe.NewError(fmt.Errorf("%s is not found", policyName)), "Cannot list the policy") } return nil }