mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-19 06:11:32 +00:00

* feat: check oidc compliance * fix: add tests * fix: add oidc config tests * fix: add oidc config tests user agent * fix: test oidc config compliance * fix: test oidc config compliance * fix: useragent implicit authmethod none * fix: merge master * feat: translate compliance problems * feat: check native app for custom url * fix: better compliance handling * fix: better compliance handling * feat: add odidc dev mode * fix: remove deprecated request fro management api * fix: oidc package version * fix: migration * fix: tests * fix: remove unused functions * fix: generate proto files * fix: native implicit and code none compliant * fix: create project * Update internal/project/model/oidc_config_test.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: tests * Update internal/project/model/oidc_config.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * Update internal/project/model/oidc_config.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: tests Co-authored-by: Livio Amstutz <livio.a@gmail.com>
70 lines
1.5 KiB
Go
70 lines
1.5 KiB
Go
package model
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/model"
|
|
"time"
|
|
)
|
|
|
|
type ApplicationView struct {
|
|
ID string
|
|
ProjectID string
|
|
Name string
|
|
CreationDate time.Time
|
|
ChangeDate time.Time
|
|
State AppState
|
|
|
|
IsOIDC bool
|
|
OIDCVersion OIDCVersion
|
|
OIDCClientID string
|
|
OIDCRedirectUris []string
|
|
OIDCResponseTypes []OIDCResponseType
|
|
OIDCGrantTypes []OIDCGrantType
|
|
OIDCApplicationType OIDCApplicationType
|
|
OIDCAuthMethodType OIDCAuthMethodType
|
|
OIDCPostLogoutRedirectUris []string
|
|
NoneCompliant bool
|
|
ComplianceProblems []string
|
|
DevMode bool
|
|
|
|
Sequence uint64
|
|
}
|
|
|
|
type ApplicationSearchRequest struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
SortingColumn AppSearchKey
|
|
Asc bool
|
|
Queries []*ApplicationSearchQuery
|
|
}
|
|
|
|
type AppSearchKey int32
|
|
|
|
const (
|
|
AppSearchKeyUnspecified AppSearchKey = iota
|
|
AppSearchKeyName
|
|
AppSearchKeyOIDCClientID
|
|
AppSearchKeyProjectID
|
|
AppSearchKeyAppID
|
|
)
|
|
|
|
type ApplicationSearchQuery struct {
|
|
Key AppSearchKey
|
|
Method model.SearchMethod
|
|
Value interface{}
|
|
}
|
|
|
|
type ApplicationSearchResponse struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
TotalResult uint64
|
|
Result []*ApplicationView
|
|
Sequence uint64
|
|
Timestamp time.Time
|
|
}
|
|
|
|
func (r *ApplicationSearchRequest) EnsureLimit(limit uint64) {
|
|
if r.Limit == 0 || r.Limit > limit {
|
|
r.Limit = limit
|
|
}
|
|
}
|