2017-08-18 04:50:15 +03:00
|
|
|
package macaroons
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/hex"
|
|
|
|
|
2018-01-16 19:18:41 +03:00
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
|
|
|
macaroon "gopkg.in/macaroon.v2"
|
2017-08-18 04:50:15 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// MacaroonCredential wraps a macaroon to implement the
|
|
|
|
// credentials.PerRPCCredentials interface.
|
|
|
|
type MacaroonCredential struct {
|
|
|
|
*macaroon.Macaroon
|
|
|
|
}
|
|
|
|
|
|
|
|
// RequireTransportSecurity implements the PerRPCCredentials interface.
|
|
|
|
func (m MacaroonCredential) RequireTransportSecurity() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2017-08-22 09:18:19 +03:00
|
|
|
// 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.
|
2017-08-18 04:50:15 +03:00
|
|
|
func (m MacaroonCredential) GetRequestMetadata(ctx context.Context,
|
|
|
|
uri ...string) (map[string]string, error) {
|
2017-08-22 09:18:19 +03:00
|
|
|
|
2017-08-18 04:50:15 +03:00
|
|
|
macBytes, err := m.MarshalBinary()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-08-22 09:18:19 +03:00
|
|
|
|
2017-08-18 04:50:15 +03:00
|
|
|
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) MacaroonCredential {
|
|
|
|
ms := MacaroonCredential{}
|
|
|
|
ms.Macaroon = m.Clone()
|
|
|
|
return ms
|
|
|
|
}
|