mirror of
https://github.com/gomods/athens
synced 2026-02-03 12:10:32 +00:00
* feat: add golangci-lint linting * chore: fix linter issues * feat: add linting into the workflow * docs: update lint docs * fix: cr suggestions * fix: remove old formatting and vetting scripts * fix: add docker make target * fix: action go caching * fix: depreciated actions checkout version * fix: cr suggestion * fix: cr suggestions --------- Co-authored-by: Manu Gupta <manugupt1@gmail.com>
29 lines
835 B
Go
29 lines
835 B
Go
package azureblob
|
|
|
|
import (
|
|
"context"
|
|
|
|
"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 = "azureblob.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.client.DeleteBlob, s.timeout)
|
|
}
|