2021-01-18 01:23:20 +00:00
|
|
|
package gallery
|
|
|
|
|
|
|
|
import (
|
2022-05-19 07:49:32 +00:00
|
|
|
"context"
|
|
|
|
|
2021-01-18 01:23:20 +00:00
|
|
|
"github.com/stashapp/stash/pkg/models"
|
|
|
|
)
|
|
|
|
|
2022-05-19 07:49:32 +00:00
|
|
|
type PartialUpdater interface {
|
2022-07-13 06:30:54 +00:00
|
|
|
UpdatePartial(ctx context.Context, id int, updatedGallery models.GalleryPartial) (*models.Gallery, error)
|
2022-05-19 07:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ImageUpdater interface {
|
|
|
|
GetImageIDs(ctx context.Context, galleryID int) ([]int, error)
|
2022-09-29 23:18:58 +00:00
|
|
|
AddImages(ctx context.Context, galleryID int, imageIDs ...int) error
|
|
|
|
RemoveImages(ctx context.Context, galleryID int, imageIDs ...int) error
|
2022-05-19 07:49:32 +00:00
|
|
|
}
|
|
|
|
|
2022-09-29 23:18:58 +00:00
|
|
|
// AddImages adds images to the provided gallery.
|
|
|
|
// It returns an error if the gallery does not support adding images, or if
|
|
|
|
// the operation fails.
|
|
|
|
func (s *Service) AddImages(ctx context.Context, g *models.Gallery, toAdd ...int) error {
|
|
|
|
if err := validateContentChange(g); err != nil {
|
2021-01-18 01:23:20 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-09-29 23:18:58 +00:00
|
|
|
return s.Repository.AddImages(ctx, g.ID, toAdd...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveImages removes images from the provided gallery.
|
|
|
|
// It does not validate if the images are part of the gallery.
|
|
|
|
// It returns an error if the gallery does not support removing images, or if
|
|
|
|
// the operation fails.
|
|
|
|
func (s *Service) RemoveImages(ctx context.Context, g *models.Gallery, toRemove ...int) error {
|
|
|
|
if err := validateContentChange(g); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return s.Repository.RemoveImages(ctx, g.ID, toRemove...)
|
2021-01-18 01:23:20 +00:00
|
|
|
}
|
2021-05-03 03:09:46 +00:00
|
|
|
|
2022-08-12 02:21:46 +00:00
|
|
|
func AddPerformer(ctx context.Context, qb PartialUpdater, o *models.Gallery, performerID int) error {
|
|
|
|
_, err := qb.UpdatePartial(ctx, o.ID, models.GalleryPartial{
|
|
|
|
PerformerIDs: &models.UpdateIDs{
|
|
|
|
IDs: []int{performerID},
|
|
|
|
Mode: models.RelationshipUpdateModeAdd,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
return err
|
2021-05-03 03:09:46 +00:00
|
|
|
}
|
|
|
|
|
2022-08-12 02:21:46 +00:00
|
|
|
func AddTag(ctx context.Context, qb PartialUpdater, o *models.Gallery, tagID int) error {
|
|
|
|
_, err := qb.UpdatePartial(ctx, o.ID, models.GalleryPartial{
|
|
|
|
TagIDs: &models.UpdateIDs{
|
|
|
|
IDs: []int{tagID},
|
|
|
|
Mode: models.RelationshipUpdateModeAdd,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
return err
|
2021-05-03 03:09:46 +00:00
|
|
|
}
|