mirror of https://github.com/stashapp/stash.git
30 lines
655 B
Go
30 lines
655 B
Go
package urlbuilders
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"github.com/stashapp/stash/pkg/models"
|
|
)
|
|
|
|
type PerformerURLBuilder struct {
|
|
BaseURL string
|
|
PerformerID string
|
|
UpdatedAt string
|
|
}
|
|
|
|
func NewPerformerURLBuilder(baseURL string, performer *models.Performer) PerformerURLBuilder {
|
|
return PerformerURLBuilder{
|
|
BaseURL: baseURL,
|
|
PerformerID: strconv.Itoa(performer.ID),
|
|
UpdatedAt: strconv.FormatInt(performer.UpdatedAt.Unix(), 10),
|
|
}
|
|
}
|
|
|
|
func (b PerformerURLBuilder) GetPerformerImageURL(hasImage bool) string {
|
|
url := b.BaseURL + "/performer/" + b.PerformerID + "/image?t=" + b.UpdatedAt
|
|
if !hasImage {
|
|
url += "&default=true"
|
|
}
|
|
return url
|
|
}
|