photoprism/internal/auth/session/session_get.go
Michael Mayer fb186bf34d Backend: Move session package to /internal/auth/session
Signed-off-by: Michael Mayer <michael@photoprism.app>
2024-07-02 08:11:17 +02:00

23 lines
473 B
Go

package session
import (
"fmt"
"github.com/photoprism/photoprism/internal/entity"
)
// Get returns an existing client session.
func (s *Session) Get(id string) (m *entity.Session, err error) {
if id == "" {
return &entity.Session{}, fmt.Errorf("session id is missing")
}
return entity.FindSession(id)
}
// Exists checks whether a client session with the specified ID exists.
func (s *Session) Exists(id string) bool {
_, err := s.Get(id)
return err == nil
}