1d667ada79
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
32 lines
680 B
Go
32 lines
680 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
"github.com/photoprism/photoprism/internal/query"
|
|
)
|
|
|
|
// GET /api/v1/files/:hash
|
|
//
|
|
// Parameters:
|
|
// hash: string The sha1 hash of a file
|
|
func GetFile(router *gin.RouterGroup, conf *config.Config) {
|
|
router.GET("/files/:hash", func(c *gin.Context) {
|
|
if Unauthorized(c, conf) {
|
|
c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized)
|
|
return
|
|
}
|
|
|
|
q := query.New(conf.Db())
|
|
p, err := q.FileByHash(c.Param("hash"))
|
|
|
|
if err != nil {
|
|
c.AbortWithStatusJSON(http.StatusNotFound, ErrPhotoNotFound)
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, p)
|
|
})
|
|
}
|