68 lines
2.0 KiB
Go
68 lines
2.0 KiB
Go
// +build !consulent
|
|
|
|
package structs
|
|
|
|
import (
|
|
"github.com/hashicorp/consul/acl"
|
|
)
|
|
|
|
func (ixn *Intention) SourceEnterpriseMeta() *EnterpriseMeta {
|
|
return DefaultEnterpriseMeta()
|
|
}
|
|
|
|
func (ixn *Intention) DestinationEnterpriseMeta() *EnterpriseMeta {
|
|
return DefaultEnterpriseMeta()
|
|
}
|
|
|
|
func (e *IntentionMatchEntry) GetEnterpriseMeta() *EnterpriseMeta {
|
|
return DefaultEnterpriseMeta()
|
|
}
|
|
|
|
func (e *IntentionQueryExact) SourceEnterpriseMeta() *EnterpriseMeta {
|
|
return DefaultEnterpriseMeta()
|
|
}
|
|
|
|
func (e *IntentionQueryExact) DestinationEnterpriseMeta() *EnterpriseMeta {
|
|
return DefaultEnterpriseMeta()
|
|
}
|
|
|
|
// FillAuthzContext can fill in an acl.AuthorizerContext object to setup
|
|
// extra parameters for ACL enforcement. In OSS there is currently nothing
|
|
// extra to be done.
|
|
func (_ *Intention) FillAuthzContext(_ *acl.AuthorizerContext, _ bool) {
|
|
// do nothing
|
|
}
|
|
|
|
// FillAuthzContext can fill in an acl.AuthorizerContext object to setup
|
|
// extra parameters for ACL enforcement. In OSS there is currently nothing
|
|
// extra to be done.
|
|
func (_ *IntentionMatchEntry) FillAuthzContext(_ *acl.AuthorizerContext) {
|
|
// do nothing
|
|
}
|
|
|
|
// FillAuthzContext can fill in an acl.AuthorizerContext object to setup
|
|
// extra parameters for ACL enforcement. In OSS there is currently nothing
|
|
// extra to be done.
|
|
func (_ *IntentionQueryCheck) FillAuthzContext(_ *acl.AuthorizerContext) {
|
|
// do nothing
|
|
}
|
|
|
|
// DefaultNamespaces will populate both the SourceNS and DestinationNS fields
|
|
// if they are empty with the proper defaults.
|
|
func (ixn *Intention) DefaultNamespaces(_ *EnterpriseMeta) {
|
|
// Until we support namespaces, we force all namespaces to be default
|
|
if ixn.SourceNS == "" {
|
|
ixn.SourceNS = IntentionDefaultNamespace
|
|
}
|
|
if ixn.DestinationNS == "" {
|
|
ixn.DestinationNS = IntentionDefaultNamespace
|
|
}
|
|
}
|
|
|
|
// FillNonDefaultNamespaces will populate the SourceNS and DestinationNS fields
|
|
// if they are empty with the proper defaults, but only if the proper defaults
|
|
// are themselves not "default".
|
|
func (ixn *Intention) FillNonDefaultNamespaces(_ *EnterpriseMeta) {
|
|
// do nothing
|
|
}
|