check if key exists

This commit is contained in:
2022-05-09 15:24:42 +02:00
parent d88552c57f
commit 65410d3210
3 changed files with 24 additions and 1 deletions

View File

@@ -39,3 +39,18 @@ func (m *minioClient) GetObject(ctx context.Context, key string) (ObjectReader,
return object, nil
}
func (m *minioClient) KeyExists(ctx context.Context, key string) (bool, error) {
_, err := m.client.StatObject(ctx, m.bucket, key, minio.GetObjectOptions{})
if err != nil {
errResponse := minio.ToErrorResponse(err)
if errResponse.Code == "NoSuchKey" {
return false, nil
}
return false, err
}
return true, nil
}

View File

@@ -14,4 +14,5 @@ type ObjectReader interface {
type S3 interface {
GetObject(ctx context.Context, key string) (ObjectReader, error)
KeyExists(ctx context.Context, key string) (bool, error)
}