2020-10-12 23:12:46 +00:00
|
|
|
package models
|
|
|
|
|
2022-05-19 07:49:32 +00:00
|
|
|
import "context"
|
|
|
|
|
2022-04-25 05:55:05 +00:00
|
|
|
type ImageFilterType struct {
|
|
|
|
And *ImageFilterType `json:"AND"`
|
|
|
|
Or *ImageFilterType `json:"OR"`
|
|
|
|
Not *ImageFilterType `json:"NOT"`
|
|
|
|
Title *StringCriterionInput `json:"title"`
|
|
|
|
// Filter by file checksum
|
|
|
|
Checksum *StringCriterionInput `json:"checksum"`
|
|
|
|
// Filter by path
|
|
|
|
Path *StringCriterionInput `json:"path"`
|
|
|
|
// Filter by rating
|
|
|
|
Rating *IntCriterionInput `json:"rating"`
|
|
|
|
// Filter by organized
|
|
|
|
Organized *bool `json:"organized"`
|
|
|
|
// Filter by o-counter
|
|
|
|
OCounter *IntCriterionInput `json:"o_counter"`
|
|
|
|
// Filter by resolution
|
|
|
|
Resolution *ResolutionCriterionInput `json:"resolution"`
|
|
|
|
// Filter to only include images missing this property
|
|
|
|
IsMissing *string `json:"is_missing"`
|
|
|
|
// Filter to only include images with this studio
|
|
|
|
Studios *HierarchicalMultiCriterionInput `json:"studios"`
|
|
|
|
// Filter to only include images with these tags
|
|
|
|
Tags *HierarchicalMultiCriterionInput `json:"tags"`
|
|
|
|
// Filter by tag count
|
|
|
|
TagCount *IntCriterionInput `json:"tag_count"`
|
|
|
|
// Filter to only include images with performers with these tags
|
|
|
|
PerformerTags *HierarchicalMultiCriterionInput `json:"performer_tags"`
|
|
|
|
// Filter to only include images with these performers
|
|
|
|
Performers *MultiCriterionInput `json:"performers"`
|
|
|
|
// Filter by performer count
|
|
|
|
PerformerCount *IntCriterionInput `json:"performer_count"`
|
|
|
|
// Filter images that have performers that have been favorited
|
|
|
|
PerformerFavorite *bool `json:"performer_favorite"`
|
|
|
|
// Filter to only include images with these galleries
|
|
|
|
Galleries *MultiCriterionInput `json:"galleries"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ImageDestroyInput struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
DeleteFile *bool `json:"delete_file"`
|
|
|
|
DeleteGenerated *bool `json:"delete_generated"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ImagesDestroyInput struct {
|
|
|
|
Ids []string `json:"ids"`
|
|
|
|
DeleteFile *bool `json:"delete_file"`
|
|
|
|
DeleteGenerated *bool `json:"delete_generated"`
|
|
|
|
}
|
|
|
|
|
2021-10-25 00:40:13 +00:00
|
|
|
type ImageQueryOptions struct {
|
|
|
|
QueryOptions
|
|
|
|
ImageFilter *ImageFilterType
|
|
|
|
|
|
|
|
Megapixels bool
|
|
|
|
TotalSize bool
|
|
|
|
}
|
|
|
|
|
|
|
|
type ImageQueryResult struct {
|
|
|
|
QueryResult
|
|
|
|
Megapixels float64
|
2021-10-27 00:55:11 +00:00
|
|
|
TotalSize float64
|
2021-10-25 00:40:13 +00:00
|
|
|
|
|
|
|
finder ImageFinder
|
|
|
|
images []*Image
|
|
|
|
resolveErr error
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewImageQueryResult(finder ImageFinder) *ImageQueryResult {
|
|
|
|
return &ImageQueryResult{
|
|
|
|
finder: finder,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-19 07:49:32 +00:00
|
|
|
func (r *ImageQueryResult) Resolve(ctx context.Context) ([]*Image, error) {
|
2021-10-25 00:40:13 +00:00
|
|
|
// cache results
|
|
|
|
if r.images == nil && r.resolveErr == nil {
|
2022-05-19 07:49:32 +00:00
|
|
|
r.images, r.resolveErr = r.finder.FindMany(ctx, r.IDs)
|
2021-10-25 00:40:13 +00:00
|
|
|
}
|
|
|
|
return r.images, r.resolveErr
|
|
|
|
}
|
|
|
|
|
|
|
|
type ImageFinder interface {
|
|
|
|
// TODO - rename to Find and remove existing method
|
2022-05-19 07:49:32 +00:00
|
|
|
FindMany(ctx context.Context, ids []int) ([]*Image, error)
|
2021-10-25 00:40:13 +00:00
|
|
|
}
|
|
|
|
|
2020-10-12 23:12:46 +00:00
|
|
|
type ImageReader interface {
|
2021-10-25 00:40:13 +00:00
|
|
|
ImageFinder
|
|
|
|
// TODO - remove this in another PR
|
2022-05-19 07:49:32 +00:00
|
|
|
Find(ctx context.Context, id int) (*Image, error)
|
2022-07-13 06:30:54 +00:00
|
|
|
FindByChecksum(ctx context.Context, checksum string) ([]*Image, error)
|
2022-05-19 07:49:32 +00:00
|
|
|
FindByGalleryID(ctx context.Context, galleryID int) ([]*Image, error)
|
|
|
|
CountByGalleryID(ctx context.Context, galleryID int) (int, error)
|
2022-07-13 06:30:54 +00:00
|
|
|
FindByPath(ctx context.Context, path string) ([]*Image, error)
|
2022-05-19 07:49:32 +00:00
|
|
|
Count(ctx context.Context) (int, error)
|
|
|
|
Size(ctx context.Context) (float64, error)
|
|
|
|
All(ctx context.Context) ([]*Image, error)
|
|
|
|
Query(ctx context.Context, options ImageQueryOptions) (*ImageQueryResult, error)
|
|
|
|
QueryCount(ctx context.Context, imageFilter *ImageFilterType, findFilter *FindFilterType) (int, error)
|
2020-10-12 23:12:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ImageWriter interface {
|
2022-07-13 06:30:54 +00:00
|
|
|
Create(ctx context.Context, newImage *ImageCreateInput) error
|
|
|
|
Update(ctx context.Context, updatedImage *Image) error
|
|
|
|
UpdatePartial(ctx context.Context, id int, partial ImagePartial) (*Image, error)
|
2022-05-19 07:49:32 +00:00
|
|
|
IncrementOCounter(ctx context.Context, id int) (int, error)
|
|
|
|
DecrementOCounter(ctx context.Context, id int) (int, error)
|
|
|
|
ResetOCounter(ctx context.Context, id int) (int, error)
|
|
|
|
Destroy(ctx context.Context, id int) error
|
2020-10-12 23:12:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ImageReaderWriter interface {
|
|
|
|
ImageReader
|
|
|
|
ImageWriter
|
|
|
|
}
|