mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-04 07:15:38 +00:00

* fix: split command query side * fix: split command query side * fix: members in correct pkg structure * fix: label policy in correct pkg structure * fix: structure * fix: structure of login policy * fix: identityprovider structure * fix: org iam policy structure * fix: password age policy structure * fix: password complexity policy structure * fix: password lockout policy structure * fix: idp structure * fix: user events structure * fix: user write model * fix: profile email changed command * fix: address changed command * fix: user states * fix: user * fix: org structure and add human * begin iam setup command side * setup * step2 * step2 * fix: add user * step2 * isvalid * fix: folder structure v2 business Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
91 lines
1.6 KiB
Go
91 lines
1.6 KiB
Go
package setup
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/errors"
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
)
|
|
|
|
type IAMSetUp struct {
|
|
Step1 *Step1
|
|
//Step2 *Step2
|
|
//Step3 *Step3
|
|
//Step4 *Step4
|
|
//Step5 *Step5
|
|
//Step6 *Step6
|
|
//Step7 *Step7
|
|
//Step8 *Step8
|
|
}
|
|
|
|
func (setup *IAMSetUp) steps(currentDone iam_model.Step) ([]stepV2, error) {
|
|
steps := make([]stepV2, 0)
|
|
missingSteps := make([]iam_model.Step, 0)
|
|
|
|
for _, step := range []stepV2{
|
|
setup.Step1,
|
|
//setup.Step2,
|
|
//setup.Step3,
|
|
//setup.Step4,
|
|
//setup.Step5,
|
|
//setup.Step6,
|
|
//setup.Step7,
|
|
//setup.Step8,
|
|
} {
|
|
if step.step() <= currentDone {
|
|
continue
|
|
}
|
|
|
|
if step.isNil() {
|
|
missingSteps = append(missingSteps, step.step())
|
|
continue
|
|
}
|
|
steps = append(steps, step)
|
|
}
|
|
|
|
if len(missingSteps) > 0 {
|
|
return nil, errors.ThrowPreconditionFailedf(nil, "SETUP-1nk49", "steps %v not configured", missingSteps)
|
|
}
|
|
|
|
return steps, nil
|
|
}
|
|
|
|
type LoginPolicy struct {
|
|
AllowRegister bool
|
|
AllowUsernamePassword bool
|
|
AllowExternalIdp bool
|
|
}
|
|
|
|
type User struct {
|
|
FirstName string
|
|
LastName string
|
|
UserName string
|
|
Email string
|
|
Password string
|
|
}
|
|
|
|
type Org struct {
|
|
Name string
|
|
Domain string
|
|
OrgIamPolicy bool
|
|
Users []User
|
|
Owners []string
|
|
Projects []Project
|
|
}
|
|
|
|
type Project struct {
|
|
Name string
|
|
Users []User
|
|
Members []string
|
|
OIDCApps []OIDCApp
|
|
}
|
|
|
|
type OIDCApp struct {
|
|
Name string
|
|
RedirectUris []string
|
|
ResponseTypes []string
|
|
GrantTypes []string
|
|
ApplicationType string
|
|
AuthMethodType string
|
|
PostLogoutRedirectUris []string
|
|
DevMode bool
|
|
}
|