aboutsummaryrefslogtreecommitdiff
path: root/model/session.go
blob: fce6173159fc0d91f624d450596121f525f8ef57 (plain)
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
package model

import (
	"errors"
)

var (
	ErrSessionNotFound = errors.New("session not found")
)

type Session struct {
	ID             string   `json:"id"`
	InstanceDomain string   `json:"instance_domain"`
	AccessToken    string   `json:"access_token"`
	Settings       Settings `json:"settings"`
}

type SessionRepository interface {
	Add(session Session) (err error)
	Get(sessionID string) (session Session, err error)
}

func (s Session) IsLoggedIn() bool {
	return len(s.AccessToken) > 0
}