mirror of https://github.com/stashapp/stash.git
80 lines
2.0 KiB
Go
80 lines
2.0 KiB
Go
package image
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/stashapp/stash/pkg/models"
|
|
"github.com/stashapp/stash/pkg/models/json"
|
|
"github.com/stashapp/stash/pkg/models/jsonschema"
|
|
"github.com/stashapp/stash/pkg/studio"
|
|
)
|
|
|
|
// ToBasicJSON converts a image object into its JSON object equivalent. It
|
|
// does not convert the relationships to other objects, with the exception
|
|
// of cover image.
|
|
func ToBasicJSON(image *models.Image) *jsonschema.Image {
|
|
newImageJSON := jsonschema.Image{
|
|
Title: image.Title,
|
|
CreatedAt: json.JSONTime{Time: image.CreatedAt},
|
|
UpdatedAt: json.JSONTime{Time: image.UpdatedAt},
|
|
}
|
|
|
|
if image.Rating != nil {
|
|
newImageJSON.Rating = *image.Rating
|
|
}
|
|
|
|
newImageJSON.Organized = image.Organized
|
|
newImageJSON.OCounter = image.OCounter
|
|
|
|
for _, f := range image.Files.List() {
|
|
newImageJSON.Files = append(newImageJSON.Files, f.Base().Path)
|
|
}
|
|
|
|
return &newImageJSON
|
|
}
|
|
|
|
// func getImageFileJSON(image *models.Image) *jsonschema.ImageFile {
|
|
// ret := &jsonschema.ImageFile{}
|
|
|
|
// f := image.PrimaryFile()
|
|
|
|
// ret.ModTime = json.JSONTime{Time: f.ModTime}
|
|
// ret.Size = f.Size
|
|
// ret.Width = f.Width
|
|
// ret.Height = f.Height
|
|
|
|
// return ret
|
|
// }
|
|
|
|
// GetStudioName returns the name of the provided image's studio. It returns an
|
|
// empty string if there is no studio assigned to the image.
|
|
func GetStudioName(ctx context.Context, reader studio.Finder, image *models.Image) (string, error) {
|
|
if image.StudioID != nil {
|
|
studio, err := reader.Find(ctx, *image.StudioID)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
if studio != nil {
|
|
return studio.Name.String, nil
|
|
}
|
|
}
|
|
|
|
return "", nil
|
|
}
|
|
|
|
// GetGalleryChecksum returns the checksum of the provided image. It returns an
|
|
// empty string if there is no gallery assigned to the image.
|
|
// func GetGalleryChecksum(reader models.GalleryReader, image *models.Image) (string, error) {
|
|
// gallery, err := reader.FindByImageID(image.ID)
|
|
// if err != nil {
|
|
// return "", fmt.Errorf("error getting image gallery: %v", err)
|
|
// }
|
|
|
|
// if gallery != nil {
|
|
// return gallery.Checksum, nil
|
|
// }
|
|
|
|
// return "", nil
|
|
// }
|