2021-11-29 03:08:32 +00:00
|
|
|
package image
|
|
|
|
|
|
|
|
import (
|
2022-05-19 07:49:32 +00:00
|
|
|
"context"
|
|
|
|
|
2021-11-29 03:08:32 +00:00
|
|
|
"github.com/stashapp/stash/pkg/file"
|
2022-03-17 00:33:59 +00:00
|
|
|
"github.com/stashapp/stash/pkg/fsutil"
|
2021-11-29 03:08:32 +00:00
|
|
|
"github.com/stashapp/stash/pkg/models"
|
2022-03-17 00:33:59 +00:00
|
|
|
"github.com/stashapp/stash/pkg/models/paths"
|
2021-11-29 03:08:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Destroyer interface {
|
2022-05-19 07:49:32 +00:00
|
|
|
Destroy(ctx context.Context, id int) error
|
2021-11-29 03:08:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FileDeleter is an extension of file.Deleter that handles deletion of image files.
|
|
|
|
type FileDeleter struct {
|
2022-07-13 06:30:54 +00:00
|
|
|
*file.Deleter
|
2021-11-29 03:08:32 +00:00
|
|
|
|
|
|
|
Paths *paths.Paths
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarkGeneratedFiles marks for deletion the generated files for the provided image.
|
|
|
|
func (d *FileDeleter) MarkGeneratedFiles(image *models.Image) error {
|
2022-07-13 06:30:54 +00:00
|
|
|
thumbPath := d.Paths.Generated.GetThumbnailPath(image.Checksum(), models.DefaultGthumbWidth)
|
2022-03-17 00:33:59 +00:00
|
|
|
exists, _ := fsutil.FileExists(thumbPath)
|
2021-11-29 03:08:32 +00:00
|
|
|
if exists {
|
|
|
|
return d.Files([]string{thumbPath})
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Destroy destroys an image, optionally marking the file and generated files for deletion.
|
2022-07-13 06:30:54 +00:00
|
|
|
func (s *Service) Destroy(ctx context.Context, i *models.Image, fileDeleter *FileDeleter, deleteGenerated, deleteFile bool) error {
|
|
|
|
// TODO - we currently destroy associated files so that they will be rescanned.
|
|
|
|
// A better way would be to keep the file entries in the database, and recreate
|
|
|
|
// associated objects during the scan process if there are none already.
|
|
|
|
|
|
|
|
if err := s.destroyFiles(ctx, i, fileDeleter, deleteFile); err != nil {
|
|
|
|
return err
|
2021-11-29 03:08:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if deleteGenerated {
|
|
|
|
if err := fileDeleter.MarkGeneratedFiles(i); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-13 06:30:54 +00:00
|
|
|
return s.Repository.Destroy(ctx, i.ID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Service) destroyFiles(ctx context.Context, i *models.Image, fileDeleter *FileDeleter, deleteFile bool) error {
|
|
|
|
for _, f := range i.Files {
|
|
|
|
// only delete files where there is no other associated image
|
|
|
|
otherImages, err := s.Repository.FindByFileID(ctx, f.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(otherImages) > 1 {
|
|
|
|
// other image associated, don't remove
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// don't delete files in zip archives
|
|
|
|
if deleteFile && f.ZipFileID == nil {
|
|
|
|
if err := file.Destroy(ctx, s.File, f, fileDeleter.Deleter, deleteFile); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2021-11-29 03:08:32 +00:00
|
|
|
}
|