mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
e318139b37
* implement notification providers * email provider * notification handler * notify users * implement code sent on user eventstore * send email implementation * send init code * handle codes * fix project member handler * add some logs for debug * send emails * text changes * send sms * notification process * send password code * format phone number * test format phone * remove fmts * remove unused code * rename files * add mocks * merge master * Update internal/notification/providers/email/message.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/notification/repository/eventsourcing/handler/notification.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/notification/repository/eventsourcing/handler/notification.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/notification/providers/email/provider.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * requested changes of mr * move locker to eventstore pkg * Update internal/notification/providers/chat/message.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * move locker to eventstore pkg * linebreak * Update internal/notification/providers/email/provider.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/notification/repository/eventsourcing/handler/notification.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/notification/repository/eventsourcing/handler/notification.go Co-authored-by: Silvan <silvan.reusser@gmail.com> Co-authored-by: Silvan <silvan.reusser@gmail.com> Co-authored-by: Livio Amstutz <livio.a@gmail.com>
128 lines
2.7 KiB
Go
128 lines
2.7 KiB
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/caos/zitadel/internal/crypto"
|
|
es_models "github.com/caos/zitadel/internal/eventstore/models"
|
|
)
|
|
|
|
type User struct {
|
|
es_models.ObjectRoot
|
|
|
|
State UserState
|
|
*Password
|
|
*Profile
|
|
*Email
|
|
*Phone
|
|
*Address
|
|
InitCode *InitUserCode
|
|
EmailCode *EmailCode
|
|
PhoneCode *PhoneCode
|
|
PasswordCode *PasswordCode
|
|
OTP *OTP
|
|
}
|
|
|
|
type InitUserCode struct {
|
|
es_models.ObjectRoot
|
|
|
|
Code *crypto.CryptoValue
|
|
Expiry time.Duration
|
|
}
|
|
|
|
type UserState int32
|
|
|
|
const (
|
|
USERSTATE_UNSPECIFIED UserState = iota
|
|
USERSTATE_ACTIVE
|
|
USERSTATE_INACTIVE
|
|
USERSTATE_DELETED
|
|
USERSTATE_LOCKED
|
|
USERSTATE_SUSPEND
|
|
USERSTATE_INITIAL
|
|
)
|
|
|
|
type Gender int32
|
|
|
|
const (
|
|
GENDER_UNDEFINED Gender = iota
|
|
GENDER_FEMALE
|
|
GENDER_MALE
|
|
GENDER_DIVERSE
|
|
)
|
|
|
|
func (u *User) SetEmailAsUsername() {
|
|
if u.Profile != nil && u.UserName == "" && u.Email != nil {
|
|
u.UserName = u.EmailAddress
|
|
}
|
|
}
|
|
|
|
func (u *User) IsValid() bool {
|
|
return u.Profile != nil && u.FirstName != "" && u.LastName != "" && u.UserName != "" && u.Email != nil && u.Email.IsValid() && u.Phone == nil || (u.Phone != nil && u.Phone.IsValid())
|
|
}
|
|
|
|
func (u *User) IsInitialState() bool {
|
|
return u.Email == nil || !u.IsEmailVerified || u.Password == nil || u.SecretString == ""
|
|
}
|
|
|
|
func (u *User) IsActive() bool {
|
|
return u.State == USERSTATE_ACTIVE
|
|
}
|
|
|
|
func (u *User) IsInitial() bool {
|
|
return u.State == USERSTATE_INITIAL
|
|
}
|
|
|
|
func (u *User) IsInactive() bool {
|
|
return u.State == USERSTATE_INACTIVE
|
|
}
|
|
|
|
func (u *User) IsLocked() bool {
|
|
return u.State == USERSTATE_LOCKED
|
|
}
|
|
|
|
func (u *User) IsOTPReady() bool {
|
|
return u.OTP != nil && u.OTP.State == MFASTATE_READY
|
|
}
|
|
|
|
func (u *User) HashPasswordIfExisting(passwordAlg crypto.HashAlgorithm, onetime bool) error {
|
|
if u.Password != nil {
|
|
return u.Password.HashPasswordIfExisting(passwordAlg, onetime)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (u *User) GenerateInitCodeIfNeeded(initGenerator crypto.Generator) error {
|
|
if !u.IsInitialState() {
|
|
return nil
|
|
}
|
|
u.InitCode = new(InitUserCode)
|
|
return u.InitCode.GenerateInitUserCode(initGenerator)
|
|
}
|
|
|
|
func (u *User) GeneratePhoneCodeIfNeeded(phoneGenerator crypto.Generator) error {
|
|
if u.Phone == nil || u.IsPhoneVerified {
|
|
return nil
|
|
}
|
|
u.PhoneCode = new(PhoneCode)
|
|
return u.PhoneCode.GeneratePhoneCode(phoneGenerator)
|
|
}
|
|
|
|
func (u *User) GenerateEmailCodeIfNeeded(emailGenerator crypto.Generator) error {
|
|
if u.Email == nil || u.IsEmailVerified {
|
|
return nil
|
|
}
|
|
u.EmailCode = new(EmailCode)
|
|
return u.EmailCode.GenerateEmailCode(emailGenerator)
|
|
}
|
|
|
|
func (init *InitUserCode) GenerateInitUserCode(generator crypto.Generator) error {
|
|
initCodeCrypto, _, err := crypto.NewCode(generator)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
init.Code = initCodeCrypto
|
|
init.Expiry = generator.Expiry()
|
|
return nil
|
|
}
|