Fix Synopsis json string in movie jsonschema (#2664)

* Fix Synopsis json string in movie jsonschema
* backwards compatible movie synopsis import
This commit is contained in:
bnkai
2022-06-22 03:59:39 +03:00
committed by GitHub
parent abd76f7e58
commit 6cfb7fe79d

View File

@@ -5,6 +5,8 @@ import (
"os"
jsoniter "github.com/json-iterator/go"
"github.com/stashapp/stash/pkg/logger"
"github.com/stashapp/stash/pkg/models/json"
)
@@ -15,7 +17,7 @@ type Movie struct {
Date string `json:"date,omitempty"`
Rating int `json:"rating,omitempty"`
Director string `json:"director,omitempty"`
Synopsis string `json:"sypnopsis,omitempty"`
Synopsis string `json:"synopsis,omitempty"`
FrontImage string `json:"front_image,omitempty"`
BackImage string `json:"back_image,omitempty"`
URL string `json:"url,omitempty"`
@@ -24,6 +26,11 @@ type Movie struct {
UpdatedAt json.JSONTime `json:"updated_at,omitempty"`
}
// Backwards Compatible synopsis for the movie
type MovieSynopsisBC struct {
Synopsis string `json:"sypnopsis,omitempty"`
}
func LoadMovieFile(filePath string) (*Movie, error) {
var movie Movie
file, err := os.Open(filePath)
@@ -37,6 +44,22 @@ func LoadMovieFile(filePath string) (*Movie, error) {
if err != nil {
return nil, err
}
if movie.Synopsis == "" {
// keep backwards compatibility with pre #2664 builds
// attempt to get the synopsis from the alternate (sypnopsis) key
_, err = file.Seek(0, 0) // seek to start of file
if err == nil {
var synopsis MovieSynopsisBC
err = jsonParser.Decode(&synopsis)
if err == nil {
movie.Synopsis = synopsis.Synopsis
if movie.Synopsis != "" {
logger.Debug("Movie synopsis retrieved from alternate key")
}
}
}
}
return &movie, nil
}