// Copyright (c) 2015-2022 MinIO, Inc. // // This file is part of MinIO Object Storage stack // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . package cmd import ( "fmt" "runtime" "github.com/minio/cli" ) func checkCopySyntax(cliCtx *cli.Context) { if len(cliCtx.Args()) < 2 { showCommandHelpAndExit(cliCtx, 1) // last argument is exit code. } parseChecksum(cliCtx) // extract URLs. URLs := cliCtx.Args() if len(URLs) < 2 { fatalIf(errDummy().Trace(cliCtx.Args()...), "Unable to parse source and target arguments.") } srcURLs := URLs[:len(URLs)-1] tgtURL := URLs[len(URLs)-1] isZip := cliCtx.Bool("zip") versionID := cliCtx.String("version-id") if versionID != "" && len(srcURLs) > 1 { fatalIf(errDummy().Trace(cliCtx.Args()...), "Unable to pass --version flag with multiple copy sources arguments.") } if isZip && cliCtx.String("rewind") != "" { fatalIf(errDummy().Trace(cliCtx.Args()...), "--zip and --rewind cannot be used together") } // Check if bucket name is passed for URL type arguments. url := newClientURL(tgtURL) if url.Host != "" { if url.Path == string(url.Separator) { fatalIf(errInvalidArgument().Trace(), fmt.Sprintf("Target `%s` does not contain bucket name.", tgtURL)) } } if cliCtx.String(rdFlag) != "" && cliCtx.String(rmFlag) == "" { fatalIf(errInvalidArgument().Trace(), fmt.Sprintf("Both object retention flags `--%s` and `--%s` are required.\n", rdFlag, rmFlag)) } if cliCtx.String(rdFlag) == "" && cliCtx.String(rmFlag) != "" { fatalIf(errInvalidArgument().Trace(), fmt.Sprintf("Both object retention flags `--%s` and `--%s` are required.\n", rdFlag, rmFlag)) } // Preserve functionality not supported for windows if cliCtx.Bool("preserve") && runtime.GOOS == "windows" { fatalIf(errInvalidArgument().Trace(), "Permissions are not preserved on windows platform.") } }