photoprism/internal/api/moments_time.go
Michael Mayer e3bb8b19dd Routing: Prefix frontend UI routes with /library #840 #2466
Also improves migrations and updates the db schema docs.

Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-10-15 21:54:11 +02:00

37 lines
799 B
Go

package api
import (
"net/http"
"github.com/gin-gonic/gin"
"github.com/photoprism/photoprism/internal/acl"
"github.com/photoprism/photoprism/internal/get"
"github.com/photoprism/photoprism/internal/query"
"github.com/photoprism/photoprism/pkg/txt"
)
// GetMomentsTime returns monthly albums as JSON.
//
// GET /api/v1/moments/time
func GetMomentsTime(router *gin.RouterGroup) {
router.GET("/moments/time", func(c *gin.Context) {
s := Auth(c, acl.ResourceCalendar, acl.ActionSearch)
if s.Abort(c) {
return
}
conf := get.Config()
result, err := query.MomentsTime(1, conf.Settings().Features.Private)
if err != nil {
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"error": txt.UpperFirst(err.Error())})
return
}
c.JSON(http.StatusOK, result)
})
}