2020-05-18 10:06:36 +00:00
|
|
|
package eventstore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-06-17 05:25:04 +00:00
|
|
|
"github.com/caos/logging"
|
2020-06-15 12:57:19 +00:00
|
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore/sdk"
|
|
|
|
org_model "github.com/caos/zitadel/internal/org/model"
|
|
|
|
org_event "github.com/caos/zitadel/internal/org/repository/eventsourcing"
|
|
|
|
usr_model "github.com/caos/zitadel/internal/user/repository/eventsourcing/model"
|
2020-06-17 05:25:04 +00:00
|
|
|
usr_view_model "github.com/caos/zitadel/internal/user/repository/view/model"
|
2020-05-18 10:06:36 +00:00
|
|
|
|
|
|
|
"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-06-15 12:57:19 +00:00
|
|
|
Eventstore eventstore.Eventstore
|
2020-05-29 06:44:01 +00:00
|
|
|
UserEvents *user_event.UserEventstore
|
2020-06-15 12:57:19 +00:00
|
|
|
OrgEvents *org_event.OrgEventstore
|
2020-05-29 06:44:01 +00:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2020-06-15 12:57:19 +00:00
|
|
|
func (repo *UserRepo) Register(ctx context.Context, registerUser *model.User, orgMember *org_model.OrgMember, resourceOwner string) (*model.User, error) {
|
2020-05-29 06:44:01 +00:00
|
|
|
policyResourceOwner := auth.GetCtxData(ctx).OrgID
|
|
|
|
if resourceOwner != "" {
|
|
|
|
policyResourceOwner = resourceOwner
|
|
|
|
}
|
2020-06-16 09:40:18 +00:00
|
|
|
pwPolicy, err := repo.PolicyEvents.GetPasswordComplexityPolicy(ctx, policyResourceOwner)
|
2020-05-29 06:44:01 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-06-16 09:40:18 +00:00
|
|
|
orgPolicy, err := repo.OrgEvents.GetOrgIamPolicy(ctx, policyResourceOwner)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
user, aggregates, err := repo.UserEvents.PrepareRegisterUser(ctx, registerUser, pwPolicy, orgPolicy, resourceOwner)
|
2020-06-15 12:57:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if orgMember != nil {
|
|
|
|
orgMember.UserID = user.AggregateID
|
|
|
|
_, memberAggregate, err := repo.OrgEvents.PrepareAddOrgMember(ctx, orgMember, policyResourceOwner)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
aggregates = append(aggregates, memberAggregate)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = sdk.PushAggregates(ctx, repo.Eventstore.PushAggregates, user.AppendEvents, aggregates...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return usr_model.UserToModel(user), nil
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *UserRepo) MyProfile(ctx context.Context) (*model.Profile, error) {
|
2020-06-17 05:25:04 +00:00
|
|
|
user, err := repo.UserByID(ctx, auth.GetCtxData(ctx).UserID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return user.GetProfile(), nil
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2020-06-17 05:25:04 +00:00
|
|
|
user, err := repo.UserByID(ctx, auth.GetCtxData(ctx).UserID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return user.GetEmail(), nil
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2020-06-17 05:25:04 +00:00
|
|
|
user, err := repo.UserByID(ctx, auth.GetCtxData(ctx).UserID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return user.GetPhone(), nil
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2020-06-17 05:25:04 +00:00
|
|
|
user, err := repo.UserByID(ctx, auth.GetCtxData(ctx).UserID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return user.GetAddress(), nil
|
2020-05-18 10:06:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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-17 05:25:04 +00:00
|
|
|
func (repo *UserRepo) UserByID(ctx context.Context, id string) (*model.UserView, error) {
|
|
|
|
user, err := repo.View.UserByID(id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
events, err := repo.UserEvents.UserEventsByID(ctx, id, user.Sequence)
|
|
|
|
if err != nil {
|
|
|
|
logging.Log("EVENT-PSoc3").WithError(err).Debug("error retrieving new events")
|
|
|
|
return usr_view_model.UserToModel(user), nil
|
|
|
|
}
|
|
|
|
userCopy := *user
|
|
|
|
for _, event := range events {
|
|
|
|
if err := userCopy.AppendEvent(event); err != nil {
|
|
|
|
return usr_view_model.UserToModel(user), nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return usr_view_model.UserToModel(&userCopy), nil
|
2020-06-05 05:50:04 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|