photoprism/internal/api/share.go

36 lines
806 B
Go
Raw Normal View History

package api
import (
"net/http"
"github.com/gin-gonic/gin"
"github.com/photoprism/photoprism/internal/config"
"github.com/photoprism/photoprism/internal/entity"
"github.com/photoprism/photoprism/pkg/txt"
)
func shareHandler(c *gin.Context, conf *config.Config) {
token := c.Param("token")
links := entity.FindLinks(token, "")
if len(links) == 0 {
log.Warnf("sharing: invalid token %s", txt.Quote(token))
c.Redirect(http.StatusTemporaryRedirect, "/")
return
}
clientConfig := conf.ShareConfig()
c.HTML(http.StatusOK, "share.tmpl", gin.H{"config": clientConfig})
}
func InitShare(router *gin.RouterGroup, conf *config.Config) {
router.GET("/:token", func(c *gin.Context) {
shareHandler(c, conf)
})
router.GET("/:token/*uid", func(c *gin.Context) {
shareHandler(c, conf)
})
}