zitadel/internal/protoc/protoc-gen-authoption/templates/auth_method_mapping.go.tmpl

35 lines
1006 B
Cheetah
Raw Normal View History

2020-03-23 10:53:12 +00:00
// Code generated by protoc-gen-authmethod. DO NOT EDIT.
package {{.File.GoPkg.Name}}
import (
"google.golang.org/grpc"
2020-03-23 15:56:02 +00:00
utils_auth "github.com/caos/zitadel/internal/api/auth"
2020-03-23 15:28:35 +00:00
utils_grpc "github.com/caos/zitadel/internal/api/grpc"
2020-03-23 10:53:12 +00:00
)
{{ range $s := .File.Services }}
/**
* {{$s.Name}}
*/
2020-03-23 15:56:02 +00:00
var {{$s.Name}}_AuthMethods = utils_auth.MethodMapping {
2020-03-23 10:53:12 +00:00
{{ range $m := $s.Method}}
{{ $mAuthOpt := option $m.Options "caos.zitadel.utils.v1.auth_option" }}
{{ if and $mAuthOpt $mAuthOpt.Permission }}
2020-03-23 15:56:02 +00:00
"/{{$.File.Package}}.{{$s.Name}}/{{.Name}}": utils_auth.Option{
2020-03-23 10:53:12 +00:00
Permission: "{{$mAuthOpt.Permission}}",
CheckParam: "{{$mAuthOpt.CheckFieldName}}",
},
{{end}}
{{ end}}
}
2020-03-23 15:56:02 +00:00
func {{$s.Name}}_Authorization_Interceptor(verifier utils_auth.TokenVerifier, authConf *utils_auth.Config) grpc.UnaryServerInterceptor {
2020-03-23 10:53:12 +00:00
return utils_grpc.AuthorizationInterceptor(verifier, authConf, {{$s.Name}}_AuthMethods)
}
{{ end }}