2020-05-18 09:32:16 +00:00
|
|
|
package setup
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-05-25 06:21:58 +00:00
|
|
|
|
2020-05-18 09:32:16 +00:00
|
|
|
"github.com/caos/logging"
|
2020-07-08 11:56:37 +00:00
|
|
|
|
|
|
|
"github.com/caos/zitadel/internal/api/authz"
|
2020-05-18 09:32:16 +00:00
|
|
|
"github.com/caos/zitadel/internal/config/systemdefaults"
|
2020-09-24 09:38:28 +00:00
|
|
|
"github.com/caos/zitadel/internal/errors"
|
2020-05-18 09:32:16 +00:00
|
|
|
caos_errs "github.com/caos/zitadel/internal/errors"
|
2020-08-18 08:04:56 +00:00
|
|
|
es_int "github.com/caos/zitadel/internal/eventstore"
|
2020-05-18 09:32:16 +00:00
|
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
2020-08-18 08:04:56 +00:00
|
|
|
es_iam "github.com/caos/zitadel/internal/iam/repository/eventsourcing"
|
2020-05-18 09:32:16 +00:00
|
|
|
iam_event "github.com/caos/zitadel/internal/iam/repository/eventsourcing"
|
2020-08-18 08:04:56 +00:00
|
|
|
es_org "github.com/caos/zitadel/internal/org/repository/eventsourcing"
|
2020-05-18 09:32:16 +00:00
|
|
|
org_event "github.com/caos/zitadel/internal/org/repository/eventsourcing"
|
|
|
|
proj_model "github.com/caos/zitadel/internal/project/model"
|
2020-08-18 08:04:56 +00:00
|
|
|
es_proj "github.com/caos/zitadel/internal/project/repository/eventsourcing"
|
2020-05-18 09:32:16 +00:00
|
|
|
proj_event "github.com/caos/zitadel/internal/project/repository/eventsourcing"
|
2020-08-18 08:04:56 +00:00
|
|
|
es_usr "github.com/caos/zitadel/internal/user/repository/eventsourcing"
|
2020-05-18 09:32:16 +00:00
|
|
|
usr_event "github.com/caos/zitadel/internal/user/repository/eventsourcing"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Setup struct {
|
2020-08-18 08:04:56 +00:00
|
|
|
iamID string
|
2020-08-26 07:56:23 +00:00
|
|
|
IamEvents *iam_event.IAMEventstore
|
2020-05-18 09:32:16 +00:00
|
|
|
OrgEvents *org_event.OrgEventstore
|
|
|
|
UserEvents *usr_event.UserEventstore
|
|
|
|
ProjectEvents *proj_event.ProjectEventstore
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2020-06-23 12:47:47 +00:00
|
|
|
OrgOwnerRole = "ORG_OWNER"
|
|
|
|
SetupUser = "SETUP"
|
|
|
|
OIDCResponseTypeCode = "CODE"
|
|
|
|
OIDCResponseTypeIDToken = "ID_TOKEN"
|
2020-07-09 13:52:20 +00:00
|
|
|
OIDCResponseTypeToken = "ID_TOKEN TOKEN"
|
2020-06-23 12:47:47 +00:00
|
|
|
OIDCGrantTypeAuthorizationCode = "AUTHORIZATION_CODE"
|
|
|
|
OIDCGrantTypeImplicit = "IMPLICIT"
|
|
|
|
OIDCGrantTypeRefreshToken = "REFRESH_TOKEN"
|
|
|
|
OIDCApplicationTypeNative = "NATIVE"
|
|
|
|
OIDCApplicationTypeUserAgent = "USER_AGENT"
|
|
|
|
OIDCApplicationTypeWeb = "WEB"
|
|
|
|
OIDCAuthMethodTypeNone = "NONE"
|
|
|
|
OIDCAuthMethodTypeBasic = "BASIC"
|
|
|
|
OIDCAuthMethodTypePost = "POST"
|
2020-05-18 09:32:16 +00:00
|
|
|
)
|
|
|
|
|
2020-08-18 08:04:56 +00:00
|
|
|
func StartSetup(esConfig es_int.Config, sd systemdefaults.SystemDefaults) (*Setup, error) {
|
|
|
|
setup := &Setup{
|
|
|
|
iamID: sd.IamID,
|
|
|
|
}
|
|
|
|
es, err := es_int.Start(esConfig)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-08-26 07:56:23 +00:00
|
|
|
setup.IamEvents, err = es_iam.StartIAM(es_iam.IAMConfig{
|
2020-08-18 08:04:56 +00:00
|
|
|
Eventstore: es,
|
|
|
|
Cache: esConfig.Cache,
|
|
|
|
}, sd)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
setup.OrgEvents = es_org.StartOrg(es_org.OrgConfig{Eventstore: es, IAMDomain: sd.Domain}, sd)
|
|
|
|
|
|
|
|
setup.ProjectEvents, err = es_proj.StartProject(es_proj.ProjectConfig{
|
|
|
|
Eventstore: es,
|
|
|
|
Cache: esConfig.Cache,
|
|
|
|
}, sd)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
setup.UserEvents, err = es_usr.StartUser(es_usr.UserConfig{
|
|
|
|
Eventstore: es,
|
|
|
|
Cache: esConfig.Cache,
|
|
|
|
}, sd)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return setup, nil
|
2020-05-18 09:32:16 +00:00
|
|
|
}
|
|
|
|
|
2020-08-18 08:04:56 +00:00
|
|
|
func (s *Setup) Execute(ctx context.Context, setUpConfig IAMSetUp) error {
|
2020-09-24 09:38:28 +00:00
|
|
|
logging.Log("SETUP-hwG32").Info("starting setup")
|
|
|
|
|
2020-08-26 07:56:23 +00:00
|
|
|
iam, err := s.IamEvents.IAMByID(ctx, s.iamID)
|
2020-05-18 09:32:16 +00:00
|
|
|
if err != nil && !caos_errs.IsNotFound(err) {
|
|
|
|
return err
|
|
|
|
}
|
2020-09-24 09:38:28 +00:00
|
|
|
if iam != nil && (iam.SetUpDone == iam_model.StepCount-1 || iam.SetUpStarted != iam.SetUpDone) {
|
|
|
|
logging.Log("SETUP-cWEsn").Info("all steps done")
|
2020-05-18 09:32:16 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-09-24 09:38:28 +00:00
|
|
|
if iam == nil {
|
|
|
|
iam = &iam_model.IAM{ObjectRoot: models.ObjectRoot{AggregateID: s.iamID}}
|
2020-05-18 09:32:16 +00:00
|
|
|
}
|
|
|
|
|
2020-09-24 09:38:28 +00:00
|
|
|
steps, err := setUpConfig.steps(iam.SetUpDone)
|
|
|
|
if err != nil || len(steps) == 0 {
|
2020-05-18 09:32:16 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx = setSetUpContextData(ctx, s.iamID)
|
|
|
|
|
2020-09-24 09:38:28 +00:00
|
|
|
for _, step := range steps {
|
|
|
|
step.init(s)
|
|
|
|
if step.step() != iam.SetUpDone+1 {
|
|
|
|
logging.LogWithFields("SETUP-rxRM1", "step", step.step(), "previous", iam.SetUpDone).Warn("wrong step order")
|
|
|
|
return errors.ThrowPreconditionFailed(nil, "SETUP-wwAqO", "too few steps for this zitadel verison")
|
2020-06-16 09:40:18 +00:00
|
|
|
}
|
2020-09-24 09:38:28 +00:00
|
|
|
iam, err = s.IamEvents.StartSetup(ctx, s.iamID, step.step())
|
2020-05-18 09:32:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
feat: policies on aggregates (#799)
* feat: move pw policy
* feat: default pw complexity policy
* fix: org password complexity policy
* fix: org password complexity policy
* fix: pw complexity policy with setup
* fix: age and lockout policies on aggregates
* fix: migration
* fix: org iam policy
* fix: org iam policy
* fix: org iam policy
* fix: tests
* fix: policy request
* fix: merge master
* fix(console): policies frontend (#817)
* fix policy build
* fix: age, complexity, lockout policies
* fix: ready return err of setup not done
* fix: fix remove policies in spoolers
* fix: fix remove policies in spoolers
* feat(console): policy settings for iam and org (#824)
* fix policy build
* fix: age, complexity, lockout policies
* fix pwd complexity
* policy remove action
* add imports
* fix accounts card, enable mgmt login policy
* lint
* add iam policy to admin
* toasts, i18n, show default
* routing, i18n
* reset policy, toast i18n, cleanup, routing
* policy delete permission
* lint style
* delete iam policy
* delete non project from grid list, i18n
* lint ts, style
* fix: remove instead delete
* feat(console): delete external idp from user (#835)
* dialog i18n, delete column and function
* dialog i18n
* fix rm button
* Update console/src/assets/i18n/de.json
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
* Update console/src/assets/i18n/de.json
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
* fix: revert env, rename policy, remove comments
* fix: lowercase sich
* fix: pr requests
* Update internal/iam/repository/eventsourcing/eventstore_test.go
Co-authored-by: Silvan <silvan.reusser@gmail.com>
* fix: tests
* fix: tests
* fix(console): policies (#839)
* fix: nil pointer on get userdata (#815)
* fix: external login (#818)
* fix: external login
* fix: external login
* feat(console): delete user (#819)
* add action col to user table, i18n
* delete user from detail component
* lint
* fix(console): cleanup user detail and member components, user/me redirect, permission guards, filter, org policy guard, user table, scss cleanup (#808)
* fix: remove user.write guard for filtering
* border color
* fix user routing from member tables
* idp detail layout
* generic contact component
* fix redirect to auth user, user grant disable
* disable policy action without permission, i18n
* user-create flex fix, contact ng-content
* rm unused styles
* sidenav divider
* lint
* chore(deps-dev): bump @angular/cli from 10.1.3 to 10.1.4 in /console (#806)
* fix: user session with external login (#797)
* fix: user session with external login
* fix: tests
* fix: tests
* fix: change idp config name
* fix(container): stop copying / and instead only copy zitadel (#691)
* chore: stop copying / and instead only copy zitadel
* Update Dockerfile
* Update release.yml
* enable anchors debug
* fix(container): don't copy alpine content into scratch execpt pwd
* chore: remove need step
* merge master
* chore(deps-dev): bump @angular/cli from 10.1.3 to 10.1.4 in /console
Bumps [@angular/cli](https://github.com/angular/angular-cli) from 10.1.3 to 10.1.4.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/compare/v10.1.3...v10.1.4)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
Co-authored-by: Florian Forster <florian@caos.ch>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular/language-service from 10.1.3 to 10.1.4 in /console (#805)
* fix: user session with external login (#797)
* fix: user session with external login
* fix: tests
* fix: tests
* fix: change idp config name
* fix(container): stop copying / and instead only copy zitadel (#691)
* chore: stop copying / and instead only copy zitadel
* Update Dockerfile
* Update release.yml
* enable anchors debug
* fix(container): don't copy alpine content into scratch execpt pwd
* chore: remove need step
* merge master
* chore(deps-dev): bump @angular/language-service in /console
Bumps [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) from 10.1.3 to 10.1.4.
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/master/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/10.1.4/packages/language-service)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
Co-authored-by: Florian Forster <florian@caos.ch>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump codelyzer from 6.0.0 to 6.0.1 in /console (#804)
* fix: user session with external login (#797)
* fix: user session with external login
* fix: tests
* fix: tests
* fix: change idp config name
* fix(container): stop copying / and instead only copy zitadel (#691)
* chore: stop copying / and instead only copy zitadel
* Update Dockerfile
* Update release.yml
* enable anchors debug
* fix(container): don't copy alpine content into scratch execpt pwd
* chore: remove need step
* merge master
* chore(deps-dev): bump codelyzer from 6.0.0 to 6.0.1 in /console
Bumps [codelyzer](https://github.com/mgechev/codelyzer) from 6.0.0 to 6.0.1.
- [Release notes](https://github.com/mgechev/codelyzer/releases)
- [Changelog](https://github.com/mgechev/codelyzer/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mgechev/codelyzer/commits/6.0.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
Co-authored-by: Florian Forster <florian@caos.ch>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* chore(deps-dev): bump @angular-devkit/build-angular from 0.1000.8 to 0.1001.4 in /console (#803)
* fix: user session with external login (#797)
* fix: user session with external login
* fix: tests
* fix: tests
* fix: change idp config name
* fix(container): stop copying / and instead only copy zitadel (#691)
* chore: stop copying / and instead only copy zitadel
* Update Dockerfile
* Update release.yml
* enable anchors debug
* fix(container): don't copy alpine content into scratch execpt pwd
* chore: remove need step
* merge master
* chore(deps-dev): bump @angular-devkit/build-angular in /console
Bumps [@angular-devkit/build-angular](https://github.com/angular/angular-cli) from 0.1000.8 to 0.1001.4.
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Commits](https://github.com/angular/angular-cli/commits)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
Co-authored-by: Florian Forster <florian@caos.ch>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Max Peintner <max@caos.ch>
* chore(deps): bump uuid from 8.3.0 to 8.3.1 in /console (#802)
* fix: user session with external login (#797)
* fix: user session with external login
* fix: tests
* fix: tests
* fix: change idp config name
* fix(container): stop copying / and instead only copy zitadel (#691)
* chore: stop copying / and instead only copy zitadel
* Update Dockerfile
* Update release.yml
* enable anchors debug
* fix(container): don't copy alpine content into scratch execpt pwd
* chore: remove need step
* merge master
* chore(deps): bump uuid from 8.3.0 to 8.3.1 in /console
Bumps [uuid](https://github.com/uuidjs/uuid) from 8.3.0 to 8.3.1.
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/master/CHANGELOG.md)
- [Commits](https://github.com/uuidjs/uuid/compare/v8.3.0...v8.3.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
Co-authored-by: Florian Forster <florian@caos.ch>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* create memberstable as common component
* iam member cleanup
* iam + org m table, user table service user avatar
* toast config
* fix selection emitter
* fix project grant table width
* project grant members refactor
* theme optimizations
* member table col delete
* lint
* fix table row color
* refactor grey color
* lint scss
* org list redirect on click, fix user table undef
* refresh table after grant add
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
Co-authored-by: Florian Forster <florian@caos.ch>
* fix(console): intercept navigator.language, set browser lang as default for user without explicit setting, user table outline, member create dialog import (#820)
* i18n interceptor, set language to browser lang
* nullcheck
* rm external idp log
* fix module imports, rm user displayname from i18n
* Update console/src/assets/i18n/de.json
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
* fix: delete external idps from users (#822)
* fix(console): permission regex, account switcher null check, restrict app and member create access (#821)
* fix member table disable, gerneal regexp
* fix user session card, app disable
* memberships max count
* fix policy permissions
* permission check for member add dialog
* lint
* rm accounts log
* rm id regex
* fix: handle usermemberships on project and project grant delete (#825)
* fix: go handler
Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Florian Forster <florian@caos.ch>
* fix: tests
* fix: not needed error handling
Co-authored-by: Max Peintner <max@caos.ch>
Co-authored-by: Silvan <silvan.reusser@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Florian Forster <florian@caos.ch>
2020-10-15 08:27:13 +00:00
|
|
|
iam, err = step.execute(ctx)
|
2020-05-18 09:32:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-09-24 09:38:28 +00:00
|
|
|
err = s.validateExecutedStep(ctx)
|
2020-05-18 09:32:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2020-06-16 09:40:18 +00:00
|
|
|
|
2020-09-24 09:38:28 +00:00
|
|
|
logging.Log("SETUP-ds31h").Info("setup done")
|
2020-05-25 06:21:58 +00:00
|
|
|
return nil
|
2020-05-18 09:32:16 +00:00
|
|
|
}
|
|
|
|
|
2020-09-24 09:38:28 +00:00
|
|
|
func (s *Setup) validateExecutedStep(ctx context.Context) error {
|
|
|
|
iam, err := s.IamEvents.IAMByID(ctx, s.iamID)
|
|
|
|
if err != nil {
|
2020-05-25 06:21:58 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-09-24 09:38:28 +00:00
|
|
|
if iam.SetUpStarted != iam.SetUpDone {
|
|
|
|
return errors.ThrowInternal(nil, "SETUP-QeukK", "started step is not equal to done")
|
2020-05-18 09:32:16 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getOIDCResponseTypes(responseTypes []string) []proj_model.OIDCResponseType {
|
|
|
|
types := make([]proj_model.OIDCResponseType, len(responseTypes))
|
|
|
|
for i, t := range responseTypes {
|
|
|
|
types[i] = getOIDCResponseType(t)
|
|
|
|
}
|
|
|
|
return types
|
|
|
|
}
|
|
|
|
|
|
|
|
func getOIDCResponseType(responseType string) proj_model.OIDCResponseType {
|
|
|
|
switch responseType {
|
2020-06-23 12:47:47 +00:00
|
|
|
case OIDCResponseTypeCode:
|
|
|
|
return proj_model.OIDCResponseTypeCode
|
|
|
|
case OIDCResponseTypeIDToken:
|
|
|
|
return proj_model.OIDCResponseTypeIDToken
|
|
|
|
case OIDCResponseTypeToken:
|
2020-07-09 13:52:20 +00:00
|
|
|
return proj_model.OIDCResponseTypeIDTokenToken
|
2020-06-23 12:47:47 +00:00
|
|
|
}
|
|
|
|
return proj_model.OIDCResponseTypeCode
|
2020-05-18 09:32:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getOIDCGrantTypes(grantTypes []string) []proj_model.OIDCGrantType {
|
|
|
|
types := make([]proj_model.OIDCGrantType, len(grantTypes))
|
|
|
|
for i, t := range grantTypes {
|
|
|
|
types[i] = getOIDCGrantType(t)
|
|
|
|
}
|
|
|
|
return types
|
|
|
|
}
|
|
|
|
|
|
|
|
func getOIDCGrantType(grantTypes string) proj_model.OIDCGrantType {
|
|
|
|
switch grantTypes {
|
2020-06-23 12:47:47 +00:00
|
|
|
case OIDCGrantTypeAuthorizationCode:
|
|
|
|
return proj_model.OIDCGrantTypeAuthorizationCode
|
|
|
|
case OIDCGrantTypeImplicit:
|
|
|
|
return proj_model.OIDCGrantTypeImplicit
|
|
|
|
case OIDCGrantTypeRefreshToken:
|
|
|
|
return proj_model.OIDCGrantTypeRefreshToken
|
|
|
|
}
|
|
|
|
return proj_model.OIDCGrantTypeAuthorizationCode
|
2020-05-18 09:32:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getOIDCApplicationType(appType string) proj_model.OIDCApplicationType {
|
|
|
|
switch appType {
|
2020-06-23 12:47:47 +00:00
|
|
|
case OIDCApplicationTypeNative:
|
|
|
|
return proj_model.OIDCApplicationTypeNative
|
|
|
|
case OIDCApplicationTypeUserAgent:
|
|
|
|
return proj_model.OIDCApplicationTypeUserAgent
|
|
|
|
case OIDCApplicationTypeWeb:
|
|
|
|
return proj_model.OIDCApplicationTypeWeb
|
|
|
|
}
|
|
|
|
return proj_model.OIDCApplicationTypeWeb
|
2020-05-18 09:32:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getOIDCAuthMethod(authMethod string) proj_model.OIDCAuthMethodType {
|
|
|
|
switch authMethod {
|
2020-06-23 12:47:47 +00:00
|
|
|
case OIDCAuthMethodTypeNone:
|
|
|
|
return proj_model.OIDCAuthMethodTypeNone
|
|
|
|
case OIDCAuthMethodTypeBasic:
|
|
|
|
return proj_model.OIDCAuthMethodTypeBasic
|
|
|
|
case OIDCAuthMethodTypePost:
|
|
|
|
return proj_model.OIDCAuthMethodTypePost
|
|
|
|
}
|
2020-08-18 08:04:56 +00:00
|
|
|
return proj_model.OIDCAuthMethodTypeBasic
|
2020-05-18 09:32:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func setSetUpContextData(ctx context.Context, orgID string) context.Context {
|
2020-07-08 11:56:37 +00:00
|
|
|
return authz.SetCtxData(ctx, authz.CtxData{UserID: SetupUser, OrgID: orgID})
|
2020-05-18 09:32:16 +00:00
|
|
|
}
|