mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-01-26 22:49:30 -06:00
41 lines
969 B
Go
41 lines
969 B
Go
package executions
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"errors"
|
|
|
|
"github.com/eduardolat/pgbackweb/internal/database/dbgen"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
func (s *Service) SoftDeleteExecution(
|
|
ctx context.Context, executionID uuid.UUID,
|
|
) error {
|
|
execution, err := s.dbgen.ExecutionsServiceGetExecutionForSoftDelete(
|
|
ctx, dbgen.ExecutionsServiceGetExecutionForSoftDeleteParams{
|
|
ExecutionID: executionID,
|
|
EncryptionKey: *s.env.PBW_ENCRYPTION_KEY,
|
|
},
|
|
)
|
|
if err != nil && errors.Is(err, sql.ErrNoRows) {
|
|
return nil
|
|
}
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if execution.ExecutionPath.Valid {
|
|
err := s.ints.S3Client.Delete(
|
|
execution.DecryptedDestinationAccessKey, execution.DecryptedDestinationSecretKey,
|
|
execution.DestinationRegion, execution.DestinationEndpoint,
|
|
execution.DestinationBucketName, execution.ExecutionPath.String,
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return s.dbgen.ExecutionsServiceSoftDeleteExecution(ctx, executionID)
|
|
}
|