2912ac9464
Signed-off-by: Michael Mayer <michael@photoprism.app>
84 lines
2.8 KiB
Go
84 lines
2.8 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/photoprism/photoprism/internal/acl"
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
"github.com/photoprism/photoprism/internal/event"
|
|
"github.com/photoprism/photoprism/internal/get"
|
|
"github.com/photoprism/photoprism/internal/i18n"
|
|
"github.com/photoprism/photoprism/internal/session"
|
|
"github.com/photoprism/photoprism/pkg/clean"
|
|
"github.com/photoprism/photoprism/pkg/header"
|
|
"github.com/photoprism/photoprism/pkg/rnd"
|
|
)
|
|
|
|
// DeleteSession deletes an existing client session (logout).
|
|
//
|
|
// DELETE /api/v1/session
|
|
// DELETE /api/v1/session/:id
|
|
// DELETE /api/v1/sessions/:id
|
|
func DeleteSession(router *gin.RouterGroup) {
|
|
deleteSessionHandler := func(c *gin.Context) {
|
|
// Prevent CDNs from caching this endpoint.
|
|
if header.IsCdn(c.Request) {
|
|
AbortNotFound(c)
|
|
return
|
|
}
|
|
|
|
// Abort if running in public mode.
|
|
if get.Config().Public() {
|
|
c.JSON(http.StatusOK, DeleteSessionResponse(session.PublicID))
|
|
return
|
|
}
|
|
|
|
// Check if the session user is allowed to manage all accounts or update his/her own account.
|
|
s := AuthAny(c, acl.ResourceSessions, acl.Permissions{acl.ActionManage, acl.ActionDelete})
|
|
|
|
if s.Abort(c) {
|
|
return
|
|
}
|
|
|
|
id := clean.ID(c.Param("id"))
|
|
|
|
// Get client IP and auth token from request headers.
|
|
clientIp := ClientIP(c)
|
|
|
|
// Only admins may delete other sessions by ref id.
|
|
if rnd.IsRefID(id) {
|
|
if !acl.Resources.AllowAll(acl.ResourceSessions, s.User().AclRole(), acl.Permissions{acl.AccessAll, acl.ActionManage}) {
|
|
event.AuditErr([]string{clientIp, "session %s", "delete %s as %s", "denied"}, s.RefID, acl.ResourceSessions.String(), s.User().AclRole())
|
|
Abort(c, http.StatusForbidden, i18n.ErrForbidden)
|
|
return
|
|
}
|
|
|
|
event.AuditInfo([]string{clientIp, "session %s", "delete %s as %s", "granted"}, s.RefID, acl.ResourceSessions.String(), s.User().AclRole())
|
|
|
|
if s = entity.FindSessionByRefID(id); s == nil {
|
|
Abort(c, http.StatusNotFound, i18n.ErrNotFound)
|
|
return
|
|
}
|
|
} else if id != "" && s.ID != id {
|
|
event.AuditWarn([]string{clientIp, "session %s", "delete %s as %s", "ids do not match"}, s.RefID, acl.ResourceSessions.String(), s.User().AclRole())
|
|
Abort(c, http.StatusForbidden, i18n.ErrForbidden)
|
|
return
|
|
}
|
|
|
|
// Delete session cache and database record.
|
|
if err := s.Delete(); err != nil {
|
|
event.AuditErr([]string{clientIp, "session %s", "delete session as %s", "%s"}, s.RefID, s.User().AclRole(), err)
|
|
} else {
|
|
event.AuditDebug([]string{clientIp, "session %s", "deleted"}, s.RefID)
|
|
}
|
|
|
|
// Return JSON response for confirmation.
|
|
c.JSON(http.StatusOK, DeleteSessionResponse(s.ID))
|
|
}
|
|
|
|
router.DELETE("/session", deleteSessionHandler)
|
|
router.DELETE("/session/:id", deleteSessionHandler)
|
|
router.DELETE("/sessions/:id", deleteSessionHandler)
|
|
}
|