mirror of
https://github.com/gomods/athens
synced 2026-02-03 07:30:32 +00:00
Upgrades the AWS SDK to v2. AWS S3 bucket urls will now error if they are not prefixed with a schema (example: https://).
47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
package s3
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/aws/aws-sdk-go-v2/aws"
|
|
"github.com/aws/aws-sdk-go-v2/service/s3"
|
|
"github.com/gomods/athens/pkg/errors"
|
|
"github.com/gomods/athens/pkg/observ"
|
|
modupl "github.com/gomods/athens/pkg/storage/module"
|
|
)
|
|
|
|
// Delete implements the (./pkg/storage).Deleter interface and
|
|
// removes a version of a module from storage. Returning ErrNotFound
|
|
// if the version does not exist.
|
|
func (s *Storage) Delete(ctx context.Context, module, version string) error {
|
|
const op errors.Op = "s3.Delete"
|
|
ctx, span := observ.StartSpan(ctx, op.String())
|
|
defer span.End()
|
|
exists, err := s.Exists(ctx, module, version)
|
|
if err != nil {
|
|
return errors.E(op, err, errors.M(module), errors.V(version))
|
|
}
|
|
if !exists {
|
|
return errors.E(op, errors.M(module), errors.V(version), errors.KindNotFound)
|
|
}
|
|
|
|
return modupl.Delete(ctx, module, version, s.remove, s.timeout)
|
|
}
|
|
|
|
func (s *Storage) remove(ctx context.Context, path string) error {
|
|
const op errors.Op = "s3.Delete"
|
|
ctx, span := observ.StartSpan(ctx, op.String())
|
|
defer span.End()
|
|
|
|
delParams := &s3.DeleteObjectInput{
|
|
Bucket: aws.String(s.bucket),
|
|
Key: aws.String(path),
|
|
}
|
|
|
|
if _, err := s.s3API.DeleteObject(ctx, delParams); err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
|
|
return nil
|
|
}
|