74 lines
1.5 KiB
Go
74 lines
1.5 KiB
Go
package models
|
|
|
|
import (
|
|
"context"
|
|
"crypto/rand"
|
|
"crypto/sha256"
|
|
"encoding/base32"
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
ScopeAuthentication = "authentication"
|
|
)
|
|
|
|
// Token is the type for authentication tokens
|
|
type Token struct {
|
|
PlainText string `json:"token"`
|
|
UserID int64 `json:"-"`
|
|
Hash []byte `json:"-"`
|
|
Expiry time.Time `json:"expiry"`
|
|
Scope string `json:"-"`
|
|
}
|
|
|
|
// GenerateToken Generates a token that lasts for ttl, and returns it
|
|
func GenerateToken(userID int, ttl time.Duration, scope string) (*Token, error) {
|
|
token := &Token{
|
|
UserID: int64(userID),
|
|
Expiry: time.Now().Add(ttl),
|
|
Scope: scope,
|
|
}
|
|
|
|
randomBytes := make([]byte, 16)
|
|
_, err := rand.Read(randomBytes)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
token.PlainText = base32.StdEncoding.WithPadding((base32.NoPadding)).
|
|
EncodeToString((randomBytes))
|
|
hash := sha256.Sum256([]byte(token.PlainText))
|
|
token.Hash = hash[:]
|
|
return token, nil
|
|
}
|
|
|
|
func (m *DBModel) InsertToken(t *Token, u User) error {
|
|
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
|
|
defer cancel()
|
|
|
|
// delete existing tokens
|
|
stmt := `DELETE FROM tokens WHERE user_id = ?`
|
|
|
|
_, err := m.DB.ExecContext(ctx, stmt, u.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
stmt = `INSERT INTO tokens
|
|
(user_id, name, email, token_hash, created_at, updated_at)
|
|
VALUES (?, ?, ?, ?, ?, ?)`
|
|
|
|
_, err = m.DB.ExecContext(ctx, stmt,
|
|
u.ID,
|
|
u.LastName,
|
|
u.Email,
|
|
t.Hash,
|
|
time.Now(),
|
|
time.Now(),
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|