Documentation ¶
Overview ¶
Package zpu is a utility library to update ZPE Policy.
Index ¶
- Constants
- func CheckState(config *ZpuConfiguration) ([]metrics.PolicyStatus, []error)
- func GetEtagForExistingPolicy(config *ZpuConfiguration, ztsClient zts.ZTSClient, domain string) string
- func GetJWSPolicies(config *ZpuConfiguration, ztsClient zts.ZTSClient, domain string) error
- func GetPolicies(config *ZpuConfiguration, ztsClient zts.ZTSClient, domain string) error
- func GetSignedPolicies(config *ZpuConfiguration, ztsClient zts.ZTSClient, domain string) error
- func GetSignedPolicyDataFromJson(config *ZpuConfiguration, ztsClient zts.ZTSClient, readFile *os.File) (*zts.SignedPolicyData, error)
- func GetSignedPolicyDataFromJws(config *ZpuConfiguration, ztsClient zts.ZTSClient, readFile *os.File) (*zts.SignedPolicyData, error)
- func PolicyUpdater(config *ZpuConfiguration) error
- func PolicyView(config *ZpuConfiguration, domainName string) error
- func ValidateJWSPolicies(config *ZpuConfiguration, ztsClient zts.ZTSClient, ...) ([]byte, error)
- func ValidateSignedPolicies(config *ZpuConfiguration, ztsClient zts.ZTSClient, ...) ([]byte, error)
- func WritePolicies(config *ZpuConfiguration, bytes []byte, domain string) error
- type AthenzConf
- type ZpuConf
- type ZpuConfiguration
Constants ¶
View Source
const ( DEFAULT_STARTUP_DELAY = 0 MAX_STARTUP_DELAY = 1440 DEFAULT_EXPIRY_CHECK = 2880 )
Default and maximal startup delay values.
Variables ¶
This section is empty.
Functions ¶
func CheckState ¶ added in v1.10.41
func CheckState(config *ZpuConfiguration) ([]metrics.PolicyStatus, []error)
func GetEtagForExistingPolicy ¶
func GetEtagForExistingPolicy(config *ZpuConfiguration, ztsClient zts.ZTSClient, domain string) string
func GetJWSPolicies ¶ added in v1.10.33
func GetJWSPolicies(config *ZpuConfiguration, ztsClient zts.ZTSClient, domain string) error
func GetPolicies ¶
func GetPolicies(config *ZpuConfiguration, ztsClient zts.ZTSClient, domain string) error
func GetSignedPolicies ¶ added in v1.10.33
func GetSignedPolicies(config *ZpuConfiguration, ztsClient zts.ZTSClient, domain string) error
func GetSignedPolicyDataFromJson ¶ added in v1.10.33
func GetSignedPolicyDataFromJson(config *ZpuConfiguration, ztsClient zts.ZTSClient, readFile *os.File) (*zts.SignedPolicyData, error)
func GetSignedPolicyDataFromJws ¶ added in v1.10.33
func GetSignedPolicyDataFromJws(config *ZpuConfiguration, ztsClient zts.ZTSClient, readFile *os.File) (*zts.SignedPolicyData, error)
func PolicyUpdater ¶
func PolicyUpdater(config *ZpuConfiguration) error
func PolicyView ¶ added in v1.10.39
func PolicyView(config *ZpuConfiguration, domainName string) error
func ValidateJWSPolicies ¶ added in v1.10.33
func ValidateJWSPolicies(config *ZpuConfiguration, ztsClient zts.ZTSClient, jwsPolicyData *zts.JWSPolicyData) ([]byte, error)
func ValidateSignedPolicies ¶
func ValidateSignedPolicies(config *ZpuConfiguration, ztsClient zts.ZTSClient, data *zts.DomainSignedPolicyData) ([]byte, error)
func WritePolicies ¶
func WritePolicies(config *ZpuConfiguration, bytes []byte, domain string) error
WritePolicies If domain policy file is not found, create the policy file and write policies in it. Else delete the existing file and write the modified policies to new file.
Types ¶
type AthenzConf ¶
type AthenzConf struct { ZtsUrl string `json:"ztsUrl"` ZmsUrl string `json:"zmsUrl"` ZtsPublicKeys []struct { Id string `json:"id"` Key string `json:"key"` } `json:"ztsPublicKeys"` ZmsPublicKeys []struct { Id string `json:"id"` Key string `json:"key"` } `json:"zmsPublicKeys"` }
func ReadAthenzConf ¶
func ReadAthenzConf(athenzConf string) (*AthenzConf, error)
type ZpuConf ¶
type ZpuConf struct { Domains string `json:"domains"` User string `json:"user"` PolicyDir string `json:"policyDir"` TempPolicyDir string `json:"tempPolicyDir"` MetricsDir string `json:"metricsDir"` LogMaxSize int `json:"logMaxsize"` LogMaxAge int `json:"logMaxage"` LogMaxBackups int `json:"logMaxbackups"` LogCompress bool `json:"logCompress"` PrivateKey string `json:"privateKeyFile"` CertFile string `json:"certFile"` CaCertFile string `json:"caCertFile"` Proxy bool `json:"proxy"` ExpiryCheck int `json:"expiryCheck"` CheckZMSSignature bool `json:"checkZMSSignature"` JWSPolicySupport bool `json:"jwsPolicySupport"` PolicyVersions map[string]string `json:"policyVersions"` }
func ReadZpuConf ¶
type ZpuConfiguration ¶
type ZpuConfiguration struct { Zts string Zms string DomainList string ZpuOwner string PolicyFileDir string TempPolicyFileDir string SiaDir string MetricsDir string ZmsKeysmap map[string]string ZtsKeysmap map[string]string StartUpDelay int ExpiryCheck int LogSize int LogAge int LogBackups int LogCompression bool PrivateKeyFile string CertFile string CaCertFile string Proxy bool CheckZMSSignature bool JWSPolicySupport bool PolicyVersions map[string]string ForceRefresh bool ExpiredFunc func(rdl.Timestamp) bool MinutesBetweenZtsCalls int }
func NewZpuConfiguration ¶
func NewZpuConfiguration(root, athensConfFile, zpuConfFile, siaDir string) (*ZpuConfiguration, error)
func (ZpuConfiguration) GetZmsPublicKey ¶
func (config ZpuConfiguration) GetZmsPublicKey(key string) string
func (ZpuConfiguration) GetZtsPublicKey ¶
func (config ZpuConfiguration) GetZtsPublicKey(key string) string
func (ZpuConfiguration) PutZmsPublicKey ¶ added in v1.10.33
func (config ZpuConfiguration) PutZmsPublicKey(key, publicKey string)
func (ZpuConfiguration) PutZtsPublicKey ¶ added in v1.10.33
func (config ZpuConfiguration) PutZtsPublicKey(key, publicKey string)
Directories ¶
Path | Synopsis |
---|---|
cmd
|
|
tools
Tools is a program that runs zpu.PolicyUpdater.
|
Tools is a program that runs zpu.PolicyUpdater. |
Package devel provides utility functions for testing (StartMockServer and CreateFile).
|
Package devel provides utility functions for testing (StartMockServer and CreateFile). |
Package test_data contains test data for zpe-updater as .go files.
|
Package test_data contains test data for zpe-updater as .go files. |
Package util provides utility types and functions for zpe-updater.
|
Package util provides utility types and functions for zpe-updater. |
Click to show internal directories.
Click to hide internal directories.