-
Notifications
You must be signed in to change notification settings - Fork 560
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into ldap-enable-glitch
- Loading branch information
Showing
64 changed files
with
7,604 additions
and
4,658 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
// Copyright (c) 2015-2024 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 <http://www.gnu.org/licenses/>. | ||
|
||
package cmd | ||
|
||
import ( | ||
"github.com/minio/cli" | ||
) | ||
|
||
var adminAccesskeyCreateFlags = []cli.Flag{ | ||
cli.StringFlag{ | ||
Name: "access-key", | ||
Usage: "set an access key for the account", | ||
}, | ||
cli.StringFlag{ | ||
Name: "secret-key", | ||
Usage: "set a secret key for the account", | ||
}, | ||
cli.StringFlag{ | ||
Name: "policy", | ||
Usage: "path to a JSON policy file", | ||
}, | ||
cli.StringFlag{ | ||
Name: "name", | ||
Usage: "friendly name for the account", | ||
}, | ||
cli.StringFlag{ | ||
Name: "description", | ||
Usage: "description for the account", | ||
}, | ||
cli.StringFlag{ | ||
Name: "expiry-duration", | ||
Usage: "duration before the access key expires", | ||
}, | ||
cli.StringFlag{ | ||
Name: "expiry", | ||
Usage: "expiry date for the access key", | ||
}, | ||
} | ||
|
||
var adminAccesskeyCreateCmd = cli.Command{ | ||
Name: "create", | ||
Usage: "create access key pairs for users", | ||
Action: mainAdminAccesskeyCreate, | ||
Before: setGlobalsFromContext, | ||
Flags: append(adminAccesskeyCreateFlags, globalFlags...), | ||
OnUsageError: onUsageError, | ||
CustomHelpTemplate: `NAME: | ||
{{.HelpName}} - {{.Usage}} | ||
USAGE: | ||
{{.HelpName}} [FLAGS] [TARGET] | ||
FLAGS: | ||
{{range .VisibleFlags}}{{.}} | ||
{{end}} | ||
EXAMPLES: | ||
1. Create a new access key pair with the same policy as the authenticated user | ||
{{.Prompt}} {{.HelpName}} myminio/ | ||
2. Create a new access key pair with custom access key and secret key | ||
{{.Prompt}} {{.HelpName}} myminio/ --access-key myaccesskey --secret-key mysecretkey | ||
3. Create a new access key pair for user 'tester' that expires in 1 day | ||
{{.Prompt}} {{.HelpName}} myminio/ tester --expiry-duration 24h | ||
4. Create a new access key pair for authenticated user that expires on 2025-01-01 | ||
{{.Prompt}} {{.HelpName}} --expiry 2025-01-01 | ||
5. Create a new access key pair for user 'tester' with a custom policy | ||
{{.Prompt}} {{.HelpName}} myminio/ tester --policy /path/to/policy.json | ||
6. Create a new access key pair for user 'tester' with a custom name and description | ||
{{.Prompt}} {{.HelpName}} myminio/ tester --name "Tester's Access Key" --description "Access key for tester" | ||
`, | ||
} | ||
|
||
func mainAdminAccesskeyCreate(ctx *cli.Context) error { | ||
return commonAccesskeyCreate(ctx, false) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// Copyright (c) 2015-2024 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 <http://www.gnu.org/licenses/>. | ||
|
||
package cmd | ||
|
||
import ( | ||
"github.com/minio/cli" | ||
) | ||
|
||
var adminAccesskeyDisableCmd = cli.Command{ | ||
Name: "disable", | ||
Usage: "disable an access key", | ||
Action: mainAdminAccesskeyDisable, | ||
Before: setGlobalsFromContext, | ||
Flags: globalFlags, | ||
OnUsageError: onUsageError, | ||
CustomHelpTemplate: `NAME: | ||
{{.HelpName}} - {{.Usage}} | ||
USAGE: | ||
{{.HelpName}} [FLAGS] [TARGET] | ||
FLAGS: | ||
{{range .VisibleFlags}}{{.}} | ||
{{end}} | ||
EXAMPLES: | ||
1. Disable access key | ||
{{.Prompt}} {{.HelpName}} myminio myaccesskey | ||
`, | ||
} | ||
|
||
func mainAdminAccesskeyDisable(ctx *cli.Context) error { | ||
return enableDisableAccesskey(ctx, false) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// Copyright (c) 2015-2024 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 <http://www.gnu.org/licenses/>. | ||
|
||
package cmd | ||
|
||
import ( | ||
"github.com/minio/cli" | ||
) | ||
|
||
var adminAccesskeyEditFlags = []cli.Flag{ | ||
cli.StringFlag{ | ||
Name: "secret-key", | ||
Usage: "set a secret key for the account", | ||
}, | ||
cli.StringFlag{ | ||
Name: "policy", | ||
Usage: "path to a JSON policy file", | ||
}, | ||
cli.StringFlag{ | ||
Name: "name", | ||
Usage: "friendly name for the account", | ||
}, | ||
cli.StringFlag{ | ||
Name: "description", | ||
Usage: "description for the account", | ||
}, | ||
cli.StringFlag{ | ||
Name: "expiry-duration", | ||
Usage: "duration before the access key expires", | ||
}, | ||
cli.StringFlag{ | ||
Name: "expiry", | ||
Usage: "expiry date for the access key", | ||
}, | ||
} | ||
|
||
var adminAccesskeyEditCmd = cli.Command{ | ||
Name: "edit", | ||
Usage: "edit existing access keys", | ||
Action: mainAdminAccesskeyEdit, | ||
Before: setGlobalsFromContext, | ||
Flags: append(adminAccesskeyEditFlags, globalFlags...), | ||
OnUsageError: onUsageError, | ||
CustomHelpTemplate: `NAME: | ||
{{.HelpName}} - {{.Usage}} | ||
USAGE: | ||
{{.HelpName}} [FLAGS] [TARGET] | ||
FLAGS: | ||
{{range .VisibleFlags}}{{.}} | ||
{{end}} | ||
EXAMPLES: | ||
1. Change the secret key for the access key "testkey" | ||
{{.Prompt}} {{.HelpName}} myminio/ testkey --secret-key 'xxxxxxx' | ||
2. Change the expiry duration for the access key "testkey" | ||
{{.Prompt}} {{.HelpName}} myminio/ testkey ---expiry-duration 24h | ||
`, | ||
} | ||
|
||
func mainAdminAccesskeyEdit(ctx *cli.Context) error { | ||
return commonAccesskeyEdit(ctx) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// Copyright (c) 2015-2024 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 <http://www.gnu.org/licenses/>. | ||
|
||
package cmd | ||
|
||
import ( | ||
"github.com/minio/cli" | ||
) | ||
|
||
var adminAccesskeyEnableCmd = cli.Command{ | ||
Name: "enable", | ||
Usage: "enable an access key", | ||
Action: mainAdminAccesskeyEnable, | ||
Before: setGlobalsFromContext, | ||
Flags: globalFlags, | ||
OnUsageError: onUsageError, | ||
CustomHelpTemplate: `NAME: | ||
{{.HelpName}} - {{.Usage}} | ||
USAGE: | ||
{{.HelpName}} [FLAGS] [TARGET] | ||
FLAGS: | ||
{{range .VisibleFlags}}{{.}} | ||
{{end}} | ||
EXAMPLES: | ||
1. Enable access key | ||
{{.Prompt}} {{.HelpName}} myminio myaccesskey | ||
`, | ||
} | ||
|
||
func mainAdminAccesskeyEnable(ctx *cli.Context) error { | ||
return enableDisableAccesskey(ctx, true) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// Copyright (c) 2015-2023 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 <http://www.gnu.org/licenses/>. | ||
|
||
package cmd | ||
|
||
import ( | ||
"github.com/minio/cli" | ||
) | ||
|
||
var adminAccesskeyInfoCmd = cli.Command{ | ||
Name: "info", | ||
Usage: "info about given access key pairs", | ||
Action: mainAdminAccesskeyInfo, | ||
Before: setGlobalsFromContext, | ||
Flags: globalFlags, | ||
OnUsageError: onUsageError, | ||
CustomHelpTemplate: `NAME: | ||
{{.HelpName}} - {{.Usage}} | ||
USAGE: | ||
{{.HelpName}} [FLAGS] TARGET ACCESSKEY [ACCESSKEY...] | ||
FLAGS: | ||
{{range .VisibleFlags}}{{.}} | ||
{{end}} | ||
EXAMPLES: | ||
1. Get info for the access key "testkey" | ||
{{.Prompt}} {{.HelpName}} local/ testkey | ||
2. Get info for the access keys "testkey" and "testkey2" | ||
{{.Prompt}} {{.HelpName}} local/ testkey testkey2 | ||
`, | ||
} | ||
|
||
func mainAdminAccesskeyInfo(ctx *cli.Context) error { | ||
return commonAccesskeyInfo(ctx) | ||
} |
Oops, something went wrong.