mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
58 lines
1.3 KiB
Go
58 lines
1.3 KiB
Go
|
package model
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"github.com/caos/logging"
|
||
|
"github.com/caos/zitadel/internal/crypto"
|
||
|
caos_errs "github.com/caos/zitadel/internal/errors"
|
||
|
es_models "github.com/caos/zitadel/internal/eventstore/models"
|
||
|
"github.com/caos/zitadel/internal/user/model"
|
||
|
)
|
||
|
|
||
|
type OTP struct {
|
||
|
es_models.ObjectRoot
|
||
|
|
||
|
Secret *crypto.CryptoValue `json:"otpSecret,omitempty"`
|
||
|
State int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func OTPFromModel(otp *model.OTP) *OTP {
|
||
|
return &OTP{
|
||
|
ObjectRoot: otp.ObjectRoot,
|
||
|
Secret: otp.Secret,
|
||
|
State: int32(otp.State),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func OTPToModel(otp *OTP) *model.OTP {
|
||
|
return &model.OTP{
|
||
|
ObjectRoot: otp.ObjectRoot,
|
||
|
Secret: otp.Secret,
|
||
|
State: model.MfaState(otp.State),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (u *User) appendOtpAddedEvent(event *es_models.Event) error {
|
||
|
u.OTP = &OTP{
|
||
|
State: int32(model.MFASTATE_NOTREADY),
|
||
|
}
|
||
|
return u.OTP.setData(event)
|
||
|
}
|
||
|
|
||
|
func (u *User) appendOtpVerifiedEvent() {
|
||
|
u.OTP.State = int32(model.MFASTATE_READY)
|
||
|
}
|
||
|
|
||
|
func (u *User) appendOtpRemovedEvent() {
|
||
|
u.OTP = nil
|
||
|
}
|
||
|
|
||
|
func (o *OTP) setData(event *es_models.Event) error {
|
||
|
o.ObjectRoot.AppendEvent(event)
|
||
|
if err := json.Unmarshal(event.Data, o); err != nil {
|
||
|
logging.Log("EVEN-d9soe").WithError(err).Error("could not unmarshal event data")
|
||
|
return caos_errs.ThrowInternal(err, "MODEL-lo023", "could not unmarshal event")
|
||
|
}
|
||
|
return nil
|
||
|
}
|