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:28:35 +00:00
|
|
|
utils_auth "github.com/caos/zitadel/internal/api//auth"
|
|
|
|
utils_grpc "github.com/caos/zitadel/internal/api/grpc"
|
2020-03-23 10:53:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
{{ range $s := .File.Services }}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {{$s.Name}}
|
|
|
|
*/
|
|
|
|
|
|
|
|
var {{$s.Name}}_AuthMethods = utils_auth.AuthMethodMapping {
|
|
|
|
{{ range $m := $s.Method}}
|
|
|
|
{{ $mAuthOpt := option $m.Options "caos.zitadel.utils.v1.auth_option" }}
|
|
|
|
{{ if and $mAuthOpt $mAuthOpt.Permission }}
|
|
|
|
"/{{$.File.Package}}.{{$s.Name}}/{{.Name}}": utils_auth.AuthOption{
|
|
|
|
Permission: "{{$mAuthOpt.Permission}}",
|
|
|
|
CheckParam: "{{$mAuthOpt.CheckFieldName}}",
|
|
|
|
},
|
|
|
|
{{end}}
|
|
|
|
{{ end}}
|
|
|
|
}
|
|
|
|
|
|
|
|
func {{$s.Name}}_Authorization_Interceptor(verifier utils_auth.TokenVerifier, authConf *utils_auth.AuthConfig) grpc.UnaryServerInterceptor {
|
|
|
|
return utils_grpc.AuthorizationInterceptor(verifier, authConf, {{$s.Name}}_AuthMethods)
|
|
|
|
}
|
|
|
|
|
|
|
|
{{ end }}
|