24f91d9077
* copyright headers for agent folder * Ignore test data files * fix proto files and remove headers in agent/uiserver folder * ignore deep-copy files * copyright headers for agent folder * fix merge conflicts * copyright headers for agent folder * Ignore test data files * fix proto files * ignore agent/uiserver folder for now * copyright headers for agent folder * Add copyright headers for acl, api and bench folders
29 lines
698 B
Go
29 lines
698 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build !consulent
|
|
// +build !consulent
|
|
|
|
package acl
|
|
|
|
// AuthorizerContext contains extra information that can be
|
|
// used in the determination of an ACL enforcement decision.
|
|
type AuthorizerContext struct {
|
|
// Peer is the name of the peer that the resource was imported from.
|
|
Peer string
|
|
}
|
|
|
|
func (c *AuthorizerContext) PeerOrEmpty() string {
|
|
if c == nil {
|
|
return ""
|
|
}
|
|
return c.Peer
|
|
}
|
|
|
|
// enterpriseAuthorizer stub interface
|
|
type enterpriseAuthorizer interface{}
|
|
|
|
func enforceEnterprise(_ Authorizer, _ Resource, _ string, _ string, _ *AuthorizerContext) (bool, EnforcementDecision, error) {
|
|
return false, Deny, nil
|
|
}
|