mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
43fb3fd1a6
* fix: potential memory leak * feat(actions): possibility to parse json feat(actions): possibility to perform http calls * add query call * feat(api): list flow and trigger types fix(api): switch flow and trigger types to dynamic objects * fix(translations): add action translations * use `domain.FlowType` * localizers * localization * trigger types * options on `query.Action` * add functions for actions * feat: management api: add list flow and trigger (#4352) * console changes * cleanup * fix: wrong localization Co-authored-by: Max Peintner <max@caos.ch> * id token works * check if claims not nil * feat(actions): metadata api * refactor(actions): modules * fix: allow prerelease * fix: test * feat(actions): deny list for http hosts * feat(actions): deny list for http hosts * refactor: actions * fix: different error ids * fix: rename statusCode to status * Actions objects as options (#4418) * fix: rename statusCode to status * fix(actions): objects as options * fix(actions): objects as options * fix(actions): set fields * add http client to old actions * fix(actions): add log module * fix(actions): add user to context where possible * fix(actions): add user to ctx in external authorization/pre creation * fix(actions): query correct flow in claims * test: actions * fix(id-generator): panic if no machine id * tests * maybe this? * fix linting * refactor: improve code * fix: metadata and usergrant usage in actions * fix: appendUserGrant * fix: allowedToFail and timeout in action execution * fix: allowed to fail in token complement flow * docs: add action log claim * Update defaults.yaml * fix log claim * remove prerelease build Co-authored-by: Max Peintner <max@caos.ch> Co-authored-by: Livio Spring <livio.a@gmail.com>
146 lines
4.6 KiB
Go
146 lines
4.6 KiB
Go
package action
|
|
|
|
import (
|
|
"google.golang.org/protobuf/types/known/durationpb"
|
|
|
|
object_grpc "github.com/zitadel/zitadel/internal/api/grpc/object"
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
"github.com/zitadel/zitadel/internal/query"
|
|
action_pb "github.com/zitadel/zitadel/pkg/grpc/action"
|
|
message_pb "github.com/zitadel/zitadel/pkg/grpc/message"
|
|
)
|
|
|
|
// for backward compatability: old enum identifiers are mapped as well
|
|
func FlowTypeToDomain(flowType string) domain.FlowType {
|
|
switch flowType {
|
|
case "FLOW_TYPE_EXTERNAL_AUTHENTICATION", domain.FlowTypeExternalAuthentication.ID():
|
|
return domain.FlowTypeExternalAuthentication
|
|
case domain.FlowTypeCustomiseToken.ID():
|
|
return domain.FlowTypeCustomiseToken
|
|
default:
|
|
return domain.FlowTypeUnspecified
|
|
}
|
|
}
|
|
|
|
func FlowTypeToPb(typ domain.FlowType) *action_pb.FlowType {
|
|
return &action_pb.FlowType{
|
|
Id: typ.ID(),
|
|
Name: &message_pb.LocalizedMessage{
|
|
Key: typ.LocalizationKey(),
|
|
},
|
|
}
|
|
}
|
|
|
|
// TriggerTypeToDomain maps the pb type to domain
|
|
// for backward compatability: old enum identifiers are mapped as well
|
|
func TriggerTypeToDomain(triggerType string) domain.TriggerType {
|
|
switch triggerType {
|
|
case "TRIGGER_TYPE_POST_AUTHENTICATION", domain.TriggerTypePostAuthentication.ID():
|
|
return domain.TriggerTypePostAuthentication
|
|
case "TRIGGER_TYPE_PRE_CREATION", domain.TriggerTypePreCreation.ID():
|
|
return domain.TriggerTypePreCreation
|
|
case "TRIGGER_TYPE_POST_CREATION", domain.TriggerTypePostCreation.ID():
|
|
return domain.TriggerTypePostCreation
|
|
case domain.TriggerTypePreAccessTokenCreation.ID():
|
|
return domain.TriggerTypePreAccessTokenCreation
|
|
case domain.TriggerTypePreUserinfoCreation.ID():
|
|
return domain.TriggerTypePreUserinfoCreation
|
|
default:
|
|
return domain.TriggerTypeUnspecified
|
|
}
|
|
}
|
|
|
|
func TriggerTypesToPb(types []domain.TriggerType) []*action_pb.TriggerType {
|
|
list := make([]*action_pb.TriggerType, len(types))
|
|
for i, typ := range types {
|
|
list[i] = TriggerTypeToPb(typ)
|
|
}
|
|
return list
|
|
}
|
|
|
|
func TriggerTypeToPb(typ domain.TriggerType) *action_pb.TriggerType {
|
|
return &action_pb.TriggerType{
|
|
Id: typ.ID(),
|
|
Name: &message_pb.LocalizedMessage{
|
|
Key: typ.LocalizationKey(),
|
|
},
|
|
}
|
|
}
|
|
|
|
func FlowToPb(flow *query.Flow) *action_pb.Flow {
|
|
return &action_pb.Flow{
|
|
Type: FlowTypeToPb(flow.Type),
|
|
Details: object_grpc.ChangeToDetailsPb(flow.Sequence, flow.ChangeDate, flow.ResourceOwner),
|
|
State: action_pb.FlowState_FLOW_STATE_ACTIVE, //TODO: state in next release
|
|
TriggerActions: TriggerActionsToPb(flow.TriggerActions),
|
|
}
|
|
}
|
|
|
|
func TriggerActionToPb(trigger domain.TriggerType, actions []*query.Action) *action_pb.TriggerAction {
|
|
return &action_pb.TriggerAction{
|
|
TriggerType: TriggerTypeToPb(trigger),
|
|
Actions: ActionsToPb(actions),
|
|
}
|
|
}
|
|
|
|
func TriggerActionsToPb(triggers map[domain.TriggerType][]*query.Action) []*action_pb.TriggerAction {
|
|
list := make([]*action_pb.TriggerAction, 0)
|
|
for trigger, actions := range triggers {
|
|
list = append(list, TriggerActionToPb(trigger, actions))
|
|
}
|
|
return list
|
|
}
|
|
|
|
func ActionsToPb(actions []*query.Action) []*action_pb.Action {
|
|
list := make([]*action_pb.Action, len(actions))
|
|
for i, action := range actions {
|
|
list[i] = ActionToPb(action)
|
|
}
|
|
return list
|
|
}
|
|
|
|
func ActionToPb(action *query.Action) *action_pb.Action {
|
|
return &action_pb.Action{
|
|
Id: action.ID,
|
|
Details: object_grpc.ChangeToDetailsPb(action.Sequence, action.ChangeDate, action.ResourceOwner),
|
|
State: ActionStateToPb(action.State),
|
|
Name: action.Name,
|
|
Script: action.Script,
|
|
Timeout: durationpb.New(action.Timeout()),
|
|
AllowedToFail: action.AllowedToFail,
|
|
}
|
|
}
|
|
|
|
func ActionStateToPb(state domain.ActionState) action_pb.ActionState {
|
|
switch state {
|
|
case domain.ActionStateActive:
|
|
return action_pb.ActionState_ACTION_STATE_ACTIVE
|
|
case domain.ActionStateInactive:
|
|
return action_pb.ActionState_ACTION_STATE_INACTIVE
|
|
default:
|
|
return action_pb.ActionState_ACTION_STATE_UNSPECIFIED
|
|
}
|
|
}
|
|
|
|
func ActionNameQuery(q *action_pb.ActionNameQuery) (query.SearchQuery, error) {
|
|
return query.NewActionNameSearchQuery(object_grpc.TextMethodToQuery(q.Method), q.Name)
|
|
}
|
|
|
|
func ActionStateQuery(q *action_pb.ActionStateQuery) (query.SearchQuery, error) {
|
|
return query.NewActionStateSearchQuery(ActionStateToDomain(q.State))
|
|
}
|
|
func ActionIDQuery(q *action_pb.ActionIDQuery) (query.SearchQuery, error) {
|
|
return query.NewActionIDSearchQuery(q.Id)
|
|
}
|
|
|
|
func ActionStateToDomain(state action_pb.ActionState) domain.ActionState {
|
|
switch state {
|
|
case action_pb.ActionState_ACTION_STATE_ACTIVE:
|
|
return domain.ActionStateActive
|
|
case action_pb.ActionState_ACTION_STATE_INACTIVE:
|
|
return domain.ActionStateInactive
|
|
default:
|
|
return domain.ActionStateUnspecified
|
|
}
|
|
}
|