45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
package authstore
|
|
|
|
import (
|
|
"crypto/sha256"
|
|
"encoding/base64"
|
|
"errors"
|
|
"time"
|
|
)
|
|
|
|
var ErrExists = errors.New("token already exists")
|
|
|
|
type Authorization struct {
|
|
ID string `db:"id,omitempty" json:"-"`
|
|
|
|
MachinePPID string `db:"machine_ppid,omitempty" json:"machine_ppid,omitempty"`
|
|
PublicKey string `db:"public_key,omitempty" json:"public_key,omitempty"`
|
|
SharedKey string `db:"shared_key,omitempty" json:"shared_key"`
|
|
Slug string `db:"slug,omitempty" json:"slug"`
|
|
|
|
CreatedAt time.Time `db:"created_at,omitempty" json:"created_at,omitempty"`
|
|
UpdatedAt time.Time `db:"updated_at,omitempty" json:"updated_at,omitempty"`
|
|
DeletedAt time.Time `db:"deleted_at,omitempty" json:"-"`
|
|
}
|
|
|
|
type Store interface {
|
|
SetMaster(secret string) error
|
|
Add(auth *Authorization) error
|
|
Set(auth *Authorization) error
|
|
Touch(id string) error
|
|
Get(id string) (*Authorization, error)
|
|
GetBySlug(id string) (*Authorization, error)
|
|
GetByPub(id string) (*Authorization, error)
|
|
Delete(auth *Authorization) error
|
|
Close() error
|
|
}
|
|
|
|
func ToPublicKeyString(secret string) string {
|
|
pubBytes := sha256.Sum256([]byte(secret))
|
|
pub := base64.RawURLEncoding.EncodeToString(pubBytes[:])
|
|
if len(pub) > 24 {
|
|
pub = pub[:24]
|
|
}
|
|
return pub
|
|
}
|