2020-05-18 10:06:36 +00:00
|
|
|
package eventstore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/caos/zitadel/internal/api/auth"
|
|
|
|
"github.com/caos/zitadel/internal/auth/repository/eventsourcing/view"
|
|
|
|
"github.com/caos/zitadel/internal/errors"
|
|
|
|
es_models "github.com/caos/zitadel/internal/eventstore/models"
|
2020-05-29 06:44:01 +00:00
|
|
|
policy_event "github.com/caos/zitadel/internal/policy/repository/eventsourcing"
|
2020-05-18 10:06:36 +00:00
|
|
|
"github.com/caos/zitadel/internal/user/model"
|
|
|
|
user_event "github.com/caos/zitadel/internal/user/repository/eventsourcing"
|
|
|
|
)
|
|
|
|
|
|
|
|
type UserRepo struct {
|
2020-05-29 06:44:01 +00:00
|
|
|
UserEvents *user_event.UserEventstore
|
|
|
|
PolicyEvents *policy_event.PolicyEventstore
|
|
|
|
View *view.View
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) Health(ctx context.Context) error {
|
|
|
|
return repo.UserEvents.Health(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) Register(ctx context.Context, user *model.User, resourceOwner string) (*model.User, error) {
|
2020-05-29 06:44:01 +00:00
|
|
|
policyResourceOwner := auth.GetCtxData(ctx).OrgID
|
|
|
|
if resourceOwner != "" {
|
|
|
|
policyResourceOwner = resourceOwner
|
|
|
|
}
|
|
|
|
policy, err := repo.PolicyEvents.GetPasswordComplexityPolicy(ctx, policyResourceOwner)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return repo.UserEvents.RegisterUser(ctx, user, policy, resourceOwner)
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) MyProfile(ctx context.Context) (*model.Profile, error) {
|
|
|
|
return repo.UserEvents.ProfileByID(ctx, auth.GetCtxData(ctx).UserID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) ChangeMyProfile(ctx context.Context, profile *model.Profile) (*model.Profile, error) {
|
|
|
|
if err := checkIDs(ctx, profile.ObjectRoot); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return repo.UserEvents.ChangeProfile(ctx, profile)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) MyEmail(ctx context.Context) (*model.Email, error) {
|
|
|
|
return repo.UserEvents.EmailByID(ctx, auth.GetCtxData(ctx).UserID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) ChangeMyEmail(ctx context.Context, email *model.Email) (*model.Email, error) {
|
|
|
|
if err := checkIDs(ctx, email.ObjectRoot); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return repo.UserEvents.ChangeEmail(ctx, email)
|
|
|
|
}
|
|
|
|
|
2020-06-05 05:50:04 +00:00
|
|
|
func (repo *UserRepo) VerifyEmail(ctx context.Context, userID, code string) error {
|
|
|
|
return repo.UserEvents.VerifyEmail(ctx, userID, code)
|
|
|
|
}
|
|
|
|
|
2020-05-18 10:06:36 +00:00
|
|
|
func (repo *UserRepo) VerifyMyEmail(ctx context.Context, code string) error {
|
|
|
|
return repo.UserEvents.VerifyEmail(ctx, auth.GetCtxData(ctx).UserID, code)
|
|
|
|
}
|
|
|
|
|
2020-06-05 05:50:04 +00:00
|
|
|
func (repo *UserRepo) ResendEmailVerificationMail(ctx context.Context, userID string) error {
|
|
|
|
return repo.UserEvents.CreateEmailVerificationCode(ctx, userID)
|
|
|
|
}
|
|
|
|
|
2020-05-18 10:06:36 +00:00
|
|
|
func (repo *UserRepo) ResendMyEmailVerificationMail(ctx context.Context) error {
|
|
|
|
return repo.UserEvents.CreateEmailVerificationCode(ctx, auth.GetCtxData(ctx).UserID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) MyPhone(ctx context.Context) (*model.Phone, error) {
|
|
|
|
return repo.UserEvents.PhoneByID(ctx, auth.GetCtxData(ctx).UserID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) ChangeMyPhone(ctx context.Context, phone *model.Phone) (*model.Phone, error) {
|
|
|
|
if err := checkIDs(ctx, phone.ObjectRoot); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return repo.UserEvents.ChangePhone(ctx, phone)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) VerifyMyPhone(ctx context.Context, code string) error {
|
|
|
|
return repo.UserEvents.VerifyPhone(ctx, auth.GetCtxData(ctx).UserID, code)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) ResendMyPhoneVerificationCode(ctx context.Context) error {
|
|
|
|
return repo.UserEvents.CreatePhoneVerificationCode(ctx, auth.GetCtxData(ctx).UserID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) MyAddress(ctx context.Context) (*model.Address, error) {
|
|
|
|
return repo.UserEvents.AddressByID(ctx, auth.GetCtxData(ctx).UserID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) ChangeMyAddress(ctx context.Context, address *model.Address) (*model.Address, error) {
|
|
|
|
if err := checkIDs(ctx, address.ObjectRoot); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return repo.UserEvents.ChangeAddress(ctx, address)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) ChangeMyPassword(ctx context.Context, old, new string) error {
|
2020-05-29 06:44:01 +00:00
|
|
|
policy, err := repo.PolicyEvents.GetPasswordComplexityPolicy(ctx, auth.GetCtxData(ctx).OrgID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
_, err = repo.UserEvents.ChangePassword(ctx, policy, auth.GetCtxData(ctx).UserID, old, new)
|
2020-05-18 10:06:36 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-06-05 05:50:04 +00:00
|
|
|
func (repo *UserRepo) ChangePassword(ctx context.Context, userID, old, new string) error {
|
|
|
|
policy, err := repo.PolicyEvents.GetPasswordComplexityPolicy(ctx, auth.GetCtxData(ctx).OrgID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
_, err = repo.UserEvents.ChangePassword(ctx, policy, userID, old, new)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) AddMfaOTP(ctx context.Context, userID string) (*model.OTP, error) {
|
|
|
|
return repo.UserEvents.AddOTP(ctx, userID)
|
|
|
|
}
|
|
|
|
|
2020-05-18 10:06:36 +00:00
|
|
|
func (repo *UserRepo) AddMyMfaOTP(ctx context.Context) (*model.OTP, error) {
|
|
|
|
return repo.UserEvents.AddOTP(ctx, auth.GetCtxData(ctx).UserID)
|
|
|
|
}
|
|
|
|
|
2020-06-05 05:50:04 +00:00
|
|
|
func (repo *UserRepo) VerifyMfaOTPSetup(ctx context.Context, userID, code string) error {
|
|
|
|
return repo.UserEvents.CheckMfaOTPSetup(ctx, userID, code)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) VerifyMyMfaOTPSetup(ctx context.Context, code string) error {
|
2020-05-18 10:06:36 +00:00
|
|
|
return repo.UserEvents.CheckMfaOTPSetup(ctx, auth.GetCtxData(ctx).UserID, code)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) RemoveMyMfaOTP(ctx context.Context) error {
|
|
|
|
return repo.UserEvents.RemoveOTP(ctx, auth.GetCtxData(ctx).UserID)
|
|
|
|
}
|
|
|
|
|
2020-06-05 05:50:04 +00:00
|
|
|
func (repo *UserRepo) ResendInitVerificationMail(ctx context.Context, userID string) error {
|
|
|
|
_, err := repo.UserEvents.CreateInitializeUserCodeByID(ctx, userID)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) VerifyInitCode(ctx context.Context, userID, code, password string) error {
|
|
|
|
policy, err := repo.PolicyEvents.GetPasswordComplexityPolicy(ctx, auth.GetCtxData(ctx).OrgID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return repo.UserEvents.VerifyInitCode(ctx, policy, userID, code, password)
|
|
|
|
}
|
|
|
|
|
2020-05-18 10:06:36 +00:00
|
|
|
func (repo *UserRepo) SkipMfaInit(ctx context.Context, userID string) error {
|
|
|
|
return repo.UserEvents.SkipMfaInit(ctx, userID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) RequestPasswordReset(ctx context.Context, username string) error {
|
|
|
|
user, err := repo.View.UserByUsername(username)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return repo.UserEvents.RequestSetPassword(ctx, user.ID, model.NOTIFICATIONTYPE_EMAIL)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) SetPassword(ctx context.Context, userID, code, password string) error {
|
2020-05-29 06:44:01 +00:00
|
|
|
policy, err := repo.PolicyEvents.GetPasswordComplexityPolicy(ctx, auth.GetCtxData(ctx).OrgID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return repo.UserEvents.SetPassword(ctx, policy, userID, code, password)
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) SignOut(ctx context.Context, agentID, userID string) error {
|
|
|
|
return repo.UserEvents.SignOut(ctx, agentID, userID)
|
|
|
|
}
|
|
|
|
|
2020-06-05 05:50:04 +00:00
|
|
|
func (repo *UserRepo) UserByID(ctx context.Context, userID string) (*model.User, error) {
|
|
|
|
return repo.UserEvents.UserByID(ctx, userID)
|
|
|
|
}
|
|
|
|
|
2020-05-18 10:06:36 +00:00
|
|
|
func checkIDs(ctx context.Context, obj es_models.ObjectRoot) error {
|
|
|
|
if obj.AggregateID != auth.GetCtxData(ctx).UserID {
|
|
|
|
return errors.ThrowPermissionDenied(nil, "EVENT-kFi9w", "object does not belong to user")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|