mirror of https://github.com/stashapp/stash.git
174 lines
4.1 KiB
Go
174 lines
4.1 KiB
Go
package models
|
|
|
|
import (
|
|
"context"
|
|
"path/filepath"
|
|
"strconv"
|
|
"time"
|
|
)
|
|
|
|
type Gallery struct {
|
|
ID int `json:"id"`
|
|
|
|
Title string `json:"title"`
|
|
Code string `json:"code"`
|
|
Date *Date `json:"date"`
|
|
Details string `json:"details"`
|
|
Photographer string `json:"photographer"`
|
|
// Rating expressed in 1-100 scale
|
|
Rating *int `json:"rating"`
|
|
Organized bool `json:"organized"`
|
|
StudioID *int `json:"studio_id"`
|
|
|
|
// transient - not persisted
|
|
Files RelatedFiles
|
|
// transient - not persisted
|
|
PrimaryFileID *FileID
|
|
// transient - path of primary file or folder
|
|
Path string
|
|
|
|
FolderID *FolderID `json:"folder_id"`
|
|
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
|
|
URLs RelatedStrings `json:"urls"`
|
|
SceneIDs RelatedIDs `json:"scene_ids"`
|
|
TagIDs RelatedIDs `json:"tag_ids"`
|
|
PerformerIDs RelatedIDs `json:"performer_ids"`
|
|
}
|
|
|
|
func NewGallery() Gallery {
|
|
currentTime := time.Now()
|
|
return Gallery{
|
|
CreatedAt: currentTime,
|
|
UpdatedAt: currentTime,
|
|
}
|
|
}
|
|
|
|
// GalleryPartial represents part of a Gallery object. It is used to update
|
|
// the database entry. Only non-nil fields will be updated.
|
|
type GalleryPartial struct {
|
|
// Path OptionalString
|
|
// Checksum OptionalString
|
|
// Zip OptionalBool
|
|
Title OptionalString
|
|
Code OptionalString
|
|
URLs *UpdateStrings
|
|
Date OptionalDate
|
|
Details OptionalString
|
|
Photographer OptionalString
|
|
// Rating expressed in 1-100 scale
|
|
Rating OptionalInt
|
|
Organized OptionalBool
|
|
StudioID OptionalInt
|
|
// FileModTime OptionalTime
|
|
CreatedAt OptionalTime
|
|
UpdatedAt OptionalTime
|
|
|
|
SceneIDs *UpdateIDs
|
|
TagIDs *UpdateIDs
|
|
PerformerIDs *UpdateIDs
|
|
PrimaryFileID *FileID
|
|
}
|
|
|
|
func NewGalleryPartial() GalleryPartial {
|
|
currentTime := time.Now()
|
|
return GalleryPartial{
|
|
UpdatedAt: NewOptionalTime(currentTime),
|
|
}
|
|
}
|
|
|
|
// IsUserCreated returns true if the gallery was created by the user.
|
|
// This is determined by whether the gallery has a primary file or folder.
|
|
func (g *Gallery) IsUserCreated() bool {
|
|
return g.PrimaryFileID == nil && g.FolderID == nil
|
|
}
|
|
|
|
func (g *Gallery) LoadURLs(ctx context.Context, l URLLoader) error {
|
|
return g.URLs.load(func() ([]string, error) {
|
|
return l.GetURLs(ctx, g.ID)
|
|
})
|
|
}
|
|
|
|
func (g *Gallery) LoadFiles(ctx context.Context, l FileLoader) error {
|
|
return g.Files.load(func() ([]File, error) {
|
|
return l.GetFiles(ctx, g.ID)
|
|
})
|
|
}
|
|
|
|
func (g *Gallery) LoadPrimaryFile(ctx context.Context, l FileGetter) error {
|
|
return g.Files.loadPrimary(func() (File, error) {
|
|
if g.PrimaryFileID == nil {
|
|
return nil, nil
|
|
}
|
|
|
|
f, err := l.Find(ctx, *g.PrimaryFileID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if len(f) > 0 {
|
|
return f[0], nil
|
|
}
|
|
return nil, nil
|
|
})
|
|
}
|
|
|
|
func (g *Gallery) LoadSceneIDs(ctx context.Context, l SceneIDLoader) error {
|
|
return g.SceneIDs.load(func() ([]int, error) {
|
|
return l.GetSceneIDs(ctx, g.ID)
|
|
})
|
|
}
|
|
|
|
func (g *Gallery) LoadPerformerIDs(ctx context.Context, l PerformerIDLoader) error {
|
|
return g.PerformerIDs.load(func() ([]int, error) {
|
|
return l.GetPerformerIDs(ctx, g.ID)
|
|
})
|
|
}
|
|
|
|
func (g *Gallery) LoadTagIDs(ctx context.Context, l TagIDLoader) error {
|
|
return g.TagIDs.load(func() ([]int, error) {
|
|
return l.GetTagIDs(ctx, g.ID)
|
|
})
|
|
}
|
|
|
|
func (g Gallery) PrimaryChecksum() string {
|
|
// renamed from Checksum to prevent gqlgen from using it in the resolver
|
|
if p := g.Files.Primary(); p != nil {
|
|
v := p.Base().Fingerprints.Get(FingerprintTypeMD5)
|
|
if v == nil {
|
|
return ""
|
|
}
|
|
|
|
return v.(string)
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// GetTitle returns the title of the scene. If the Title field is empty,
|
|
// then the base filename is returned.
|
|
func (g Gallery) GetTitle() string {
|
|
if g.Title != "" {
|
|
return g.Title
|
|
}
|
|
|
|
return filepath.Base(g.Path)
|
|
}
|
|
|
|
// DisplayName returns a display name for the scene for logging purposes.
|
|
// It returns the path or title, or otherwise it returns the ID if both of these are empty.
|
|
func (g Gallery) DisplayName() string {
|
|
if g.Path != "" {
|
|
return g.Path
|
|
}
|
|
|
|
if g.Title != "" {
|
|
return g.Title
|
|
}
|
|
|
|
return strconv.Itoa(g.ID)
|
|
}
|
|
|
|
const DefaultGthumbWidth int = 640
|