parser

package
v3.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 20, 2024 License: Apache-2.0 Imports: 8 Imported by: 5

Documentation

Index

Constants

View Source
const (
	ScopeApplication = "application"
	GeneralType      = "general"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type ConditionMatch added in v3.1.1

type ConditionMatch struct {
	Address         *common.AddressMatch    `yaml:"address"`
	ProviderAddress *common.AddressMatch    `yaml:"providerAddress"`
	Service         *common.ListStringMatch `yaml:"service"`
	App             *common.ListStringMatch `yaml:"app"`
	Param           []*common.ParamMatch    `yaml:"param"`
}

func (*ConditionMatch) IsMatch added in v3.1.1

func (c *ConditionMatch) IsMatch(host string, url *common.URL) bool

type ConfigItem

type ConfigItem struct {
	Type              string            `yaml:"type"`
	Enabled           bool              `yaml:"enabled"`
	Addresses         []string          `yaml:"addresses"`
	ProviderAddresses []string          `yaml:"providerAddresses"`
	Services          []string          `yaml:"services"`
	Applications      []string          `yaml:"applications"`
	Parameters        map[string]string `yaml:"parameters"`
	Side              string            `yaml:"side"`
	Match             *ConditionMatch   `yaml:"match"`
}

ConfigItem defines config item

type ConfigurationParser

type ConfigurationParser interface {
	Parse(string) (map[string]string, error)
	ParseToUrls(content string) ([]*common.URL, error)
}

ConfigurationParser interface

type ConfiguratorConfig

type ConfiguratorConfig struct {
	ConfigVersion string       `yaml:"configVersion"`
	Scope         string       `yaml:"scope"`
	Key           string       `yaml:"key"`
	Enabled       bool         `yaml:"enabled"`
	Configs       []ConfigItem `yaml:"configs"`
}

ConfiguratorConfig defines configurator config

type DefaultConfigurationParser

type DefaultConfigurationParser struct{}

DefaultConfigurationParser for supporting properties file in config center

func (*DefaultConfigurationParser) Parse

func (parser *DefaultConfigurationParser) Parse(content string) (map[string]string, error)

Parse load content

func (*DefaultConfigurationParser) ParseToUrls

func (parser *DefaultConfigurationParser) ParseToUrls(content string) ([]*common.URL, error)

ParseToUrls is used to parse content to urls

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL