blasphem/pkg/auth/store.go

56 lines
950 B
Go
Raw Normal View History

2022-11-12 15:56:17 -05:00
package auth
import (
"encoding/json"
2022-11-12 17:42:51 -05:00
"fmt"
2022-11-12 15:56:17 -05:00
"dynatron.me/x/blasphem/pkg/storage"
)
const (
AuthStoreKey = "auth"
)
type AuthStore interface {
2022-11-12 17:50:01 -05:00
User(UserID) *User
2022-11-12 15:56:17 -05:00
}
type authStore struct {
2022-11-12 17:42:51 -05:00
Users []User `json:"users"`
Groups interface{} `json:"groups"`
2022-11-12 15:56:17 -05:00
Credentials []Credential `json:"credentials"`
userMap map[UserID]*User
}
func (a *Authenticator) newAuthStore(s storage.Store) (as *authStore, err error) {
as = &authStore{}
err = s.Get(AuthStoreKey, as)
as.userMap = make(map[UserID]*User)
for _, u := range as.Users {
as.userMap[u.ID] = &u
}
for _, c := range as.Credentials {
prov := a.Provider(c.AuthProviderType)
if prov == nil {
return nil, fmt.Errorf("no such provider %s", c.AuthProviderType)
}
pd := prov.NewCredData()
err := json.Unmarshal(c.DataRaw, pd)
if err != nil {
return nil, err
}
}
return
}
2022-11-12 17:50:01 -05:00
func (s *authStore) User(uid UserID) *User {
return s.userMap[uid]
}