mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 13:56:27 +01:00
* Add gql client generation files * Update dependencies * Add stash-box client generation to the makefile * Move scraped scene object matchers to models * Add stash-box to scrape with dropdown * Add scrape scene from fingerprint in UI
37 lines
753 B
Go
37 lines
753 B
Go
package ast
|
|
|
|
func arg2map(defs ArgumentDefinitionList, args ArgumentList, vars map[string]interface{}) map[string]interface{} {
|
|
result := map[string]interface{}{}
|
|
var err error
|
|
|
|
for _, argDef := range defs {
|
|
var val interface{}
|
|
var hasValue bool
|
|
|
|
if argValue := args.ForName(argDef.Name); argValue != nil {
|
|
if argValue.Value.Kind == Variable {
|
|
val, hasValue = vars[argValue.Value.Raw]
|
|
} else {
|
|
val, err = argValue.Value.Value(vars)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
hasValue = true
|
|
}
|
|
}
|
|
|
|
if !hasValue && argDef.DefaultValue != nil {
|
|
val, err = argDef.DefaultValue.Value(vars)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
hasValue = true
|
|
}
|
|
|
|
if hasValue {
|
|
result[argDef.Name] = val
|
|
}
|
|
}
|
|
|
|
return result
|
|
}
|