package api import ( "fmt" "strconv" "github.com/photoprism/photoprism/internal/config" log "github.com/sirupsen/logrus" "github.com/gin-gonic/gin" "github.com/photoprism/photoprism/internal/photoprism" ) var photoIconSvg = []byte(` `) // GET /api/v1/thumbnails/:type/:size/:hash // // Parameters: // type: string Format, either "fit" or "square" // size: int Size in pixels // hash: string The file hash as returned by the search API func GetThumbnail(router *gin.RouterGroup, conf *config.Config) { router.GET("/thumbnails/:type/:size/:hash", func(c *gin.Context) { fileHash := c.Param("hash") thumbnailType := c.Param("type") size, err := strconv.Atoi(c.Param("size")) if err != nil { log.Errorf("invalid size: %s", c.Param("size")) c.Data(400, "image/svg+xml", photoIconSvg) return } search := photoprism.NewSearch(conf.OriginalsPath(), conf.Db()) file, err := search.FindFileByHash(fileHash) if err != nil { c.AbortWithStatusJSON(404, gin.H{"error": err.Error()}) return } fileName := fmt.Sprintf("%s/%s", conf.OriginalsPath(), file.FileName) mediaFile, err := photoprism.NewMediaFile(fileName) if err != nil { log.Errorf("could not find image for thumbnail: %s", err.Error()) c.Data(404, "image/svg+xml", photoIconSvg) // Set missing flag so that the file doesn't show up in search results anymore file.FileMissing = true conf.Db().Save(&file) return } switch thumbnailType { case "fit": if thumbnail, err := mediaFile.Thumbnail(conf.ThumbnailsPath(), size); err == nil { c.File(thumbnail.Filename()) } else { log.Errorf("could not create thumbnail: %s", err.Error()) c.Data(400, "image/svg+xml", photoIconSvg) } case "square": if thumbnail, err := mediaFile.SquareThumbnail(conf.ThumbnailsPath(), size); err == nil { c.File(thumbnail.Filename()) } else { log.Errorf("could not create square thumbnail: %s", err.Error()) c.Data(400, "image/svg+xml", photoIconSvg) } default: log.Errorf("unknown thumbnail type: %s", thumbnailType) c.Data(400, "image/svg+xml", photoIconSvg) } }) }