stash/pkg/api/resolver_mutation_performer.go

178 lines
5.6 KiB
Go
Raw Normal View History

2019-02-09 12:30:49 +00:00
package api
import (
"context"
"database/sql"
2019-02-14 23:42:52 +00:00
"github.com/stashapp/stash/pkg/database"
"github.com/stashapp/stash/pkg/models"
"github.com/stashapp/stash/pkg/utils"
2019-02-09 12:30:49 +00:00
"strconv"
"time"
)
func (r *mutationResolver) PerformerCreate(ctx context.Context, input models.PerformerCreateInput) (*models.Performer, error) {
// Process the base 64 encoded image string
checksum, imageData, err := utils.ProcessBase64Image(input.Image)
if err != nil {
return nil, err
}
// Populate a new performer from the input
currentTime := time.Now()
newPerformer := models.Performer{
Image: imageData,
Checksum: checksum,
CreatedAt: models.SQLiteTimestamp{Timestamp: currentTime},
UpdatedAt: models.SQLiteTimestamp{Timestamp: currentTime},
2019-02-09 12:30:49 +00:00
}
if input.Name != nil {
newPerformer.Name = sql.NullString{String: *input.Name, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.URL != nil {
newPerformer.URL = sql.NullString{String: *input.URL, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Birthdate != nil {
2019-03-05 01:14:52 +00:00
newPerformer.Birthdate = models.SQLiteDate{String: *input.Birthdate, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Ethnicity != nil {
newPerformer.Ethnicity = sql.NullString{String: *input.Ethnicity, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Country != nil {
newPerformer.Country = sql.NullString{String: *input.Country, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.EyeColor != nil {
newPerformer.EyeColor = sql.NullString{String: *input.EyeColor, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Height != nil {
newPerformer.Height = sql.NullString{String: *input.Height, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Measurements != nil {
newPerformer.Measurements = sql.NullString{String: *input.Measurements, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.FakeTits != nil {
newPerformer.FakeTits = sql.NullString{String: *input.FakeTits, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.CareerLength != nil {
newPerformer.CareerLength = sql.NullString{String: *input.CareerLength, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Tattoos != nil {
newPerformer.Tattoos = sql.NullString{String: *input.Tattoos, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Piercings != nil {
newPerformer.Piercings = sql.NullString{String: *input.Piercings, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Aliases != nil {
newPerformer.Aliases = sql.NullString{String: *input.Aliases, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Twitter != nil {
newPerformer.Twitter = sql.NullString{String: *input.Twitter, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Instagram != nil {
newPerformer.Instagram = sql.NullString{String: *input.Instagram, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Favorite != nil {
newPerformer.Favorite = sql.NullBool{Bool: *input.Favorite, Valid: true}
2019-02-11 11:06:33 +00:00
} else {
newPerformer.Favorite = sql.NullBool{Bool: false, Valid: true}
2019-02-09 12:30:49 +00:00
}
// Start the transaction and save the performer
tx := database.DB.MustBeginTx(ctx, nil)
qb := models.NewPerformerQueryBuilder()
performer, err := qb.Create(newPerformer, tx)
if err != nil {
_ = tx.Rollback()
return nil, err
}
// Commit
if err := tx.Commit(); err != nil {
return nil, err
}
return performer, nil
}
func (r *mutationResolver) PerformerUpdate(ctx context.Context, input models.PerformerUpdateInput) (*models.Performer, error) {
// Populate performer from the input
performerID, _ := strconv.Atoi(input.ID)
updatedPerformer := models.Performer{
ID: performerID,
UpdatedAt: models.SQLiteTimestamp{Timestamp: time.Now()},
2019-02-09 12:30:49 +00:00
}
if input.Image != nil {
checksum, imageData, err := utils.ProcessBase64Image(*input.Image)
if err != nil {
return nil, err
}
updatedPerformer.Image = imageData
updatedPerformer.Checksum = checksum
}
if input.Name != nil {
updatedPerformer.Name = sql.NullString{String: *input.Name, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.URL != nil {
updatedPerformer.URL = sql.NullString{String: *input.URL, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Birthdate != nil {
2019-03-05 01:14:52 +00:00
updatedPerformer.Birthdate = models.SQLiteDate{String: *input.Birthdate, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Ethnicity != nil {
updatedPerformer.Ethnicity = sql.NullString{String: *input.Ethnicity, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Country != nil {
updatedPerformer.Country = sql.NullString{String: *input.Country, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.EyeColor != nil {
updatedPerformer.EyeColor = sql.NullString{String: *input.EyeColor, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Height != nil {
updatedPerformer.Height = sql.NullString{String: *input.Height, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Measurements != nil {
updatedPerformer.Measurements = sql.NullString{String: *input.Measurements, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.FakeTits != nil {
updatedPerformer.FakeTits = sql.NullString{String: *input.FakeTits, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.CareerLength != nil {
updatedPerformer.CareerLength = sql.NullString{String: *input.CareerLength, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Tattoos != nil {
updatedPerformer.Tattoos = sql.NullString{String: *input.Tattoos, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Piercings != nil {
updatedPerformer.Piercings = sql.NullString{String: *input.Piercings, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Aliases != nil {
updatedPerformer.Aliases = sql.NullString{String: *input.Aliases, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Twitter != nil {
updatedPerformer.Twitter = sql.NullString{String: *input.Twitter, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Instagram != nil {
updatedPerformer.Instagram = sql.NullString{String: *input.Instagram, Valid: true}
2019-02-09 12:30:49 +00:00
}
if input.Favorite != nil {
updatedPerformer.Favorite = sql.NullBool{Bool: *input.Favorite, Valid: true}
2019-02-11 11:06:33 +00:00
} else {
updatedPerformer.Favorite = sql.NullBool{Bool: false, Valid: true}
2019-02-09 12:30:49 +00:00
}
// Start the transaction and save the performer
tx := database.DB.MustBeginTx(ctx, nil)
qb := models.NewPerformerQueryBuilder()
performer, err := qb.Update(updatedPerformer, tx)
if err != nil {
_ = tx.Rollback()
return nil, err
}
// Commit
if err := tx.Commit(); err != nil {
return nil, err
}
return performer, nil
}