mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-05 14:37:45 +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>
103 lines
2.6 KiB
Go
103 lines
2.6 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"
|
|
"time"
|
|
)
|
|
|
|
type Email struct {
|
|
es_models.ObjectRoot
|
|
|
|
EmailAddress string `json:"email,omitempty"`
|
|
IsEmailVerified bool `json:"-"`
|
|
|
|
isEmailUnique bool `json:"-"`
|
|
}
|
|
|
|
type EmailCode struct {
|
|
es_models.ObjectRoot
|
|
|
|
Code *crypto.CryptoValue `json:"code,omitempty"`
|
|
Expiry time.Duration `json:"expiry,omitempty"`
|
|
}
|
|
|
|
func (e *Email) Changes(changed *Email) map[string]interface{} {
|
|
changes := make(map[string]interface{}, 1)
|
|
if changed.EmailAddress != "" && e.EmailAddress != changed.EmailAddress {
|
|
changes["email"] = changed.EmailAddress
|
|
}
|
|
return changes
|
|
}
|
|
|
|
func EmailFromModel(email *model.Email) *Email {
|
|
return &Email{
|
|
ObjectRoot: email.ObjectRoot,
|
|
EmailAddress: email.EmailAddress,
|
|
IsEmailVerified: email.IsEmailVerified,
|
|
}
|
|
}
|
|
|
|
func EmailToModel(email *Email) *model.Email {
|
|
return &model.Email{
|
|
ObjectRoot: email.ObjectRoot,
|
|
EmailAddress: email.EmailAddress,
|
|
IsEmailVerified: email.IsEmailVerified,
|
|
}
|
|
}
|
|
|
|
func EmailCodeFromModel(code *model.EmailCode) *EmailCode {
|
|
if code == nil {
|
|
return nil
|
|
}
|
|
return &EmailCode{
|
|
ObjectRoot: code.ObjectRoot,
|
|
Expiry: code.Expiry,
|
|
Code: code.Code,
|
|
}
|
|
}
|
|
|
|
func EmailCodeToModel(code *EmailCode) *model.EmailCode {
|
|
return &model.EmailCode{
|
|
ObjectRoot: code.ObjectRoot,
|
|
Expiry: code.Expiry,
|
|
Code: code.Code,
|
|
}
|
|
}
|
|
|
|
func (u *User) appendUserEmailChangedEvent(event *es_models.Event) error {
|
|
u.Email = new(Email)
|
|
return u.Email.setData(event)
|
|
}
|
|
|
|
func (u *User) appendUserEmailCodeAddedEvent(event *es_models.Event) error {
|
|
u.EmailCode = new(EmailCode)
|
|
return u.EmailCode.SetData(event)
|
|
}
|
|
|
|
func (u *User) appendUserEmailVerifiedEvent() {
|
|
u.IsEmailVerified = true
|
|
}
|
|
|
|
func (a *Email) setData(event *es_models.Event) error {
|
|
a.ObjectRoot.AppendEvent(event)
|
|
if err := json.Unmarshal(event.Data, a); err != nil {
|
|
logging.Log("EVEN-dlo9s").WithError(err).Error("could not unmarshal event data")
|
|
return caos_errs.ThrowInternal(err, "MODEL-sl9xw", "could not unmarshal event")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (a *EmailCode) SetData(event *es_models.Event) error {
|
|
a.ObjectRoot.AppendEvent(event)
|
|
if err := json.Unmarshal(event.Data, a); err != nil {
|
|
logging.Log("EVEN-lo9s").WithError(err).Error("could not unmarshal event data")
|
|
return caos_errs.ThrowInternal(err, "MODEL-s8uws", "could not unmarshal event")
|
|
}
|
|
return nil
|
|
}
|