-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
Copy pathsession.go
50 lines (41 loc) · 1.36 KB
/
session.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package platform
import (
"context"
"fmt"
"time"
)
// Session is a user session.
type Session struct {
// ID is only required for auditing purposes.
ID ID `json:"id"`
Key string `json:"key"`
CreatedAt time.Time `json:"createdAt"`
ExpiresAt time.Time `json:"expiresAt"`
UserID ID `json:"userID,omitempty"`
Permissions []Permission `json:"permissions,omitempty"`
}
// Expired returns an error if the session is expired.
func (s *Session) Expired() error {
if time.Now().After(s.ExpiresAt) {
return fmt.Errorf("session has expired")
}
return nil
}
// Allowed returns true if the authorization is unexpired and request permission
// exists in the sessions list of permissions.
func (s *Session) Allowed(p Permission) bool {
if err := s.Expired(); err != nil {
return false
}
return allowed(p, s.Permissions)
}
// Kind returns session and is used for auditing.
func (s *Session) Kind() string { return "session" }
// Identifier returns the sessions ID and is used for auditing.
func (s *Session) Identifier() ID { return s.ID }
// SessionService represents a service for managing user sessions.
type SessionService interface {
FindSession(ctx context.Context, key string) (*Session, error)
ExpireSession(ctx context.Context, key string) error
CreateSession(ctx context.Context, user string) (*Session, error)
}