diff options
| author | Rutger Broekhoff | 2023-12-29 21:31:53 +0100 |
|---|---|---|
| committer | Rutger Broekhoff | 2023-12-29 21:31:53 +0100 |
| commit | 404aeae4545d2426c089a5f8d5e82dae56f5212b (patch) | |
| tree | 2d84e00af272b39fc04f3795ae06bc48970e57b5 /vendor/github.com/minio/minio-go/v7/pkg/credentials/env_minio.go | |
| parent | 209d8b0187ed025dec9ac149ebcced3462877bff (diff) | |
| download | gitolfs3-404aeae4545d2426c089a5f8d5e82dae56f5212b.tar.gz gitolfs3-404aeae4545d2426c089a5f8d5e82dae56f5212b.zip | |
Make Nix builds work
Diffstat (limited to 'vendor/github.com/minio/minio-go/v7/pkg/credentials/env_minio.go')
| -rw-r--r-- | vendor/github.com/minio/minio-go/v7/pkg/credentials/env_minio.go | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/vendor/github.com/minio/minio-go/v7/pkg/credentials/env_minio.go b/vendor/github.com/minio/minio-go/v7/pkg/credentials/env_minio.go new file mode 100644 index 0000000..5bfeab1 --- /dev/null +++ b/vendor/github.com/minio/minio-go/v7/pkg/credentials/env_minio.go | |||
| @@ -0,0 +1,68 @@ | |||
| 1 | /* | ||
| 2 | * MinIO Go Library for Amazon S3 Compatible Cloud Storage | ||
| 3 | * Copyright 2017 MinIO, Inc. | ||
| 4 | * | ||
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| 6 | * you may not use this file except in compliance with the License. | ||
| 7 | * You may obtain a copy of the License at | ||
| 8 | * | ||
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 | ||
| 10 | * | ||
| 11 | * Unless required by applicable law or agreed to in writing, software | ||
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, | ||
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| 14 | * See the License for the specific language governing permissions and | ||
| 15 | * limitations under the License. | ||
| 16 | */ | ||
| 17 | |||
| 18 | package credentials | ||
| 19 | |||
| 20 | import "os" | ||
| 21 | |||
| 22 | // A EnvMinio retrieves credentials from the environment variables of the | ||
| 23 | // running process. EnvMinioironment credentials never expire. | ||
| 24 | // | ||
| 25 | // Environment variables used: | ||
| 26 | // | ||
| 27 | // * Access Key ID: MINIO_ACCESS_KEY. | ||
| 28 | // * Secret Access Key: MINIO_SECRET_KEY. | ||
| 29 | // * Access Key ID: MINIO_ROOT_USER. | ||
| 30 | // * Secret Access Key: MINIO_ROOT_PASSWORD. | ||
| 31 | type EnvMinio struct { | ||
| 32 | retrieved bool | ||
| 33 | } | ||
| 34 | |||
| 35 | // NewEnvMinio returns a pointer to a new Credentials object | ||
| 36 | // wrapping the environment variable provider. | ||
| 37 | func NewEnvMinio() *Credentials { | ||
| 38 | return New(&EnvMinio{}) | ||
| 39 | } | ||
| 40 | |||
| 41 | // Retrieve retrieves the keys from the environment. | ||
| 42 | func (e *EnvMinio) Retrieve() (Value, error) { | ||
| 43 | e.retrieved = false | ||
| 44 | |||
| 45 | id := os.Getenv("MINIO_ROOT_USER") | ||
| 46 | secret := os.Getenv("MINIO_ROOT_PASSWORD") | ||
| 47 | |||
| 48 | signerType := SignatureV4 | ||
| 49 | if id == "" || secret == "" { | ||
| 50 | id = os.Getenv("MINIO_ACCESS_KEY") | ||
| 51 | secret = os.Getenv("MINIO_SECRET_KEY") | ||
| 52 | if id == "" || secret == "" { | ||
| 53 | signerType = SignatureAnonymous | ||
| 54 | } | ||
| 55 | } | ||
| 56 | |||
| 57 | e.retrieved = true | ||
| 58 | return Value{ | ||
| 59 | AccessKeyID: id, | ||
| 60 | SecretAccessKey: secret, | ||
| 61 | SignerType: signerType, | ||
| 62 | }, nil | ||
| 63 | } | ||
| 64 | |||
| 65 | // IsExpired returns if the credentials have been retrieved. | ||
| 66 | func (e *EnvMinio) IsExpired() bool { | ||
| 67 | return !e.retrieved | ||
| 68 | } | ||