Create a function to generate a token
This commit is contained in:
parent
6862ef1bc0
commit
6b7ce5b719
42
internal/models/tokens.go
Normal file
42
internal/models/tokens.go
Normal file
@ -0,0 +1,42 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"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
|
||||
}
|
Loading…
Reference in New Issue
Block a user