95 lines
2.2 KiB
Go
95 lines
2.2 KiB
Go
|
package authn
|
||
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
"time"
|
||
|
|
||
|
"forge.cadoles.com/cadoles/bouncer/internal/store"
|
||
|
"github.com/mitchellh/mapstructure"
|
||
|
"github.com/pkg/errors"
|
||
|
)
|
||
|
|
||
|
type LayerOptions struct {
|
||
|
MatchURLs []string `mapstructure:"matchURLs"`
|
||
|
Headers HeadersOptions `mapstructure:"headers"`
|
||
|
}
|
||
|
|
||
|
type HeadersOptions struct {
|
||
|
Rules []string `mapstructure:"rules"`
|
||
|
}
|
||
|
|
||
|
func DefaultLayerOptions() LayerOptions {
|
||
|
return LayerOptions{
|
||
|
MatchURLs: []string{"*"},
|
||
|
Headers: HeadersOptions{
|
||
|
Rules: []string{
|
||
|
"del_headers('Remote-*')",
|
||
|
"set_header('Remote-User', lower(user.subject))",
|
||
|
"set_header('Remote-Name', user.attrs.claim_name != nil ? user.attrs.claim_name : '')",
|
||
|
"user.attrs.claim_groups != nil ? set_header('Remote-Groups', join(user.attrs.claim_groups, ',')) : nil",
|
||
|
"set_header('Remote-Email', user.attrs.claim_email != nil ? user.attrs.claim_email : '')",
|
||
|
`map(
|
||
|
toPairs(user.attrs), {
|
||
|
let name = replace(lower(string(get(#, 0))), '_', '-');
|
||
|
set_header(
|
||
|
'Remote-User-Attr-' + name,
|
||
|
get(#, 1)
|
||
|
)
|
||
|
})
|
||
|
`,
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func fromStoreOptions(storeOptions store.LayerOptions) (*LayerOptions, error) {
|
||
|
layerOptions := DefaultLayerOptions()
|
||
|
|
||
|
if err := FromStoreOptions(storeOptions, &layerOptions); err != nil {
|
||
|
return nil, errors.WithStack(err)
|
||
|
}
|
||
|
|
||
|
return &layerOptions, nil
|
||
|
}
|
||
|
|
||
|
func FromStoreOptions(storeOptions store.LayerOptions, dest any) error {
|
||
|
config := mapstructure.DecoderConfig{
|
||
|
Result: dest,
|
||
|
DecodeHook: mapstructure.ComposeDecodeHookFunc(
|
||
|
toDurationHookFunc(),
|
||
|
),
|
||
|
}
|
||
|
|
||
|
decoder, err := mapstructure.NewDecoder(&config)
|
||
|
if err != nil {
|
||
|
return errors.WithStack(err)
|
||
|
}
|
||
|
|
||
|
if err := decoder.Decode(storeOptions); err != nil {
|
||
|
return errors.WithStack(err)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func toDurationHookFunc() mapstructure.DecodeHookFunc {
|
||
|
return func(
|
||
|
f reflect.Type,
|
||
|
t reflect.Type,
|
||
|
data interface{}) (interface{}, error) {
|
||
|
if t != reflect.TypeOf(*new(time.Duration)) {
|
||
|
return data, nil
|
||
|
}
|
||
|
|
||
|
switch f.Kind() {
|
||
|
case reflect.String:
|
||
|
return time.ParseDuration(data.(string))
|
||
|
case reflect.Int64:
|
||
|
return time.Duration(data.(int64) * int64(time.Second)), nil
|
||
|
default:
|
||
|
return data, nil
|
||
|
}
|
||
|
// Convert it by parsing
|
||
|
}
|
||
|
}
|