mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-06 09:19:33 +08:00
73 lines
1.8 KiB
Go
73 lines
1.8 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/gin-gonic/gin/binding"
|
|
|
|
"github.com/photoprism/photoprism/internal/auth/acl"
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
"github.com/photoprism/photoprism/internal/entity/search"
|
|
"github.com/photoprism/photoprism/internal/form"
|
|
"github.com/photoprism/photoprism/internal/get"
|
|
"github.com/photoprism/photoprism/pkg/authn"
|
|
"github.com/photoprism/photoprism/pkg/rnd"
|
|
"github.com/photoprism/photoprism/pkg/sortby"
|
|
)
|
|
|
|
// FindUserSessions finds user sessions and returns them as JSON.
|
|
//
|
|
// GET /api/v1/users/:uid/sessions
|
|
func FindUserSessions(router *gin.RouterGroup) {
|
|
router.GET("/users/:uid/sessions", func(c *gin.Context) {
|
|
// Check if the session user is has user management privileges.
|
|
s := Auth(c, acl.ResourceSessions, acl.ActionManageOwn)
|
|
|
|
if s.Abort(c) {
|
|
return
|
|
}
|
|
|
|
// Get global config.
|
|
conf := get.Config()
|
|
|
|
// Check feature flags and authorization.
|
|
if conf.Public() || conf.Demo() || !s.HasRegisteredUser() || conf.DisableSettings() {
|
|
c.JSON(http.StatusNotFound, entity.Users{})
|
|
return
|
|
} else if !rnd.IsUID(s.UserUID, entity.UserUID) || s.UserUID != c.Param("uid") {
|
|
c.JSON(http.StatusForbidden, entity.Users{})
|
|
return
|
|
}
|
|
|
|
// Init search request form.
|
|
var f form.SearchSessions
|
|
err := c.MustBindWith(&f, binding.Form)
|
|
|
|
// Abort if invalid.
|
|
if err != nil {
|
|
AbortBadRequest(c)
|
|
return
|
|
}
|
|
|
|
// Find applications that belong to the current user and sort them by name.
|
|
f.UID = s.UserUID
|
|
f.Order = sortby.ClientName
|
|
f.Provider = authn.ProviderApplication.String()
|
|
f.Method = authn.MethodDefault.String()
|
|
|
|
// Perform search.
|
|
result, err := search.Sessions(f)
|
|
|
|
if err != nil {
|
|
AbortBadRequest(c)
|
|
return
|
|
}
|
|
|
|
AddLimitHeader(c, f.Count)
|
|
AddOffsetHeader(c, f.Offset)
|
|
|
|
c.JSON(http.StatusOK, result)
|
|
})
|
|
}
|