mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
959530ddad
* fix: correct selectors for extended writemodel * fix: no previous checks in eventstore * start check previous * feat: auth user commands * feat: auth user commands * feat: auth user commands * feat: otp * feat: corrections from pr merge * feat: webauthn * feat: comment old webauthn * feat: refactor user, human, machine * feat: webauth command side * feat: command and query side in login * feat: fix user writemodel append events * fix: remove creation dates on command side * fix: remove previous sequence * previous sequence * fix: external idps * Update internal/api/grpc/management/user.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * Update internal/v2/command/user_human_email.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: pr changes * fix: phone verification Co-authored-by: adlerhurst <silvan.reusser@gmail.com> Co-authored-by: Livio Amstutz <livio.a@gmail.com>
90 lines
2.2 KiB
Go
90 lines
2.2 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/crypto"
|
|
"github.com/caos/zitadel/internal/eventstore/v2"
|
|
"github.com/caos/zitadel/internal/v2/domain"
|
|
"github.com/caos/zitadel/internal/v2/repository/user"
|
|
"time"
|
|
)
|
|
|
|
type HumanPhoneWriteModel struct {
|
|
eventstore.WriteModel
|
|
|
|
Phone string
|
|
IsPhoneVerified bool
|
|
|
|
Code *crypto.CryptoValue
|
|
CodeCreationDate time.Time
|
|
CodeExpiry time.Duration
|
|
|
|
State domain.PhoneState
|
|
}
|
|
|
|
func NewHumanPhoneWriteModel(userID, resourceOwner string) *HumanPhoneWriteModel {
|
|
return &HumanPhoneWriteModel{
|
|
WriteModel: eventstore.WriteModel{
|
|
AggregateID: userID,
|
|
ResourceOwner: resourceOwner,
|
|
},
|
|
}
|
|
}
|
|
|
|
func (wm *HumanPhoneWriteModel) AppendEvents(events ...eventstore.EventReader) {
|
|
wm.WriteModel.AppendEvents(events...)
|
|
}
|
|
|
|
func (wm *HumanPhoneWriteModel) Reduce() error {
|
|
for _, event := range wm.Events {
|
|
switch e := event.(type) {
|
|
case *user.HumanAddedEvent:
|
|
if e.PhoneNumber != "" {
|
|
wm.Phone = e.PhoneNumber
|
|
}
|
|
wm.State = domain.PhoneStateActive
|
|
case *user.HumanRegisteredEvent:
|
|
if e.PhoneNumber != "" {
|
|
wm.Phone = e.PhoneNumber
|
|
wm.State = domain.PhoneStateActive
|
|
}
|
|
case *user.HumanPhoneChangedEvent:
|
|
wm.Phone = e.PhoneNumber
|
|
wm.IsPhoneVerified = false
|
|
wm.State = domain.PhoneStateActive
|
|
wm.Code = nil
|
|
case *user.HumanPhoneVerifiedEvent:
|
|
wm.IsPhoneVerified = true
|
|
wm.Code = nil
|
|
case *user.HumanPhoneCodeAddedEvent:
|
|
wm.Code = e.Code
|
|
wm.CodeCreationDate = e.CreationDate()
|
|
wm.CodeExpiry = e.Expiry
|
|
case *user.HumanPhoneRemovedEvent:
|
|
wm.State = domain.PhoneStateRemoved
|
|
case *user.UserRemovedEvent:
|
|
wm.State = domain.PhoneStateRemoved
|
|
}
|
|
}
|
|
return wm.WriteModel.Reduce()
|
|
}
|
|
|
|
func (wm *HumanPhoneWriteModel) Query() *eventstore.SearchQueryBuilder {
|
|
return eventstore.NewSearchQueryBuilder(eventstore.ColumnsEvent, user.AggregateType).
|
|
AggregateIDs(wm.AggregateID).
|
|
ResourceOwner(wm.ResourceOwner)
|
|
}
|
|
|
|
func (wm *HumanPhoneWriteModel) NewChangedEvent(
|
|
ctx context.Context,
|
|
phone string,
|
|
) (*user.HumanPhoneChangedEvent, bool) {
|
|
hasChanged := false
|
|
changedEvent := user.NewHumanPhoneChangedEvent(ctx)
|
|
if wm.Phone != phone {
|
|
hasChanged = true
|
|
changedEvent.PhoneNumber = phone
|
|
}
|
|
return changedEvent, hasChanged
|
|
}
|