mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 18:36:30 +02:00
53 lines
1.2 KiB
Go
53 lines
1.2 KiB
Go
package envoyconfig
|
|
|
|
import (
|
|
"embed"
|
|
"io/fs"
|
|
)
|
|
|
|
//go:embed luascripts
|
|
var luaFS embed.FS
|
|
|
|
var luascripts struct {
|
|
ExtAuthzSetCookie string
|
|
CleanUpstream string
|
|
RemoveImpersonateHeaders string
|
|
RewriteHeaders string
|
|
SetClientCertificateMetadata string
|
|
LocalReplyType string
|
|
}
|
|
|
|
func init() {
|
|
fileToField := map[string]*string{
|
|
"luascripts/clean-upstream.lua": &luascripts.CleanUpstream,
|
|
"luascripts/ext-authz-set-cookie.lua": &luascripts.ExtAuthzSetCookie,
|
|
"luascripts/remove-impersonate-headers.lua": &luascripts.RemoveImpersonateHeaders,
|
|
"luascripts/rewrite-headers.lua": &luascripts.RewriteHeaders,
|
|
"luascripts/set-client-certificate-metadata.lua": &luascripts.SetClientCertificateMetadata,
|
|
"luascripts/local-reply-type.lua": &luascripts.LocalReplyType,
|
|
}
|
|
|
|
err := fs.WalkDir(luaFS, "luascripts", func(p string, d fs.DirEntry, err error) error {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if d.IsDir() {
|
|
return nil
|
|
}
|
|
|
|
bs, err := luaFS.ReadFile(p)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if ptr, ok := fileToField[p]; ok {
|
|
*ptr = string(bs)
|
|
}
|
|
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|