feat(platform): add session service

pull/10616/head
Michael Desa 2018-09-25 15:13:38 -04:00
parent fdbca49c2e
commit d29d1aa698
1 changed files with 23 additions and 0 deletions

23
session.go Normal file
View File

@ -0,0 +1,23 @@
package platform
import (
"context"
"time"
)
// Session is a user session.
type Session struct {
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"`
}
// 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)
}