114 lines
2.7 KiB
Go
114 lines
2.7 KiB
Go
// DEPRECATED (ACL-Legacy-Compat)
|
|
//
|
|
// Everything within this file is deprecated and related to the original ACL
|
|
// implementation. Once support for v1 ACLs are removed this whole file can
|
|
// be deleted.
|
|
|
|
package structs
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
const (
|
|
// ACLTokenTypeClient tokens have rules applied
|
|
ACLTokenTypeClient = "client"
|
|
|
|
// ACLTokenTypeManagement tokens have an always allow policy, so they can
|
|
// make other tokens and can access all resources.
|
|
ACLTokenTypeManagement = "management"
|
|
|
|
// ACLTokenTypeNone
|
|
ACLTokenTypeNone = ""
|
|
)
|
|
|
|
// ACL is used to represent a token and its rules
|
|
type ACL struct {
|
|
ID string
|
|
Name string
|
|
Type string
|
|
Rules string
|
|
|
|
RaftIndex
|
|
}
|
|
|
|
// ACLs is a slice of ACLs.
|
|
type ACLs []*ACL
|
|
|
|
// Convert does a 1-1 mapping of the ACLCompat structure to its ACLToken
|
|
// equivalent. This will NOT fill in the other ACLToken fields or perform any other
|
|
// upgrade (other than correcting an older HCL syntax that is no longer
|
|
// supported).
|
|
// TODO(ACL-Legacy-Compat): remove
|
|
func (a *ACL) Convert() *ACLToken {
|
|
// Ensure that we correct any old HCL in legacy tokens to prevent old
|
|
// syntax from leaking elsewhere into the system.
|
|
//
|
|
// DEPRECATED (ACL-Legacy-Compat)
|
|
correctedRules := SanitizeLegacyACLTokenRules(a.Rules)
|
|
if correctedRules != "" {
|
|
a.Rules = correctedRules
|
|
}
|
|
|
|
token := &ACLToken{
|
|
AccessorID: "",
|
|
SecretID: a.ID,
|
|
Description: a.Name,
|
|
Policies: nil,
|
|
ServiceIdentities: nil,
|
|
NodeIdentities: nil,
|
|
Type: a.Type,
|
|
Rules: a.Rules,
|
|
Local: false,
|
|
RaftIndex: a.RaftIndex,
|
|
}
|
|
|
|
token.SetHash(true)
|
|
return token
|
|
}
|
|
|
|
// Convert attempts to convert an ACLToken into an ACLCompat.
|
|
// TODO(ACL-Legacy-Compat): remove
|
|
func (tok *ACLToken) Convert() (*ACL, error) {
|
|
if tok.Type == "" {
|
|
return nil, fmt.Errorf("Cannot convert ACLToken into compat token")
|
|
}
|
|
|
|
compat := &ACL{
|
|
ID: tok.SecretID,
|
|
Name: tok.Description,
|
|
Type: tok.Type,
|
|
Rules: tok.Rules,
|
|
RaftIndex: tok.RaftIndex,
|
|
}
|
|
return compat, nil
|
|
}
|
|
|
|
// ACLSpecificRequest is used to request an ACL by ID
|
|
type ACLSpecificRequest struct {
|
|
Datacenter string
|
|
ACL string
|
|
QueryOptions
|
|
}
|
|
|
|
// RequestDatacenter returns the DC this request is targeted to.
|
|
func (r *ACLSpecificRequest) RequestDatacenter() string {
|
|
return r.Datacenter
|
|
}
|
|
|
|
// IndexedACLs has tokens along with the Raft metadata about them.
|
|
type IndexedACLs struct {
|
|
ACLs ACLs
|
|
QueryMeta
|
|
}
|
|
|
|
// ACLBootstrap keeps track of whether bootstrapping ACLs is allowed for a
|
|
// cluster.
|
|
type ACLBootstrap struct {
|
|
// AllowBootstrap will only be true if no existing management tokens
|
|
// have been found.
|
|
AllowBootstrap bool
|
|
|
|
RaftIndex
|
|
}
|