mirror of https://github.com/stashapp/stash.git
88 lines
1.7 KiB
Go
88 lines
1.7 KiB
Go
|
package models
|
||
|
|
||
|
import "strconv"
|
||
|
|
||
|
// MatchScrapedScenePerformer matches the provided performer with the
|
||
|
// performers in the database and sets the ID field if one is found.
|
||
|
func MatchScrapedScenePerformer(p *ScrapedScenePerformer) error {
|
||
|
qb := NewPerformerQueryBuilder()
|
||
|
|
||
|
performers, err := qb.FindByNames([]string{p.Name}, nil, true)
|
||
|
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if len(performers) != 1 {
|
||
|
// ignore - cannot match
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
id := strconv.Itoa(performers[0].ID)
|
||
|
p.ID = &id
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// MatchScrapedSceneStudio matches the provided studio with the studios
|
||
|
// in the database and sets the ID field if one is found.
|
||
|
func MatchScrapedSceneStudio(s *ScrapedSceneStudio) error {
|
||
|
qb := NewStudioQueryBuilder()
|
||
|
|
||
|
studio, err := qb.FindByName(s.Name, nil, true)
|
||
|
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if studio == nil {
|
||
|
// ignore - cannot match
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
id := strconv.Itoa(studio.ID)
|
||
|
s.ID = &id
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// MatchScrapedSceneMovie matches the provided movie with the movies
|
||
|
// in the database and sets the ID field if one is found.
|
||
|
func MatchScrapedSceneMovie(m *ScrapedSceneMovie) error {
|
||
|
qb := NewMovieQueryBuilder()
|
||
|
|
||
|
movies, err := qb.FindByNames([]string{m.Name}, nil, true)
|
||
|
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if len(movies) != 1 {
|
||
|
// ignore - cannot match
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
id := strconv.Itoa(movies[0].ID)
|
||
|
m.ID = &id
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// MatchScrapedSceneTag matches the provided tag with the tags
|
||
|
// in the database and sets the ID field if one is found.
|
||
|
func MatchScrapedSceneTag(s *ScrapedSceneTag) error {
|
||
|
qb := NewTagQueryBuilder()
|
||
|
|
||
|
tag, err := qb.FindByName(s.Name, nil, true)
|
||
|
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if tag == nil {
|
||
|
// ignore - cannot match
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
id := strconv.Itoa(tag.ID)
|
||
|
s.ID = &id
|
||
|
return nil
|
||
|
}
|