mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-27 22:30:50 +00:00

# Which Problems Are Solved It was not possible to use the `api.v1.appendUserGrant` function in the `postCreation` trigger action as documented. # How the Problems Are Solved - Correctly initialize the javascript / Goja function - Added `projectID` and `projectGrantID` (as documented), but kept `projectId` and `projectGrantId` (for backwards compatibility) when mapping the object in the `appendUserGrant` function # Additional Changes None # Additional Context - A customer reached out to support regarding this issue. - requires back port to 2.70.x
74 lines
1.5 KiB
Go
74 lines
1.5 KiB
Go
package actions
|
|
|
|
import (
|
|
"github.com/dop251/goja"
|
|
"github.com/zitadel/logging"
|
|
)
|
|
|
|
type fields map[string]interface{}
|
|
|
|
type FieldOption func(*FieldConfig)
|
|
|
|
type FieldConfig struct {
|
|
fields
|
|
|
|
Runtime *goja.Runtime
|
|
}
|
|
|
|
func SetFields(name string, values ...interface{}) FieldOption {
|
|
return func(p *FieldConfig) {
|
|
if len(values) == 0 {
|
|
return
|
|
}
|
|
|
|
for _, value := range values {
|
|
val, ok := value.(FieldOption)
|
|
// is the lowest field and can be set without further checks
|
|
|
|
if !ok {
|
|
// {
|
|
// "value": "some value"
|
|
// }
|
|
p.set(name, value)
|
|
continue
|
|
}
|
|
|
|
var field fields
|
|
if f, ok := p.fields[name]; ok {
|
|
// check if the found field is an object
|
|
if field, ok = f.(fields); !ok {
|
|
// panic because overwriting fields is not allowed
|
|
logging.WithFields("sub", name).Warn("sub is not an object")
|
|
panic("unable to prepare parameter")
|
|
}
|
|
} else {
|
|
// field does not exist so far.
|
|
// sub object for field can be created
|
|
field = fields{}
|
|
p.fields[name] = field
|
|
}
|
|
|
|
fieldParam := FieldConfig{
|
|
Runtime: p.Runtime,
|
|
fields: field,
|
|
}
|
|
val(&fieldParam)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (f *FieldConfig) set(name string, value interface{}) {
|
|
if _, ok := f.fields[name]; ok {
|
|
logging.WithFields("name", name).Error("tried to overwrite field")
|
|
panic("tried to overwrite field")
|
|
}
|
|
switch v := value.(type) {
|
|
case func(config *FieldConfig) interface{}:
|
|
f.fields[name] = v(f)
|
|
case func(config *FieldConfig) func(call goja.FunctionCall) goja.Value:
|
|
f.fields[name] = v(f)
|
|
default:
|
|
f.fields[name] = value
|
|
}
|
|
}
|