mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
45 lines
923 B
Go
45 lines
923 B
Go
|
package model
|
||
|
|
||
|
import (
|
||
|
"github.com/caos/zitadel/internal/crypto"
|
||
|
es_models "github.com/caos/zitadel/internal/eventstore/models"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type Email struct {
|
||
|
es_models.ObjectRoot
|
||
|
|
||
|
EmailAddress string
|
||
|
IsEmailVerified bool
|
||
|
}
|
||
|
|
||
|
type EmailCode struct {
|
||
|
es_models.ObjectRoot
|
||
|
|
||
|
Code *crypto.CryptoValue
|
||
|
Expiry time.Duration
|
||
|
}
|
||
|
|
||
|
func (e *Email) IsValid() bool {
|
||
|
return e.EmailAddress != ""
|
||
|
}
|
||
|
|
||
|
func (e *Email) GenerateEmailCodeIfNeeded(emailGenerator crypto.Generator) (*EmailCode, error) {
|
||
|
var emailCode *EmailCode
|
||
|
if e.IsEmailVerified {
|
||
|
return emailCode, nil
|
||
|
}
|
||
|
emailCode = new(EmailCode)
|
||
|
return emailCode, emailCode.GenerateEmailCode(emailGenerator)
|
||
|
}
|
||
|
|
||
|
func (code *EmailCode) GenerateEmailCode(emailGenerator crypto.Generator) error {
|
||
|
emailCodeCrypto, _, err := crypto.NewCode(emailGenerator)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
code.Code = emailCodeCrypto
|
||
|
code.Expiry = emailGenerator.Expiry()
|
||
|
return nil
|
||
|
}
|