Files
aperture/lsat/credential.go
2020-03-19 16:09:09 +01:00

53 lines
1.5 KiB
Go

package lsat
import (
"context"
"encoding/hex"
"gopkg.in/macaroon.v2"
)
// MacaroonCredential wraps a macaroon to implement the
// credentials.PerRPCCredentials interface.
type MacaroonCredential struct {
*macaroon.Macaroon
// AllowInsecure specifies if the macaroon is allowed to be sent over
// insecure transport channels. This should only ever be set to true if
// the insecure connection is proxied through tor and the destination
// address is an onion service.
AllowInsecure bool
}
// RequireTransportSecurity implements the PerRPCCredentials interface.
func (m MacaroonCredential) RequireTransportSecurity() bool {
return !m.AllowInsecure
}
// GetRequestMetadata implements the PerRPCCredentials interface. This method
// is required in order to pass the wrapped macaroon into the gRPC context.
// With this, the macaroon will be available within the request handling scope
// of the ultimate gRPC server implementation.
func (m MacaroonCredential) GetRequestMetadata(_ context.Context,
_ ...string) (map[string]string, error) {
macBytes, err := m.MarshalBinary()
if err != nil {
return nil, err
}
md := make(map[string]string)
md["macaroon"] = hex.EncodeToString(macBytes)
return md, nil
}
// NewMacaroonCredential returns a copy of the passed macaroon wrapped in a
// MacaroonCredential struct which implements PerRPCCredentials.
func NewMacaroonCredential(m *macaroon.Macaroon,
allowInsecure bool) MacaroonCredential {
ms := MacaroonCredential{AllowInsecure: allowInsecure}
ms.Macaroon = m.Clone()
return ms
}