mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-01 02:57:17 +00:00
43 lines
604 B
Go
43 lines
604 B
Go
package repo
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"bloat/kv"
|
|
"bloat/model"
|
|
)
|
|
|
|
type sessionRepo struct {
|
|
db *kv.Database
|
|
}
|
|
|
|
func NewSessionRepo(db *kv.Database) *sessionRepo {
|
|
return &sessionRepo{
|
|
db: db,
|
|
}
|
|
}
|
|
|
|
func (repo *sessionRepo) Add(s model.Session) (err error) {
|
|
data, err := json.Marshal(s)
|
|
if err != nil {
|
|
return
|
|
}
|
|
err = repo.db.Set(s.ID, data)
|
|
return
|
|
}
|
|
|
|
func (repo *sessionRepo) Get(id string) (s model.Session, err error) {
|
|
data, err := repo.db.Get(id)
|
|
if err != nil {
|
|
err = model.ErrSessionNotFound
|
|
return
|
|
}
|
|
|
|
err = json.Unmarshal(data, &s)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
return
|
|
}
|