f5a8c5a45d
Signed-off-by: Michael Mayer <michael@photoprism.app>
36 lines
706 B
Go
36 lines
706 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/photoprism/photoprism/internal/acl"
|
|
"github.com/photoprism/photoprism/internal/query"
|
|
"github.com/photoprism/photoprism/pkg/clean"
|
|
)
|
|
|
|
// GetFile returns file details as JSON.
|
|
//
|
|
// GET /api/v1/files/:hash
|
|
// Params:
|
|
// - hash (string) SHA-1 hash of the file
|
|
func GetFile(router *gin.RouterGroup) {
|
|
router.GET("/files/:hash", func(c *gin.Context) {
|
|
s := Auth(c, acl.ResourceFiles, acl.ActionView)
|
|
|
|
// Abort if permission was not granted.
|
|
if s.Abort(c) {
|
|
return
|
|
}
|
|
|
|
p, err := query.FileByHash(clean.Token(c.Param("hash")))
|
|
|
|
if err != nil {
|
|
AbortEntityNotFound(c)
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, p)
|
|
})
|
|
}
|