2024-05-17 07:59:51 +00:00
|
|
|
package services
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2024-07-28 17:47:33 +00:00
|
|
|
"time"
|
2024-05-17 07:59:51 +00:00
|
|
|
|
2024-06-22 04:18:54 +00:00
|
|
|
"git.solsynth.dev/hydrogen/paperclip/pkg/internal/models"
|
2024-05-17 07:59:51 +00:00
|
|
|
jsoniter "github.com/json-iterator/go"
|
|
|
|
"github.com/minio/minio-go/v7"
|
|
|
|
"github.com/minio/minio-go/v7/pkg/credentials"
|
2024-07-28 16:53:40 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
2024-05-17 07:59:51 +00:00
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
2024-07-28 16:53:40 +00:00
|
|
|
var fileDeletionQueue = make(chan models.Attachment, 256)
|
|
|
|
|
|
|
|
func PublishDeleteFileTask(file models.Attachment) {
|
|
|
|
fileDeletionQueue <- file
|
|
|
|
}
|
|
|
|
|
|
|
|
func StartConsumeDeletionTask() {
|
|
|
|
for {
|
|
|
|
task := <-fileDeletionQueue
|
2024-07-28 17:47:33 +00:00
|
|
|
start := time.Now()
|
2024-07-28 16:53:40 +00:00
|
|
|
if err := DeleteFile(task); err != nil {
|
|
|
|
log.Error().Err(err).Any("task", task).Msg("A file deletion task failed...")
|
2024-07-28 17:47:33 +00:00
|
|
|
} else {
|
|
|
|
log.Info().Dur("elapsed", time.Since(start)).Any("task", task).Msg("A file deletion task was completed.")
|
2024-07-28 16:53:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-17 07:59:51 +00:00
|
|
|
func DeleteFile(meta models.Attachment) error {
|
2024-07-28 13:03:56 +00:00
|
|
|
var destMap map[string]any
|
|
|
|
if meta.Destination == models.AttachmentDstTemporary {
|
|
|
|
destMap = viper.GetStringMap("destinations.temporary")
|
|
|
|
} else {
|
|
|
|
destMap = viper.GetStringMap("destinations.permanent")
|
2024-05-17 07:59:51 +00:00
|
|
|
}
|
|
|
|
|
2024-07-28 13:03:56 +00:00
|
|
|
var dest models.BaseDestination
|
|
|
|
rawDest, _ := jsoniter.Marshal(destMap)
|
|
|
|
_ = jsoniter.Unmarshal(rawDest, &dest)
|
2024-05-17 07:59:51 +00:00
|
|
|
|
2024-07-28 13:03:56 +00:00
|
|
|
switch dest.Type {
|
2024-05-17 07:59:51 +00:00
|
|
|
case models.DestinationTypeLocal:
|
|
|
|
var destConfigured models.LocalDestination
|
|
|
|
_ = jsoniter.Unmarshal(rawDest, &destConfigured)
|
|
|
|
return DeleteFileFromLocal(destConfigured, meta)
|
|
|
|
case models.DestinationTypeS3:
|
|
|
|
var destConfigured models.S3Destination
|
|
|
|
_ = jsoniter.Unmarshal(rawDest, &destConfigured)
|
|
|
|
return DeleteFileFromS3(destConfigured, meta)
|
|
|
|
default:
|
2024-07-28 13:03:56 +00:00
|
|
|
return fmt.Errorf("invalid destination: unsupported protocol %s", dest.Type)
|
2024-05-17 07:59:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeleteFileFromLocal(config models.LocalDestination, meta models.Attachment) error {
|
|
|
|
fullpath := filepath.Join(config.Path, meta.Uuid)
|
|
|
|
return os.Remove(fullpath)
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeleteFileFromS3(config models.S3Destination, meta models.Attachment) error {
|
|
|
|
client, err := minio.New(config.Endpoint, &minio.Options{
|
|
|
|
Creds: credentials.NewStaticV4(config.SecretID, config.SecretKey, ""),
|
|
|
|
Secure: config.EnableSSL,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("unable to configure s3 client: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = client.RemoveObject(context.Background(), config.Bucket, filepath.Join(config.Path, meta.Uuid), minio.RemoveObjectOptions{})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("unable to upload file to s3: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|