mirror of
https://github.com/stashapp/stash.git
synced 2025-12-16 05:13:46 +01:00
* Treat empty image input as null * Add validation to models.Date * Allow zero dates in database * Make scene_markers.scene_id non-nullable * Drop scraped_items table * Remove movie/studio checksum * Add migration notes --------- Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
65 lines
1.5 KiB
Go
65 lines
1.5 KiB
Go
package identify
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/stashapp/stash/pkg/models"
|
|
"github.com/stashapp/stash/pkg/utils"
|
|
)
|
|
|
|
type StudioCreator interface {
|
|
Create(ctx context.Context, newStudio *models.Studio) error
|
|
UpdateStashIDs(ctx context.Context, studioID int, stashIDs []models.StashID) error
|
|
UpdateImage(ctx context.Context, studioID int, image []byte) error
|
|
}
|
|
|
|
func createMissingStudio(ctx context.Context, endpoint string, w StudioCreator, studio *models.ScrapedStudio) (*int, error) {
|
|
studioInput := scrapedToStudioInput(studio)
|
|
err := w.Create(ctx, &studioInput)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error creating studio: %w", err)
|
|
}
|
|
|
|
// update image table
|
|
if studio.Image != nil && len(*studio.Image) > 0 {
|
|
imageData, err := utils.ReadImageFromURL(ctx, *studio.Image)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = w.UpdateImage(ctx, studioInput.ID, imageData)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
if endpoint != "" && studio.RemoteSiteID != nil {
|
|
if err := w.UpdateStashIDs(ctx, studioInput.ID, []models.StashID{
|
|
{
|
|
Endpoint: endpoint,
|
|
StashID: *studio.RemoteSiteID,
|
|
},
|
|
}); err != nil {
|
|
return nil, fmt.Errorf("error setting studio stash id: %w", err)
|
|
}
|
|
}
|
|
|
|
return &studioInput.ID, nil
|
|
}
|
|
|
|
func scrapedToStudioInput(studio *models.ScrapedStudio) models.Studio {
|
|
currentTime := time.Now()
|
|
ret := models.Studio{
|
|
Name: studio.Name,
|
|
CreatedAt: currentTime,
|
|
UpdatedAt: currentTime,
|
|
}
|
|
|
|
if studio.URL != nil {
|
|
ret.URL = *studio.URL
|
|
}
|
|
|
|
return ret
|
|
}
|