2021-01-05 08:33:45 +00:00
|
|
|
package domain
|
|
|
|
|
|
|
|
import (
|
2022-04-12 14:20:17 +00:00
|
|
|
"time"
|
|
|
|
|
2021-01-05 08:33:45 +00:00
|
|
|
"github.com/ttacon/libphonenumber"
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/crypto"
|
|
|
|
caos_errs "github.com/zitadel/zitadel/internal/errors"
|
|
|
|
es_models "github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
2021-01-05 08:33:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
defaultRegion = "CH"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Phone struct {
|
|
|
|
es_models.ObjectRoot
|
|
|
|
|
|
|
|
PhoneNumber string
|
|
|
|
IsPhoneVerified bool
|
|
|
|
}
|
|
|
|
|
|
|
|
type PhoneCode struct {
|
|
|
|
es_models.ObjectRoot
|
|
|
|
|
|
|
|
Code *crypto.CryptoValue
|
|
|
|
Expiry time.Duration
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Phone) IsValid() bool {
|
|
|
|
err := p.formatPhone()
|
|
|
|
return p.PhoneNumber != "" && err == nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Phone) formatPhone() error {
|
|
|
|
phoneNr, err := libphonenumber.Parse(p.PhoneNumber, defaultRegion)
|
|
|
|
if err != nil {
|
2021-03-19 10:12:56 +00:00
|
|
|
return caos_errs.ThrowInvalidArgument(nil, "EVENT-so0wa", "Errors.User.Phone.Invalid")
|
2021-01-05 08:33:45 +00:00
|
|
|
}
|
|
|
|
p.PhoneNumber = libphonenumber.Format(phoneNr, libphonenumber.E164)
|
|
|
|
return nil
|
|
|
|
}
|
2021-01-06 10:12:56 +00:00
|
|
|
|
|
|
|
func NewPhoneCode(phoneGenerator crypto.Generator) (*PhoneCode, error) {
|
|
|
|
phoneCodeCrypto, _, err := crypto.NewCode(phoneGenerator)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &PhoneCode{
|
|
|
|
Code: phoneCodeCrypto,
|
|
|
|
Expiry: phoneGenerator.Expiry(),
|
|
|
|
}, nil
|
|
|
|
}
|
2021-01-07 15:06:45 +00:00
|
|
|
|
|
|
|
type PhoneState int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
PhoneStateUnspecified PhoneState = iota
|
|
|
|
PhoneStateActive
|
|
|
|
PhoneStateRemoved
|
|
|
|
|
|
|
|
phoneStateCount
|
|
|
|
)
|
|
|
|
|
|
|
|
func (s PhoneState) Valid() bool {
|
|
|
|
return s >= 0 && s < phoneStateCount
|
|
|
|
}
|
2021-03-01 07:48:50 +00:00
|
|
|
|
|
|
|
func (s PhoneState) Exists() bool {
|
|
|
|
return s == PhoneStateActive
|
|
|
|
}
|