mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
710652ef24
* feat: project role remove * feat: search queries * feat: search queries * feat: cascade remove/change project role * fix: comment in project grant * fix: remove projecr grant * fix: only search usergrants of my org * fix: delete usergrants * fix: delete usergrants * fix: check if role exists on project grant * feat: bulk add project role * fix: tests * fix: update user grants on project update * fix: return roles * feat: add resourceowner name on project grants * fix: migration number * fix: tests * fix: generate protos * fix: some unnecessary code
65 lines
2.2 KiB
Go
65 lines
2.2 KiB
Go
package view
|
|
|
|
import (
|
|
proj_model "github.com/caos/zitadel/internal/project/model"
|
|
"github.com/caos/zitadel/internal/project/repository/view"
|
|
"github.com/caos/zitadel/internal/project/repository/view/model"
|
|
global_view "github.com/caos/zitadel/internal/view"
|
|
)
|
|
|
|
const (
|
|
grantedProjectTable = "management.project_grants"
|
|
)
|
|
|
|
func (v *View) ProjectGrantByID(grantID string) (*model.ProjectGrantView, error) {
|
|
return view.ProjectGrantByID(v.Db, grantedProjectTable, grantID)
|
|
}
|
|
|
|
func (v *View) ProjectGrantByProjectAndOrg(projectID, orgID string) (*model.ProjectGrantView, error) {
|
|
return view.ProjectGrantByProjectAndOrg(v.Db, grantedProjectTable, projectID, orgID)
|
|
}
|
|
|
|
func (v *View) ProjectGrantsByProjectID(projectID string) ([]*model.ProjectGrantView, error) {
|
|
return view.ProjectGrantsByProjectID(v.Db, grantedProjectTable, projectID)
|
|
}
|
|
|
|
func (v *View) ProjectGrantsByProjectIDAndRoleKey(projectID, key string) ([]*model.ProjectGrantView, error) {
|
|
return view.ProjectGrantsByProjectIDAndRoleKey(v.Db, grantedProjectTable, projectID, key)
|
|
}
|
|
|
|
func (v *View) SearchProjectGrants(request *proj_model.ProjectGrantViewSearchRequest) ([]*model.ProjectGrantView, int, error) {
|
|
return view.SearchProjectGrants(v.Db, grantedProjectTable, request)
|
|
}
|
|
|
|
func (v *View) PutProjectGrant(project *model.ProjectGrantView) error {
|
|
err := view.PutProjectGrant(v.Db, grantedProjectTable, project)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return v.ProcessedProjectGrantSequence(project.Sequence)
|
|
}
|
|
|
|
func (v *View) DeleteProjectGrant(grantID string, eventSequence uint64) error {
|
|
err := view.DeleteProjectGrant(v.Db, grantedProjectTable, grantID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return v.ProcessedProjectGrantSequence(eventSequence)
|
|
}
|
|
|
|
func (v *View) GetLatestProjectGrantSequence() (uint64, error) {
|
|
return v.latestSequence(grantedProjectTable)
|
|
}
|
|
|
|
func (v *View) ProcessedProjectGrantSequence(eventSequence uint64) error {
|
|
return v.saveCurrentSequence(grantedProjectTable, eventSequence)
|
|
}
|
|
|
|
func (v *View) GetLatestProjectGrantFailedEvent(sequence uint64) (*global_view.FailedEvent, error) {
|
|
return v.latestFailedEvent(grantedProjectTable, sequence)
|
|
}
|
|
|
|
func (v *View) ProcessedProjectGrantFailedEvent(failedEvent *global_view.FailedEvent) error {
|
|
return v.saveFailedEvent(failedEvent)
|
|
}
|