2020-05-11 10:16:29 +00:00
|
|
|
package eventstore
|
2020-04-07 11:23:04 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-06-25 09:25:38 +00:00
|
|
|
"strings"
|
|
|
|
|
2020-06-30 05:54:39 +00:00
|
|
|
"github.com/caos/logging"
|
2020-06-19 13:32:03 +00:00
|
|
|
caos_errs "github.com/caos/zitadel/internal/errors"
|
|
|
|
es_int "github.com/caos/zitadel/internal/eventstore"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
|
|
es_models "github.com/caos/zitadel/internal/eventstore/models"
|
|
|
|
es_sdk "github.com/caos/zitadel/internal/eventstore/sdk"
|
|
|
|
es_proj_model "github.com/caos/zitadel/internal/project/repository/eventsourcing/model"
|
2020-06-29 07:37:10 +00:00
|
|
|
usr_event "github.com/caos/zitadel/internal/user/repository/eventsourcing"
|
2020-06-19 13:32:03 +00:00
|
|
|
usr_grant_model "github.com/caos/zitadel/internal/usergrant/model"
|
|
|
|
usr_grant_event "github.com/caos/zitadel/internal/usergrant/repository/eventsourcing"
|
2020-06-15 14:50:09 +00:00
|
|
|
|
2020-06-05 05:50:04 +00:00
|
|
|
"github.com/caos/zitadel/internal/api/auth"
|
|
|
|
global_model "github.com/caos/zitadel/internal/model"
|
2020-05-26 14:46:16 +00:00
|
|
|
|
2020-05-11 10:16:29 +00:00
|
|
|
"github.com/caos/zitadel/internal/management/repository/eventsourcing/view"
|
|
|
|
"github.com/caos/zitadel/internal/project/repository/view/model"
|
2020-04-07 16:36:37 +00:00
|
|
|
|
2020-04-07 11:23:04 +00:00
|
|
|
proj_model "github.com/caos/zitadel/internal/project/model"
|
|
|
|
proj_event "github.com/caos/zitadel/internal/project/repository/eventsourcing"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ProjectRepo struct {
|
2020-06-19 13:32:03 +00:00
|
|
|
es_int.Eventstore
|
|
|
|
SearchLimit uint64
|
|
|
|
ProjectEvents *proj_event.ProjectEventstore
|
|
|
|
UserGrantEvents *usr_grant_event.UserGrantEventStore
|
2020-06-29 07:37:10 +00:00
|
|
|
UserEvents *usr_event.UserEventstore
|
2020-06-19 13:32:03 +00:00
|
|
|
View *view.View
|
|
|
|
Roles []string
|
2020-04-07 11:23:04 +00:00
|
|
|
}
|
|
|
|
|
2020-06-23 05:06:07 +00:00
|
|
|
func (repo *ProjectRepo) ProjectByID(ctx context.Context, id string) (*proj_model.ProjectView, error) {
|
|
|
|
project, err := repo.View.ProjectByID(id)
|
2020-06-30 05:54:39 +00:00
|
|
|
if err != nil && !caos_errs.IsNotFound(err) {
|
2020-06-23 05:06:07 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-06-30 05:54:39 +00:00
|
|
|
|
|
|
|
events, err := repo.ProjectEvents.ProjectEventsByID(ctx, id, project.Sequence)
|
|
|
|
if err != nil {
|
|
|
|
logging.Log("EVENT-V9x1V").WithError(err).Debug("error retrieving new events")
|
|
|
|
return model.ProjectToModel(project), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
viewProject := *project
|
|
|
|
for _, event := range events {
|
|
|
|
err := project.AppendEvent(event)
|
|
|
|
if err != nil {
|
|
|
|
return model.ProjectToModel(&viewProject), nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-23 05:06:07 +00:00
|
|
|
return model.ProjectToModel(project), nil
|
2020-04-07 11:23:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) CreateProject(ctx context.Context, name string) (*proj_model.Project, error) {
|
|
|
|
project := &proj_model.Project{Name: name}
|
2020-04-07 16:36:37 +00:00
|
|
|
return repo.ProjectEvents.CreateProject(ctx, project)
|
2020-04-07 11:23:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) UpdateProject(ctx context.Context, project *proj_model.Project) (*proj_model.Project, error) {
|
2020-04-15 15:11:42 +00:00
|
|
|
return repo.ProjectEvents.UpdateProject(ctx, project)
|
2020-04-07 11:23:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) DeactivateProject(ctx context.Context, id string) (*proj_model.Project, error) {
|
2020-04-15 15:11:42 +00:00
|
|
|
return repo.ProjectEvents.DeactivateProject(ctx, id)
|
2020-04-07 11:23:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) ReactivateProject(ctx context.Context, id string) (*proj_model.Project, error) {
|
2020-04-15 15:11:42 +00:00
|
|
|
return repo.ProjectEvents.ReactivateProject(ctx, id)
|
|
|
|
}
|
|
|
|
|
2020-06-15 12:50:39 +00:00
|
|
|
func (repo *ProjectRepo) SearchProjects(ctx context.Context, request *proj_model.ProjectViewSearchRequest) (*proj_model.ProjectViewSearchResponse, error) {
|
2020-05-11 10:16:29 +00:00
|
|
|
request.EnsureLimit(repo.SearchLimit)
|
2020-06-05 05:50:04 +00:00
|
|
|
|
|
|
|
permissions := auth.GetPermissionsFromCtx(ctx)
|
|
|
|
if !auth.HasGlobalPermission(permissions) {
|
|
|
|
ids := auth.GetPermissionCtxIDs(permissions)
|
2020-06-23 12:47:47 +00:00
|
|
|
request.Queries = append(request.Queries, &proj_model.ProjectViewSearchQuery{Key: proj_model.ProjectViewSearchKeyProjectID, Method: global_model.SearchMethodIsOneOf, Value: ids})
|
2020-06-05 05:50:04 +00:00
|
|
|
}
|
|
|
|
|
2020-06-15 12:50:39 +00:00
|
|
|
projects, count, err := repo.View.SearchProjects(request)
|
2020-05-11 10:16:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-06-15 12:50:39 +00:00
|
|
|
return &proj_model.ProjectViewSearchResponse{
|
2020-05-11 10:16:29 +00:00
|
|
|
Offset: request.Offset,
|
|
|
|
Limit: request.Limit,
|
|
|
|
TotalResult: uint64(count),
|
2020-06-15 12:50:39 +00:00
|
|
|
Result: model.ProjectsToModel(projects),
|
2020-05-11 10:16:29 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2020-06-15 12:50:39 +00:00
|
|
|
func (repo *ProjectRepo) ProjectGrantViewByID(ctx context.Context, grantID string) (project *proj_model.ProjectGrantView, err error) {
|
|
|
|
p, err := repo.View.ProjectGrantByID(grantID)
|
2020-06-10 12:28:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-06-15 12:50:39 +00:00
|
|
|
return model.ProjectGrantToModel(p), nil
|
2020-06-10 12:28:15 +00:00
|
|
|
}
|
|
|
|
|
2020-06-23 05:06:07 +00:00
|
|
|
func (repo *ProjectRepo) ProjectMemberByID(ctx context.Context, projectID, userID string) (*proj_model.ProjectMemberView, error) {
|
|
|
|
member, err := repo.View.ProjectMemberByIDs(projectID, userID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return model.ProjectMemberToModel(member), nil
|
2020-04-15 15:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) AddProjectMember(ctx context.Context, member *proj_model.ProjectMember) (*proj_model.ProjectMember, error) {
|
|
|
|
return repo.ProjectEvents.AddProjectMember(ctx, member)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) ChangeProjectMember(ctx context.Context, member *proj_model.ProjectMember) (*proj_model.ProjectMember, error) {
|
|
|
|
return repo.ProjectEvents.ChangeProjectMember(ctx, member)
|
|
|
|
}
|
2020-04-07 11:23:04 +00:00
|
|
|
|
2020-04-15 15:11:42 +00:00
|
|
|
func (repo *ProjectRepo) RemoveProjectMember(ctx context.Context, projectID, userID string) error {
|
|
|
|
member := proj_model.NewProjectMember(projectID, userID)
|
|
|
|
return repo.ProjectEvents.RemoveProjectMember(ctx, member)
|
2020-04-07 11:23:04 +00:00
|
|
|
}
|
2020-04-21 15:00:32 +00:00
|
|
|
|
2020-05-11 10:16:29 +00:00
|
|
|
func (repo *ProjectRepo) SearchProjectMembers(ctx context.Context, request *proj_model.ProjectMemberSearchRequest) (*proj_model.ProjectMemberSearchResponse, error) {
|
|
|
|
request.EnsureLimit(repo.SearchLimit)
|
|
|
|
members, count, err := repo.View.SearchProjectMembers(request)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &proj_model.ProjectMemberSearchResponse{
|
|
|
|
Offset: request.Offset,
|
|
|
|
Limit: request.Limit,
|
|
|
|
TotalResult: uint64(count),
|
|
|
|
Result: model.ProjectMembersToModel(members),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2020-06-19 13:32:03 +00:00
|
|
|
func (repo *ProjectRepo) AddProjectRole(ctx context.Context, role *proj_model.ProjectRole) (*proj_model.ProjectRole, error) {
|
|
|
|
return repo.ProjectEvents.AddProjectRoles(ctx, role)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) BulkAddProjectRole(ctx context.Context, roles []*proj_model.ProjectRole) error {
|
|
|
|
_, err := repo.ProjectEvents.AddProjectRoles(ctx, roles...)
|
|
|
|
return err
|
2020-04-21 15:00:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) ChangeProjectRole(ctx context.Context, member *proj_model.ProjectRole) (*proj_model.ProjectRole, error) {
|
|
|
|
return repo.ProjectEvents.ChangeProjectRole(ctx, member)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) RemoveProjectRole(ctx context.Context, projectID, key string) error {
|
2020-06-19 13:32:03 +00:00
|
|
|
role := proj_model.NewProjectRole(projectID, key)
|
|
|
|
aggregates := make([]*es_models.Aggregate, 0)
|
|
|
|
project, agg, err := repo.ProjectEvents.PrepareRemoveProjectRole(ctx, role)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
aggregates = append(aggregates, agg)
|
|
|
|
|
|
|
|
usergrants, err := repo.View.UserGrantsByProjectIDAndRoleKey(projectID, key)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, grant := range usergrants {
|
|
|
|
changed := &usr_grant_model.UserGrant{
|
|
|
|
ObjectRoot: models.ObjectRoot{AggregateID: grant.ID, Sequence: grant.Sequence, ResourceOwner: grant.ResourceOwner},
|
|
|
|
RoleKeys: grant.RoleKeys,
|
|
|
|
ProjectID: grant.ProjectID,
|
|
|
|
UserID: grant.UserID,
|
|
|
|
}
|
|
|
|
changed.RemoveRoleKeyIfExisting(key)
|
|
|
|
_, agg, err := repo.UserGrantEvents.PrepareChangeUserGrant(ctx, changed, true)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
aggregates = append(aggregates, agg)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = es_sdk.PushAggregates(ctx, repo.Eventstore.PushAggregates, project.AppendEvents, aggregates...)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2020-04-21 15:00:32 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 10:16:29 +00:00
|
|
|
func (repo *ProjectRepo) SearchProjectRoles(ctx context.Context, request *proj_model.ProjectRoleSearchRequest) (*proj_model.ProjectRoleSearchResponse, error) {
|
|
|
|
request.EnsureLimit(repo.SearchLimit)
|
|
|
|
roles, count, err := repo.View.SearchProjectRoles(request)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &proj_model.ProjectRoleSearchResponse{
|
|
|
|
Offset: request.Offset,
|
|
|
|
Limit: request.Limit,
|
|
|
|
TotalResult: uint64(count),
|
|
|
|
Result: model.ProjectRolesToModel(roles),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2020-06-25 09:25:38 +00:00
|
|
|
func (repo *ProjectRepo) ProjectChanges(ctx context.Context, id string, lastSequence uint64, limit uint64, sortAscending bool) (*proj_model.ProjectChanges, error) {
|
|
|
|
changes, err := repo.ProjectEvents.ProjectChanges(ctx, id, lastSequence, limit, sortAscending)
|
2020-06-15 14:50:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-06-29 07:37:10 +00:00
|
|
|
for _, change := range changes.Changes {
|
|
|
|
change.ModifierName = change.ModifierId
|
|
|
|
user, _ := repo.UserEvents.UserByID(ctx, change.ModifierId)
|
|
|
|
if user != nil {
|
|
|
|
change.ModifierName = user.DisplayName
|
|
|
|
}
|
|
|
|
}
|
2020-06-15 14:50:09 +00:00
|
|
|
return changes, nil
|
|
|
|
}
|
|
|
|
|
2020-06-23 05:06:07 +00:00
|
|
|
func (repo *ProjectRepo) ApplicationByID(ctx context.Context, appID string) (*proj_model.ApplicationView, error) {
|
|
|
|
app, err := repo.View.ApplicationByID(appID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return model.ApplicationViewToModel(app), nil
|
2020-04-21 15:00:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) AddApplication(ctx context.Context, app *proj_model.Application) (*proj_model.Application, error) {
|
|
|
|
return repo.ProjectEvents.AddApplication(ctx, app)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) ChangeApplication(ctx context.Context, app *proj_model.Application) (*proj_model.Application, error) {
|
|
|
|
return repo.ProjectEvents.ChangeApplication(ctx, app)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) DeactivateApplication(ctx context.Context, projectID, appID string) (*proj_model.Application, error) {
|
|
|
|
return repo.ProjectEvents.DeactivateApplication(ctx, projectID, appID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) ReactivateApplication(ctx context.Context, projectID, appID string) (*proj_model.Application, error) {
|
|
|
|
return repo.ProjectEvents.ReactivateApplication(ctx, projectID, appID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) RemoveApplication(ctx context.Context, projectID, appID string) error {
|
|
|
|
app := proj_model.NewApplication(projectID, appID)
|
|
|
|
return repo.ProjectEvents.RemoveApplication(ctx, app)
|
|
|
|
}
|
|
|
|
|
2020-05-11 10:16:29 +00:00
|
|
|
func (repo *ProjectRepo) SearchApplications(ctx context.Context, request *proj_model.ApplicationSearchRequest) (*proj_model.ApplicationSearchResponse, error) {
|
|
|
|
request.EnsureLimit(repo.SearchLimit)
|
|
|
|
apps, count, err := repo.View.SearchApplications(request)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &proj_model.ApplicationSearchResponse{
|
|
|
|
Offset: request.Offset,
|
|
|
|
Limit: request.Limit,
|
|
|
|
TotalResult: uint64(count),
|
|
|
|
Result: model.ApplicationViewsToModel(apps),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2020-06-25 09:25:38 +00:00
|
|
|
func (repo *ProjectRepo) ApplicationChanges(ctx context.Context, id string, appId string, lastSequence uint64, limit uint64, sortAscending bool) (*proj_model.ApplicationChanges, error) {
|
|
|
|
changes, err := repo.ProjectEvents.ApplicationChanges(ctx, id, appId, lastSequence, limit, sortAscending)
|
2020-06-15 14:50:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-06-29 07:37:10 +00:00
|
|
|
for _, change := range changes.Changes {
|
|
|
|
change.ModifierName = change.ModifierId
|
|
|
|
user, _ := repo.UserEvents.UserByID(ctx, change.ModifierId)
|
|
|
|
if user != nil {
|
|
|
|
change.ModifierName = user.DisplayName
|
|
|
|
}
|
|
|
|
}
|
2020-06-15 14:50:09 +00:00
|
|
|
return changes, nil
|
|
|
|
}
|
|
|
|
|
2020-04-21 15:00:32 +00:00
|
|
|
func (repo *ProjectRepo) ChangeOIDCConfig(ctx context.Context, config *proj_model.OIDCConfig) (*proj_model.OIDCConfig, error) {
|
|
|
|
return repo.ProjectEvents.ChangeOIDCConfig(ctx, config)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) ChangeOIDConfigSecret(ctx context.Context, projectID, appID string) (*proj_model.OIDCConfig, error) {
|
|
|
|
return repo.ProjectEvents.ChangeOIDCConfigSecret(ctx, projectID, appID)
|
|
|
|
}
|
2020-04-23 05:54:40 +00:00
|
|
|
|
2020-06-23 05:06:07 +00:00
|
|
|
func (repo *ProjectRepo) ProjectGrantByID(ctx context.Context, grantID string) (*proj_model.ProjectGrantView, error) {
|
|
|
|
grant, err := repo.View.ProjectGrantByID(grantID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return model.ProjectGrantToModel(grant), nil
|
2020-04-23 05:54:40 +00:00
|
|
|
}
|
|
|
|
|
2020-06-15 12:50:39 +00:00
|
|
|
func (repo *ProjectRepo) SearchProjectGrants(ctx context.Context, request *proj_model.ProjectGrantViewSearchRequest) (*proj_model.ProjectGrantViewSearchResponse, error) {
|
|
|
|
request.EnsureLimit(repo.SearchLimit)
|
|
|
|
projects, count, err := repo.View.SearchProjectGrants(request)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &proj_model.ProjectGrantViewSearchResponse{
|
|
|
|
Offset: request.Offset,
|
|
|
|
Limit: request.Limit,
|
|
|
|
TotalResult: uint64(count),
|
|
|
|
Result: model.ProjectGrantsToModel(projects),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2020-06-19 13:32:03 +00:00
|
|
|
func (repo *ProjectRepo) AddProjectGrant(ctx context.Context, grant *proj_model.ProjectGrant) (*proj_model.ProjectGrant, error) {
|
|
|
|
return repo.ProjectEvents.AddProjectGrant(ctx, grant)
|
2020-04-23 05:54:40 +00:00
|
|
|
}
|
|
|
|
|
2020-06-19 13:32:03 +00:00
|
|
|
func (repo *ProjectRepo) ChangeProjectGrant(ctx context.Context, grant *proj_model.ProjectGrant) (*proj_model.ProjectGrant, error) {
|
|
|
|
project, aggFunc, removedRoles, err := repo.ProjectEvents.PrepareChangeProjectGrant(ctx, grant)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
agg, err := aggFunc(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
aggregates := make([]*es_models.Aggregate, 0)
|
|
|
|
aggregates = append(aggregates, agg)
|
|
|
|
|
|
|
|
usergrants, err := repo.View.UserGrantsByProjectID(grant.AggregateID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for _, grant := range usergrants {
|
|
|
|
changed := &usr_grant_model.UserGrant{
|
|
|
|
ObjectRoot: models.ObjectRoot{AggregateID: grant.ID, Sequence: grant.Sequence, ResourceOwner: grant.ResourceOwner},
|
|
|
|
RoleKeys: grant.RoleKeys,
|
|
|
|
ProjectID: grant.ProjectID,
|
|
|
|
UserID: grant.UserID,
|
|
|
|
}
|
|
|
|
existing := changed.RemoveRoleKeysIfExisting(removedRoles)
|
|
|
|
if existing {
|
|
|
|
_, agg, err := repo.UserGrantEvents.PrepareChangeUserGrant(ctx, changed, true)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
aggregates = append(aggregates, agg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
err = es_sdk.PushAggregates(ctx, repo.Eventstore.PushAggregates, project.AppendEvents, aggregates...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if _, g := es_proj_model.GetProjectGrant(project.Grants, grant.GrantID); g != nil {
|
|
|
|
return es_proj_model.GrantToModel(g), nil
|
|
|
|
}
|
|
|
|
return nil, caos_errs.ThrowInternal(nil, "EVENT-dksi8", "Could not find app in list")
|
2020-04-23 05:54:40 +00:00
|
|
|
}
|
|
|
|
|
2020-06-19 13:32:03 +00:00
|
|
|
func (repo *ProjectRepo) DeactivateProjectGrant(ctx context.Context, projectID, grantID string) (*proj_model.ProjectGrant, error) {
|
|
|
|
return repo.ProjectEvents.DeactivateProjectGrant(ctx, projectID, grantID)
|
2020-04-23 05:54:40 +00:00
|
|
|
}
|
|
|
|
|
2020-06-19 13:32:03 +00:00
|
|
|
func (repo *ProjectRepo) ReactivateProjectGrant(ctx context.Context, projectID, grantID string) (*proj_model.ProjectGrant, error) {
|
|
|
|
return repo.ProjectEvents.ReactivateProjectGrant(ctx, projectID, grantID)
|
2020-04-23 05:54:40 +00:00
|
|
|
}
|
|
|
|
|
2020-06-19 13:32:03 +00:00
|
|
|
func (repo *ProjectRepo) RemoveProjectGrant(ctx context.Context, projectID, grantID string) error {
|
|
|
|
grant, err := repo.ProjectEvents.ProjectGrantByIDs(ctx, projectID, grantID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
aggregates := make([]*es_models.Aggregate, 0)
|
|
|
|
project, aggFunc, err := repo.ProjectEvents.PrepareRemoveProjectGrant(ctx, grant)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
agg, err := aggFunc(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
aggregates = append(aggregates, agg)
|
|
|
|
|
|
|
|
usergrants, err := repo.View.UserGrantsByOrgIDAndProjectID(grant.GrantedOrgID, projectID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, grant := range usergrants {
|
|
|
|
_, grantAggregates, err := repo.UserGrantEvents.PrepareRemoveUserGrant(ctx, grant.ID, true)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, agg := range grantAggregates {
|
|
|
|
aggregates = append(aggregates, agg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = es_sdk.PushAggregates(ctx, repo.Eventstore.PushAggregates, project.AppendEvents, aggregates...)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2020-04-23 05:54:40 +00:00
|
|
|
}
|
|
|
|
|
2020-06-23 05:06:07 +00:00
|
|
|
func (repo *ProjectRepo) ProjectGrantMemberByID(ctx context.Context, projectID, userID string) (*proj_model.ProjectGrantMemberView, error) {
|
|
|
|
member, err := repo.View.ProjectGrantMemberByIDs(projectID, userID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return model.ProjectGrantMemberToModel(member), nil
|
2020-04-23 05:54:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) AddProjectGrantMember(ctx context.Context, member *proj_model.ProjectGrantMember) (*proj_model.ProjectGrantMember, error) {
|
|
|
|
return repo.ProjectEvents.AddProjectGrantMember(ctx, member)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) ChangeProjectGrantMember(ctx context.Context, member *proj_model.ProjectGrantMember) (*proj_model.ProjectGrantMember, error) {
|
|
|
|
return repo.ProjectEvents.ChangeProjectGrantMember(ctx, member)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) RemoveProjectGrantMember(ctx context.Context, projectID, grantID, userID string) error {
|
|
|
|
member := proj_model.NewProjectGrantMember(projectID, grantID, userID)
|
|
|
|
return repo.ProjectEvents.RemoveProjectGrantMember(ctx, member)
|
|
|
|
}
|
2020-05-11 10:16:29 +00:00
|
|
|
|
|
|
|
func (repo *ProjectRepo) SearchProjectGrantMembers(ctx context.Context, request *proj_model.ProjectGrantMemberSearchRequest) (*proj_model.ProjectGrantMemberSearchResponse, error) {
|
|
|
|
request.EnsureLimit(repo.SearchLimit)
|
|
|
|
members, count, err := repo.View.SearchProjectGrantMembers(request)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &proj_model.ProjectGrantMemberSearchResponse{
|
|
|
|
Offset: request.Offset,
|
|
|
|
Limit: request.Limit,
|
|
|
|
TotalResult: uint64(count),
|
|
|
|
Result: model.ProjectGrantMembersToModel(members),
|
|
|
|
}, nil
|
|
|
|
}
|
2020-05-26 14:46:16 +00:00
|
|
|
|
|
|
|
func (repo *ProjectRepo) GetProjectMemberRoles() []string {
|
|
|
|
roles := make([]string, 0)
|
|
|
|
for _, roleMap := range repo.Roles {
|
|
|
|
if strings.HasPrefix(roleMap, "PROJECT") && !strings.HasPrefix(roleMap, "PROJECT_GRANT") {
|
|
|
|
roles = append(roles, roleMap)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return roles
|
|
|
|
}
|
|
|
|
|
|
|
|
func (repo *ProjectRepo) GetProjectGrantMemberRoles() []string {
|
|
|
|
roles := make([]string, 0)
|
|
|
|
for _, roleMap := range repo.Roles {
|
|
|
|
if strings.HasPrefix(roleMap, "PROJECT_GRANT") {
|
|
|
|
roles = append(roles, roleMap)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return roles
|
|
|
|
}
|