2019-02-09 12:30:49 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
2020-06-22 23:19:19 +00:00
|
|
|
|
|
|
|
"github.com/go-chi/chi"
|
|
|
|
"github.com/stashapp/stash/pkg/models"
|
2020-07-07 00:35:43 +00:00
|
|
|
"github.com/stashapp/stash/pkg/utils"
|
2019-02-09 12:30:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type studioRoutes struct{}
|
|
|
|
|
|
|
|
func (rs studioRoutes) Routes() chi.Router {
|
|
|
|
r := chi.NewRouter()
|
|
|
|
|
|
|
|
r.Route("/{studioId}", func(r chi.Router) {
|
|
|
|
r.Use(StudioCtx)
|
|
|
|
r.Get("/image", rs.Image)
|
|
|
|
})
|
|
|
|
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rs studioRoutes) Image(w http.ResponseWriter, r *http.Request) {
|
2019-02-14 22:53:32 +00:00
|
|
|
studio := r.Context().Value(studioKey).(*models.Studio)
|
2020-06-22 23:19:19 +00:00
|
|
|
qb := models.NewStudioQueryBuilder()
|
2020-11-26 21:01:56 +00:00
|
|
|
var image []byte
|
2020-08-11 23:19:27 +00:00
|
|
|
defaultParam := r.URL.Query().Get("default")
|
2020-11-26 21:01:56 +00:00
|
|
|
|
|
|
|
if defaultParam != "true" {
|
|
|
|
image, _ = qb.GetStudioImage(studio.ID, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(image) == 0 {
|
2020-08-11 23:19:27 +00:00
|
|
|
_, image, _ = utils.ProcessBase64Image(models.DefaultStudioImage)
|
|
|
|
}
|
|
|
|
|
2020-07-07 00:35:43 +00:00
|
|
|
utils.ServeImage(image, w, r)
|
2019-02-09 12:30:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func StudioCtx(next http.Handler) http.Handler {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
studioID, err := strconv.Atoi(chi.URLParam(r, "studioId"))
|
|
|
|
if err != nil {
|
|
|
|
http.Error(w, http.StatusText(404), 404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
qb := models.NewStudioQueryBuilder()
|
|
|
|
studio, err := qb.Find(studioID, nil)
|
|
|
|
if err != nil {
|
|
|
|
http.Error(w, http.StatusText(404), 404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-02-14 22:53:32 +00:00
|
|
|
ctx := context.WithValue(r.Context(), studioKey, studio)
|
2019-02-09 12:30:49 +00:00
|
|
|
next.ServeHTTP(w, r.WithContext(ctx))
|
|
|
|
})
|
2019-02-14 22:53:32 +00:00
|
|
|
}
|