2021-01-07 16:06:45 +01:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-02-23 15:13:04 +01:00
|
|
|
"github.com/caos/zitadel/internal/eventstore"
|
2021-02-18 14:48:27 +01:00
|
|
|
|
2021-01-15 09:32:59 +01:00
|
|
|
"github.com/caos/logging"
|
|
|
|
"github.com/caos/zitadel/internal/crypto"
|
2021-02-23 15:13:04 +01:00
|
|
|
"github.com/caos/zitadel/internal/domain"
|
2021-01-07 16:06:45 +01:00
|
|
|
caos_errs "github.com/caos/zitadel/internal/errors"
|
2021-02-23 15:13:04 +01:00
|
|
|
"github.com/caos/zitadel/internal/repository/user"
|
2021-01-07 16:06:45 +01:00
|
|
|
"github.com/caos/zitadel/internal/telemetry/tracing"
|
|
|
|
)
|
|
|
|
|
2021-02-24 11:17:39 +01:00
|
|
|
func (c *Commands) ChangeHumanPhone(ctx context.Context, phone *domain.Phone) (*domain.Phone, error) {
|
2021-01-07 16:06:45 +01:00
|
|
|
if !phone.IsValid() {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "COMMAND-6M0ds", "Errors.Phone.Invalid")
|
|
|
|
}
|
|
|
|
|
2021-02-24 11:17:39 +01:00
|
|
|
existingPhone, err := c.phoneWriteModelByID(ctx, phone.AggregateID, phone.ResourceOwner)
|
2021-01-07 16:06:45 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-03-01 08:48:50 +01:00
|
|
|
if !existingPhone.State.Exists() {
|
2021-01-15 09:32:59 +01:00
|
|
|
return nil, caos_errs.ThrowNotFound(nil, "COMMAND-aM9cs", "Errors.User.Phone.NotFound")
|
2021-01-07 16:06:45 +01:00
|
|
|
}
|
2021-02-18 14:48:27 +01:00
|
|
|
|
|
|
|
userAgg := UserAggregateFromWriteModel(&existingPhone.WriteModel)
|
|
|
|
changedEvent, hasChanged := existingPhone.NewChangedEvent(ctx, userAgg, phone.PhoneNumber)
|
2021-01-07 16:06:45 +01:00
|
|
|
if !hasChanged {
|
|
|
|
return nil, caos_errs.ThrowPreconditionFailed(nil, "COMMAND-wF94r", "Errors.User.Phone.NotChanged")
|
|
|
|
}
|
|
|
|
|
2021-02-18 14:48:27 +01:00
|
|
|
events := []eventstore.EventPusher{changedEvent}
|
2021-01-07 16:06:45 +01:00
|
|
|
if phone.IsPhoneVerified {
|
2021-02-18 14:48:27 +01:00
|
|
|
events = append(events, user.NewHumanPhoneVerifiedEvent(ctx, userAgg))
|
2021-01-07 16:06:45 +01:00
|
|
|
} else {
|
2021-02-24 11:17:39 +01:00
|
|
|
phoneCode, err := domain.NewPhoneCode(c.phoneVerificationCode)
|
2021-01-07 16:06:45 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-02-18 14:48:27 +01:00
|
|
|
events = append(events, user.NewHumanPhoneCodeAddedEvent(ctx, userAgg, phoneCode.Code, phoneCode.Expiry))
|
2021-01-07 16:06:45 +01:00
|
|
|
}
|
|
|
|
|
2021-02-24 11:17:39 +01:00
|
|
|
pushedEvents, err := c.eventstore.PushEvents(ctx, events...)
|
2021-02-18 14:48:27 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
err = AppendAndReduce(existingPhone, pushedEvents...)
|
2021-01-07 16:06:45 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return writeModelToPhone(existingPhone), nil
|
|
|
|
}
|
|
|
|
|
2021-02-24 11:17:39 +01:00
|
|
|
func (c *Commands) VerifyHumanPhone(ctx context.Context, userID, code, resourceowner string) error {
|
2021-01-15 09:32:59 +01:00
|
|
|
if userID == "" {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "COMMAND-Km9ds", "Errors.User.UserIDMissing")
|
|
|
|
}
|
|
|
|
if code == "" {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "COMMAND-wMe9f", "Errors.User.Code.Empty")
|
|
|
|
}
|
|
|
|
|
2021-02-24 11:17:39 +01:00
|
|
|
existingCode, err := c.phoneWriteModelByID(ctx, userID, resourceowner)
|
2021-01-15 09:32:59 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-03-01 08:48:50 +01:00
|
|
|
if !existingCode.State.Exists() {
|
2021-01-15 09:32:59 +01:00
|
|
|
return caos_errs.ThrowNotFound(nil, "COMMAND-Rsj8c", "Errors.User.Code.NotFound")
|
|
|
|
}
|
|
|
|
|
|
|
|
userAgg := UserAggregateFromWriteModel(&existingCode.WriteModel)
|
2021-02-24 11:17:39 +01:00
|
|
|
err = crypto.VerifyCode(existingCode.CodeCreationDate, existingCode.CodeExpiry, existingCode.Code, code, c.phoneVerificationCode)
|
2021-01-15 09:32:59 +01:00
|
|
|
if err == nil {
|
2021-02-24 11:17:39 +01:00
|
|
|
_, err = c.eventstore.PushEvents(ctx, user.NewHumanPhoneVerifiedEvent(ctx, userAgg))
|
2021-02-18 14:48:27 +01:00
|
|
|
return err
|
2021-01-15 09:32:59 +01:00
|
|
|
}
|
2021-02-24 11:17:39 +01:00
|
|
|
_, err = c.eventstore.PushEvents(ctx, user.NewHumanPhoneVerificationFailedEvent(ctx, userAgg))
|
2021-01-15 09:32:59 +01:00
|
|
|
|
2021-02-18 14:48:27 +01:00
|
|
|
logging.LogWithFields("COMMAND-5M9ds", "userID", userAgg.ID).OnError(err).Error("NewHumanPhoneVerificationFailedEvent push failed")
|
2021-01-15 09:32:59 +01:00
|
|
|
return caos_errs.ThrowInvalidArgument(err, "COMMAND-sM0cs", "Errors.User.Code.Invalid")
|
|
|
|
}
|
|
|
|
|
2021-02-24 11:17:39 +01:00
|
|
|
func (c *Commands) CreateHumanPhoneVerificationCode(ctx context.Context, userID, resourceowner string) error {
|
2021-01-07 16:06:45 +01:00
|
|
|
if userID == "" {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "COMMAND-4M0ds", "Errors.User.UserIDMissing")
|
|
|
|
}
|
|
|
|
|
2021-02-24 11:17:39 +01:00
|
|
|
existingPhone, err := c.phoneWriteModelByID(ctx, userID, resourceowner)
|
2021-01-07 16:06:45 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-02-18 14:48:27 +01:00
|
|
|
|
2021-03-01 08:48:50 +01:00
|
|
|
if !existingPhone.State.Exists() {
|
2021-02-08 11:30:30 +01:00
|
|
|
return caos_errs.ThrowNotFound(nil, "COMMAND-2b7Hf", "Errors.User.Phone.NotFound")
|
2021-01-07 16:06:45 +01:00
|
|
|
}
|
|
|
|
if existingPhone.IsPhoneVerified {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "COMMAND-2M9sf", "Errors.User.Phone.AlreadyVerified")
|
|
|
|
}
|
2021-02-18 14:48:27 +01:00
|
|
|
|
2021-02-24 11:17:39 +01:00
|
|
|
phoneCode, err := domain.NewPhoneCode(c.phoneVerificationCode)
|
2021-01-07 16:06:45 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-02-18 14:48:27 +01:00
|
|
|
|
|
|
|
userAgg := UserAggregateFromWriteModel(&existingPhone.WriteModel)
|
2021-02-24 11:17:39 +01:00
|
|
|
_, err = c.eventstore.PushEvents(ctx, user.NewHumanPhoneCodeAddedEvent(ctx, userAgg, phoneCode.Code, phoneCode.Expiry))
|
2021-02-18 14:48:27 +01:00
|
|
|
return err
|
2021-01-07 16:06:45 +01:00
|
|
|
}
|
|
|
|
|
2021-02-24 11:17:39 +01:00
|
|
|
func (c *Commands) HumanPhoneVerificationCodeSent(ctx context.Context, orgID, userID string) (err error) {
|
|
|
|
existingPhone, err := c.phoneWriteModelByID(ctx, userID, orgID)
|
2021-02-08 11:30:30 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-03-01 08:48:50 +01:00
|
|
|
if !existingPhone.State.Exists() {
|
2021-02-08 11:30:30 +01:00
|
|
|
return caos_errs.ThrowNotFound(nil, "COMMAND-66n8J", "Errors.User.Phone.NotFound")
|
|
|
|
}
|
2021-02-18 14:48:27 +01:00
|
|
|
|
2021-02-08 11:30:30 +01:00
|
|
|
userAgg := UserAggregateFromWriteModel(&existingPhone.WriteModel)
|
2021-02-24 11:17:39 +01:00
|
|
|
_, err = c.eventstore.PushEvents(ctx, user.NewHumanPhoneCodeSentEvent(ctx, userAgg))
|
2021-02-18 14:48:27 +01:00
|
|
|
return err
|
2021-02-08 11:30:30 +01:00
|
|
|
}
|
|
|
|
|
2021-02-24 11:17:39 +01:00
|
|
|
func (c *Commands) RemoveHumanPhone(ctx context.Context, userID, resourceOwner string) error {
|
2021-01-07 16:06:45 +01:00
|
|
|
if userID == "" {
|
|
|
|
return caos_errs.ThrowPreconditionFailed(nil, "COMMAND-6M0ds", "Errors.User.UserIDMissing")
|
|
|
|
}
|
|
|
|
|
2021-02-24 11:17:39 +01:00
|
|
|
existingPhone, err := c.phoneWriteModelByID(ctx, userID, resourceOwner)
|
2021-01-07 16:06:45 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-03-01 08:48:50 +01:00
|
|
|
if !existingPhone.State.Exists() {
|
2021-01-15 09:32:59 +01:00
|
|
|
return caos_errs.ThrowNotFound(nil, "COMMAND-p6rsc", "Errors.User.Phone.NotFound")
|
2021-01-07 16:06:45 +01:00
|
|
|
}
|
2021-02-18 14:48:27 +01:00
|
|
|
|
2021-01-07 16:06:45 +01:00
|
|
|
userAgg := UserAggregateFromWriteModel(&existingPhone.WriteModel)
|
2021-02-24 11:17:39 +01:00
|
|
|
_, err = c.eventstore.PushEvents(ctx, user.NewHumanPhoneRemovedEvent(ctx, userAgg))
|
2021-02-18 14:48:27 +01:00
|
|
|
return err
|
2021-01-07 16:06:45 +01:00
|
|
|
}
|
|
|
|
|
2021-02-24 11:17:39 +01:00
|
|
|
func (c *Commands) phoneWriteModelByID(ctx context.Context, userID, resourceOwner string) (writeModel *HumanPhoneWriteModel, err error) {
|
2021-01-07 16:06:45 +01:00
|
|
|
ctx, span := tracing.NewSpan(ctx)
|
|
|
|
defer func() { span.EndWithError(err) }()
|
|
|
|
|
2021-01-12 12:59:51 +01:00
|
|
|
writeModel = NewHumanPhoneWriteModel(userID, resourceOwner)
|
2021-02-24 11:17:39 +01:00
|
|
|
err = c.eventstore.FilterToQueryReducer(ctx, writeModel)
|
2021-01-07 16:06:45 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return writeModel, nil
|
|
|
|
}
|