You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/zrpc/internal/auth/credential.go

52 lines
1005 B
Go

4 years ago
package auth
import (
"context"
"google.golang.org/grpc/metadata"
)
// A Credential is used to authenticate.
4 years ago
type Credential struct {
App string
Token string
}
// GetRequestMetadata gets the request metadata.
4 years ago
func (c *Credential) GetRequestMetadata(context.Context, ...string) (map[string]string, error) {
return map[string]string{
appKey: c.App,
tokenKey: c.Token,
}, nil
}
// RequireTransportSecurity always returns false.
4 years ago
func (c *Credential) RequireTransportSecurity() bool {
return false
}
// ParseCredential parses credential from given ctx.
4 years ago
func ParseCredential(ctx context.Context) Credential {
var credential Credential
md, ok := metadata.FromIncomingContext(ctx)
if !ok {
return credential
}
apps, tokens := md[appKey], md[tokenKey]
if len(apps) == 0 || len(tokens) == 0 {
return credential
}
app, token := apps[0], tokens[0]
if len(app) == 0 || len(token) == 0 {
return credential
}
credential.App = app
credential.Token = token
return credential
}