e3bb8b19dd
Also improves migrations and updates the db schema docs. Signed-off-by: Michael Mayer <michael@photoprism.app>
36 lines
871 B
Go
36 lines
871 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/photoprism/photoprism/internal/event"
|
|
"github.com/photoprism/photoprism/internal/get"
|
|
"github.com/photoprism/photoprism/pkg/clean"
|
|
)
|
|
|
|
// DeleteSession deletes an existing client session (logout).
|
|
//
|
|
// DELETE /api/v1/session/:id
|
|
func DeleteSession(router *gin.RouterGroup) {
|
|
router.DELETE("/session/:id", func(c *gin.Context) {
|
|
id := clean.ID(c.Param("id"))
|
|
|
|
if id == "" {
|
|
AbortBadRequest(c)
|
|
return
|
|
} else if get.Config().Public() {
|
|
c.JSON(http.StatusOK, gin.H{"status": "authentication disabled", "id": id})
|
|
return
|
|
}
|
|
|
|
if err := get.Session().Delete(id); err != nil {
|
|
event.AuditErr([]string{ClientIP(c), "session %s"}, err)
|
|
} else {
|
|
event.AuditDebug([]string{ClientIP(c), "session deleted"})
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{"status": "ok", "id": id})
|
|
})
|
|
}
|