chore(deps): use aws-sdk-go-v2 (#1922)

This commit is contained in:
MaineK00n
2024-05-24 19:08:38 +09:00
committed by GitHub
parent 9107d1b1bc
commit d8bce94d8c
6 changed files with 138 additions and 105 deletions

View File

@@ -1,5 +1,13 @@
package config
import (
"fmt"
"slices"
"github.com/aws/aws-sdk-go-v2/service/s3"
"github.com/aws/aws-sdk-go-v2/service/s3/types"
)
// AWSConf is aws config
type AWSConf struct {
// AWS profile to use
@@ -17,14 +25,26 @@ type AWSConf struct {
// The Server-side encryption algorithm used when storing the reports in S3 (e.g., AES256, aws:kms).
S3ServerSideEncryption string `json:"s3ServerSideEncryption"`
// report s3 enable
Enabled bool `toml:"-" json:"-"`
}
// Validate configuration
func (c *AWSConf) Validate() (errs []error) {
// TODO
if !c.Enabled {
return
}
if c.S3Bucket == "" {
errs = append(errs, fmt.Errorf("S3Bucket is empty"))
}
if c.S3ServerSideEncryption != "" {
if !slices.Contains(s3.PutObjectInput{}.ServerSideEncryption.Values(), types.ServerSideEncryption(c.S3ServerSideEncryption)) {
errs = append(errs, fmt.Errorf("S3ServerSideEncryption: %s is not supported server side encryption type", c.S3ServerSideEncryption))
}
}
return
}