photoprism/internal/session/session_get.go
Michael Mayer f5a8c5a45d Auth: Session and ACL enhancements #98 #1746
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-09-28 09:01:17 +02:00

24 lines
453 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("new")
}
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
}