mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-16 12:58:00 +00:00
62cdec222e
# Which Problems Are Solved Endpoints to maintain email and phone contact on user v3 are not implemented. # How the Problems Are Solved Add 3 endpoints with SetContactEmail, VerifyContactEmail and ResendContactEmailCode. Add 3 endpoints with SetContactPhone, VerifyContactPhone and ResendContactPhoneCode. Refactor the logic how contact is managed in the user creation and update. # Additional Changes None # Additional Context - part of https://github.com/zitadel/zitadel/issues/6433 --------- Co-authored-by: Livio Spring <livio.a@gmail.com>
108 lines
2.8 KiB
Go
108 lines
2.8 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/zitadel/zitadel/internal/crypto"
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
|
)
|
|
|
|
type ChangeSchemaUserPhone struct {
|
|
ResourceOwner string
|
|
ID string
|
|
|
|
Phone *Phone
|
|
ReturnCode *string
|
|
}
|
|
|
|
func (s *ChangeSchemaUserPhone) Valid() (err error) {
|
|
if s.ID == "" {
|
|
return zerrors.ThrowInvalidArgument(nil, "COMMAND-DkQ9aurv5u", "Errors.IDMissing")
|
|
}
|
|
if s.Phone != nil && s.Phone.Number != "" {
|
|
if s.Phone.Number, err = s.Phone.Number.Normalize(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *Commands) ChangeSchemaUserPhone(ctx context.Context, user *ChangeSchemaUserPhone) (_ *domain.ObjectDetails, err error) {
|
|
if err := user.Valid(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
writeModel, err := c.getSchemaUserPhoneWriteModelByID(ctx, user.ResourceOwner, user.ID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
events, plainCode, err := writeModel.NewPhoneUpdate(ctx,
|
|
user.Phone,
|
|
func(ctx context.Context) (*EncryptedCode, error) {
|
|
return c.newPhoneCode(ctx, c.eventstore.Filter, c.userEncryption) //nolint:staticcheck
|
|
},
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if plainCode != "" {
|
|
user.ReturnCode = &plainCode
|
|
}
|
|
return c.pushAppendAndReduceDetails(ctx, writeModel, events...)
|
|
}
|
|
|
|
func (c *Commands) VerifySchemaUserPhone(ctx context.Context, resourceOwner, id, code string) (*domain.ObjectDetails, error) {
|
|
if id == "" {
|
|
return nil, zerrors.ThrowInvalidArgument(nil, "COMMAND-R4LKY44Ke3", "Errors.IDMissing")
|
|
}
|
|
writeModel, err := c.getSchemaUserPhoneWriteModelByID(ctx, resourceOwner, id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
events, err := writeModel.NewPhoneVerify(ctx,
|
|
func(creationDate time.Time, expiry time.Duration, cryptoCode *crypto.CryptoValue) error {
|
|
return crypto.VerifyCode(creationDate, expiry, cryptoCode, code, c.userEncryption)
|
|
},
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return c.pushAppendAndReduceDetails(ctx, writeModel, events...)
|
|
}
|
|
|
|
type ResendSchemaUserPhoneCode struct {
|
|
ResourceOwner string
|
|
ID string
|
|
|
|
ReturnCode bool
|
|
PlainCode *string
|
|
}
|
|
|
|
func (c *Commands) ResendSchemaUserPhoneCode(ctx context.Context, user *ResendSchemaUserPhoneCode) (*domain.ObjectDetails, error) {
|
|
if user.ID == "" {
|
|
return nil, zerrors.ThrowInvalidArgument(nil, "COMMAND-zmxIFR2nMo", "Errors.IDMissing")
|
|
}
|
|
writeModel, err := c.getSchemaUserPhoneWriteModelByID(ctx, user.ResourceOwner, user.ID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
events, plainCode, err := writeModel.NewResendPhoneCode(ctx,
|
|
func(ctx context.Context) (*EncryptedCode, error) {
|
|
return c.newPhoneCode(ctx, c.eventstore.Filter, c.userEncryption) //nolint:staticcheck
|
|
},
|
|
user.ReturnCode,
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if plainCode != "" {
|
|
user.PlainCode = &plainCode
|
|
}
|
|
return c.pushAppendAndReduceDetails(ctx, writeModel, events...)
|
|
}
|