2015-03-06 15:45:16 +00:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/docker/distribution"
|
2015-07-29 18:12:01 +00:00
|
|
|
"github.com/docker/distribution/context"
|
2015-03-06 15:45:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// InitFunc is the type of a RegistryMiddleware factory function and is
|
2015-03-09 16:42:23 +00:00
|
|
|
// used to register the constructor for different RegistryMiddleware backends.
|
2015-07-29 18:12:01 +00:00
|
|
|
type InitFunc func(ctx context.Context, registry distribution.Namespace, options map[string]interface{}) (distribution.Namespace, error)
|
2015-03-06 15:45:16 +00:00
|
|
|
|
|
|
|
var middlewares map[string]InitFunc
|
|
|
|
|
|
|
|
// Register is used to register an InitFunc for
|
|
|
|
// a RegistryMiddleware backend with the given name.
|
|
|
|
func Register(name string, initFunc InitFunc) error {
|
|
|
|
if middlewares == nil {
|
|
|
|
middlewares = make(map[string]InitFunc)
|
|
|
|
}
|
|
|
|
if _, exists := middlewares[name]; exists {
|
|
|
|
return fmt.Errorf("name already registered: %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
middlewares[name] = initFunc
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get constructs a RegistryMiddleware with the given options using the named backend.
|
2015-07-29 18:12:01 +00:00
|
|
|
func Get(ctx context.Context, name string, options map[string]interface{}, registry distribution.Namespace) (distribution.Namespace, error) {
|
2015-03-06 15:45:16 +00:00
|
|
|
if middlewares != nil {
|
|
|
|
if initFunc, exists := middlewares[name]; exists {
|
2015-07-29 18:12:01 +00:00
|
|
|
return initFunc(ctx, registry, options)
|
2015-03-06 15:45:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, fmt.Errorf("no registry middleware registered with name: %s", name)
|
|
|
|
}
|