2021-01-08 09:02:30 +01:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2022-09-28 09:01:17 +02:00
|
|
|
|
2022-10-13 22:11:02 +02:00
|
|
|
"github.com/photoprism/photoprism/internal/entity"
|
2022-09-28 09:01:17 +02:00
|
|
|
"github.com/photoprism/photoprism/internal/session"
|
2021-01-08 09:02:30 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2022-01-18 12:28:27 +01:00
|
|
|
ContentTypeAvc = `video/mp4; codecs="avc1"`
|
2021-01-08 09:02:30 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// AddCacheHeader adds a cache control header to the response.
|
|
|
|
func AddCacheHeader(c *gin.Context, maxAge MaxAge) {
|
2021-01-08 12:20:41 +01:00
|
|
|
c.Header("Cache-Control", fmt.Sprintf("private, max-age=%s, no-transform", maxAge.String()))
|
2021-01-08 09:02:30 +01:00
|
|
|
}
|
|
|
|
|
2021-01-08 09:09:59 +01:00
|
|
|
// AddCoverCacheHeader adds cover image cache control headers to the response.
|
|
|
|
func AddCoverCacheHeader(c *gin.Context) {
|
|
|
|
AddCacheHeader(c, CoverCacheTTL)
|
|
|
|
}
|
|
|
|
|
2021-12-14 18:34:52 +01:00
|
|
|
// AddThumbCacheHeader adds thumbnail cache control headers to the response.
|
2021-01-08 09:02:30 +01:00
|
|
|
func AddThumbCacheHeader(c *gin.Context) {
|
2021-01-08 12:20:41 +01:00
|
|
|
c.Header("Cache-Control", fmt.Sprintf("private, max-age=%s, no-transform, immutable", ThumbCacheTTL.String()))
|
2021-01-08 09:02:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// AddCountHeader adds the actual result count to the response.
|
|
|
|
func AddCountHeader(c *gin.Context, count int) {
|
|
|
|
c.Header("X-Count", strconv.Itoa(count))
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddLimitHeader adds the max result count to the response.
|
|
|
|
func AddLimitHeader(c *gin.Context, limit int) {
|
|
|
|
c.Header("X-Limit", strconv.Itoa(limit))
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddOffsetHeader adds the result offset to the response.
|
|
|
|
func AddOffsetHeader(c *gin.Context, offset int) {
|
|
|
|
c.Header("X-Offset", strconv.Itoa(offset))
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddDownloadHeader adds a header indicating the response is expected to be downloaded.
|
|
|
|
func AddDownloadHeader(c *gin.Context, fileName string) {
|
|
|
|
c.Header("Content-Disposition", fmt.Sprintf("attachment; filename=%s", fileName))
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddSessionHeader adds a session id header to the response.
|
|
|
|
func AddSessionHeader(c *gin.Context, id string) {
|
2022-09-28 09:01:17 +02:00
|
|
|
c.Header(session.Header, id)
|
2021-01-08 09:02:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// AddContentTypeHeader adds a content type header to the response.
|
|
|
|
func AddContentTypeHeader(c *gin.Context, contentType string) {
|
|
|
|
c.Header("Content-Type", contentType)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddFileCountHeaders adds file and folder counts to the response.
|
|
|
|
func AddFileCountHeaders(c *gin.Context, filesCount, foldersCount int) {
|
|
|
|
c.Header("X-Files", strconv.Itoa(filesCount))
|
|
|
|
c.Header("X-Folders", strconv.Itoa(foldersCount))
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddTokenHeaders adds preview token headers to the response.
|
2022-10-13 22:11:02 +02:00
|
|
|
func AddTokenHeaders(c *gin.Context, s *entity.Session) {
|
|
|
|
if s.PreviewToken != "" {
|
|
|
|
c.Header("X-Preview-Token", s.PreviewToken)
|
|
|
|
}
|
|
|
|
if s.DownloadToken != "" {
|
|
|
|
c.Header("X-Download-Token", s.DownloadToken)
|
|
|
|
}
|
2021-01-08 09:02:30 +01:00
|
|
|
}
|