library

package
v2.1.1+incompatible Latest Latest
Warning

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

Go to latest
Published: Jun 1, 2020 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config struct {
	AuthFilters []*HandlerConfig `mapstructure:"authFilters" yaml:"authFilters"`
	Decorators  []*HandlerConfig `mapstructure:"decorators" yaml:"decorators"`
	Endorsers   PluginMapping    `mapstructure:"endorsers" yaml:"endorsers"`
	Validators  PluginMapping    `mapstructure:"validators" yaml:"validators"`
}

Config configures the factory methods and plugins for the registry

func LoadConfig

func LoadConfig() (Config, error)

type HandlerConfig

type HandlerConfig struct {
	Name    string `mapstructure:"name" yaml:"name"`
	Library string `mapstructure:"library" yaml:"library"`
}

HandlerConfig defines configuration for a plugin or compiled handler

type HandlerLibrary

type HandlerLibrary struct {
}

HandlerLibrary is used to assert how to create the various handlers

func (*HandlerLibrary) DefaultAuth

func (r *HandlerLibrary) DefaultAuth() auth.Filter

DefaultAuth creates a default auth.Filter that doesn't do any access control checks - simply forwards the request further. It needs to be initialized via a call to Init() and be passed a peer.EndorserServer

func (*HandlerLibrary) DefaultDecorator

func (r *HandlerLibrary) DefaultDecorator() decoration.Decorator

DefaultDecorator creates a default decorator that doesn't do anything with the input, simply returns the input as output.

func (*HandlerLibrary) DefaultEndorsement added in v1.2.0

func (r *HandlerLibrary) DefaultEndorsement() endorsement.PluginFactory

func (*HandlerLibrary) DefaultValidation added in v1.2.0

func (r *HandlerLibrary) DefaultValidation() validation.PluginFactory

func (*HandlerLibrary) ExpirationCheck

func (r *HandlerLibrary) ExpirationCheck() auth.Filter

ExpirationCheck is an auth filter which blocks requests from identities with expired x509 certificates

type HandlerType

type HandlerType int

HandlerType defines custom handlers that can filter and mutate objects passing within the peer

const (
	// Auth handler - reject or forward proposals from clients
	Auth HandlerType = iota
	// Decoration handler - append or mutate the chaincode input
	// passed to the chaincode
	Decoration
	Endorsement
	Validation
)

type PluginMapping added in v1.2.0

type PluginMapping map[string]*HandlerConfig

PluginMapping stores a map between chaincode id to plugin config

type Registry

type Registry interface {
	// Lookup returns a handler with a given
	// registered name, or nil if does not exist
	Lookup(HandlerType) interface{}
}

Registry defines an object that looks up handlers by name

func InitRegistry

func InitRegistry(c Config) Registry

InitRegistry creates the (only) instance of the registry

Jump to

Keyboard shortcuts

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