1
0
mirror of https://github.com/minio/mc.git synced 2025-11-10 13:42:32 +03:00
Files
mc/cmd/event-add.go
Ashish Kumar Sinha 9a25e66e87 Add --ignore-existing/-p flag in mc event add command (#2773)
If the event is already present the server throws an error. With the --ignore-existing/ -p flag these error messages are discarded
2019-07-16 10:40:06 +01:00

142 lines
3.7 KiB
Go

/*
* MinIO Client (C) 2016 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 (
"strings"
"github.com/fatih/color"
"github.com/minio/cli"
json "github.com/minio/mc/pkg/colorjson"
"github.com/minio/mc/pkg/console"
"github.com/minio/mc/pkg/probe"
)
var (
eventAddFlags = []cli.Flag{
cli.StringFlag{
Name: "event",
Value: "put,delete,get",
Usage: "filter specific type of event. Defaults to all event",
},
cli.StringFlag{
Name: "prefix",
Usage: "filter event associated to the specified prefix",
},
cli.StringFlag{
Name: "suffix",
Usage: "filter event associated to the specified suffix",
},
cli.BoolFlag{
Name: "ignore-existing, p",
Usage: "ignore if event already exists",
},
}
)
var eventAddCmd = cli.Command{
Name: "add",
Usage: "add a new bucket notification",
Action: mainEventAdd,
Before: setGlobalsFromContext,
Flags: append(eventAddFlags, globalFlags...),
CustomHelpTemplate: `NAME:
{{.HelpName}} - {{.Usage}}
USAGE:
{{.HelpName}} TARGET ARN [FLAGS]
FLAGS:
{{range .VisibleFlags}}{{.}}
{{end}}
EXAMPLES:
1. Enable bucket notification with a specific arn
$ {{.HelpName}} myminio/mybucket arn:aws:sqs:us-west-2:444455556666:your-queue
2. Enable bucket notification with filters parameters
$ {{.HelpName}} s3/mybucket arn:aws:sqs:us-west-2:444455556666:your-queue --event put,delete,get --prefix photos/ --suffix .jpg
3. Ignore duplicate bucket notification with -p flag
$ {{.HelpName}} s3/mybucket arn:aws:sqs:us-west-2:444455556666:your-queue -p --event put,delete,get --prefix photos/ --suffix .jpg
`,
}
// checkEventAddSyntax - validate all the passed arguments
func checkEventAddSyntax(ctx *cli.Context) {
if len(ctx.Args()) != 2 {
cli.ShowCommandHelpAndExit(ctx, "add", 1) // last argument is exit code
}
}
// eventAddMessage container
type eventAddMessage struct {
ARN string `json:"arn"`
Event []string `json:"event"`
Prefix string `json:"prefix"`
Suffix string `json:"suffix"`
Status string `json:"status"`
}
// JSON jsonified update message.
func (u eventAddMessage) JSON() string {
u.Status = "success"
eventAddMessageJSONBytes, e := json.MarshalIndent(u, "", " ")
fatalIf(probe.NewError(e), "Unable to marshal into JSON.")
return string(eventAddMessageJSONBytes)
}
func (u eventAddMessage) String() string {
msg := console.Colorize("Event", "Successfully added "+u.ARN)
return msg
}
func mainEventAdd(ctx *cli.Context) error {
console.SetColor("Event", color.New(color.FgGreen, color.Bold))
checkEventAddSyntax(ctx)
args := ctx.Args()
path := args[0]
arn := args[1]
ignoreExisting := ctx.Bool("p")
event := strings.Split(ctx.String("event"), ",")
prefix := ctx.String("prefix")
suffix := ctx.String("suffix")
client, err := newClient(path)
if err != nil {
fatalIf(err.Trace(), "Cannot parse the provided url.")
}
s3Client, ok := client.(*s3Client)
if !ok {
fatalIf(errDummy().Trace(), "The provided url doesn't point to a S3 server.")
}
err = s3Client.AddNotificationConfig(arn, event, prefix, suffix, ignoreExisting)
fatalIf(err, "Cannot enable notification on the specified bucket.")
printMsg(eventAddMessage{
ARN: arn,
Event: event,
Prefix: prefix,
Suffix: suffix,
})
return nil
}