2019-03-27 02:00:54 +08:00
|
|
|
package caddy2
|
|
|
|
|
|
|
|
import (
|
2019-03-27 05:45:51 +08:00
|
|
|
"encoding/json"
|
2019-03-27 02:00:54 +08:00
|
|
|
"fmt"
|
2019-03-27 05:45:51 +08:00
|
|
|
"reflect"
|
2019-03-27 02:00:54 +08:00
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
2019-04-26 03:54:48 +08:00
|
|
|
// Module represents a Caddy module.
|
2019-03-27 02:00:54 +08:00
|
|
|
type Module struct {
|
2019-04-27 02:35:39 +08:00
|
|
|
// Name is the full name of the module. It
|
|
|
|
// must be unique and properly namespaced.
|
|
|
|
Name string
|
|
|
|
|
|
|
|
// New returns a new, empty instance of
|
|
|
|
// the module's type. The host module
|
|
|
|
// which loads this module will likely
|
|
|
|
// invoke methods on the returned value.
|
|
|
|
// It must return a pointer; if not, it
|
|
|
|
// is converted into one.
|
|
|
|
New func() (interface{}, error)
|
2019-03-27 02:00:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m Module) String() string { return m.Name }
|
|
|
|
|
2019-04-27 02:35:39 +08:00
|
|
|
// RegisterModule registers a module. Modules must call
|
|
|
|
// this function in the init phase of runtime.
|
2019-03-27 02:00:54 +08:00
|
|
|
func RegisterModule(mod Module) error {
|
2019-04-26 03:54:48 +08:00
|
|
|
if mod.Name == "caddy" {
|
|
|
|
return fmt.Errorf("modules cannot be named 'caddy'")
|
|
|
|
}
|
2019-05-17 01:46:17 +08:00
|
|
|
if strings.HasPrefix(mod.Name, "caddy.") {
|
|
|
|
return fmt.Errorf("modules cannot be namespaced in 'caddy'")
|
|
|
|
}
|
2019-04-26 03:54:48 +08:00
|
|
|
|
2019-03-27 02:00:54 +08:00
|
|
|
modulesMu.Lock()
|
|
|
|
defer modulesMu.Unlock()
|
|
|
|
|
|
|
|
if _, ok := modules[mod.Name]; ok {
|
|
|
|
return fmt.Errorf("module already registered: %s", mod.Name)
|
|
|
|
}
|
|
|
|
modules[mod.Name] = mod
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-04-27 02:35:39 +08:00
|
|
|
// GetModule returns a module by its full name.
|
2019-03-27 02:00:54 +08:00
|
|
|
func GetModule(name string) (Module, error) {
|
|
|
|
modulesMu.Lock()
|
|
|
|
defer modulesMu.Unlock()
|
|
|
|
|
|
|
|
m, ok := modules[name]
|
|
|
|
if !ok {
|
|
|
|
return Module{}, fmt.Errorf("module not registered: %s", name)
|
|
|
|
}
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetModules returns all modules in the given scope/namespace.
|
|
|
|
// For example, a scope of "foo" returns modules named "foo.bar",
|
2019-04-26 03:54:48 +08:00
|
|
|
// "foo.loo", but not "bar", "foo.bar.loo", etc. An empty scope
|
2019-03-27 02:00:54 +08:00
|
|
|
// returns top-level modules, for example "foo" or "bar". Partial
|
|
|
|
// scopes are not matched (i.e. scope "foo.ba" does not match
|
|
|
|
// name "foo.bar").
|
|
|
|
//
|
|
|
|
// Because modules are registered to a map, the returned slice
|
|
|
|
// will be sorted to keep it deterministic.
|
|
|
|
func GetModules(scope string) []Module {
|
|
|
|
modulesMu.Lock()
|
|
|
|
defer modulesMu.Unlock()
|
|
|
|
|
|
|
|
scopeParts := strings.Split(scope, ".")
|
|
|
|
|
|
|
|
// handle the special case of an empty scope, which
|
|
|
|
// should match only the top-level modules
|
|
|
|
if len(scopeParts) == 1 && scopeParts[0] == "" {
|
|
|
|
scopeParts = []string{}
|
|
|
|
}
|
|
|
|
|
|
|
|
var mods []Module
|
|
|
|
iterateModules:
|
|
|
|
for name, m := range modules {
|
|
|
|
modParts := strings.Split(name, ".")
|
|
|
|
|
|
|
|
// match only the next level of nesting
|
|
|
|
if len(modParts) != len(scopeParts)+1 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// specified parts must be exact matches
|
|
|
|
for i := range scopeParts {
|
|
|
|
if modParts[i] != scopeParts[i] {
|
|
|
|
continue iterateModules
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mods = append(mods, m)
|
|
|
|
}
|
|
|
|
|
|
|
|
// make return value deterministic
|
|
|
|
sort.Slice(mods, func(i, j int) bool {
|
|
|
|
return mods[i].Name < mods[j].Name
|
|
|
|
})
|
|
|
|
|
|
|
|
return mods
|
|
|
|
}
|
|
|
|
|
|
|
|
// Modules returns the names of all registered modules
|
|
|
|
// in ascending lexicographical order.
|
|
|
|
func Modules() []string {
|
|
|
|
modulesMu.Lock()
|
|
|
|
defer modulesMu.Unlock()
|
|
|
|
|
|
|
|
var names []string
|
|
|
|
for name := range modules {
|
|
|
|
names = append(names, name)
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Strings(names)
|
|
|
|
|
|
|
|
return names
|
|
|
|
}
|
|
|
|
|
2019-03-27 05:45:51 +08:00
|
|
|
// LoadModule decodes rawMsg into a new instance of mod and
|
|
|
|
// returns the value. If mod.New() does not return a pointer
|
|
|
|
// value, it is converted to one so that it is unmarshaled
|
|
|
|
// into the underlying concrete type. If mod.New is nil, an
|
2019-04-26 03:54:48 +08:00
|
|
|
// error is returned. If the module implements Validator or
|
|
|
|
// Provisioner interfaces, those methods are invoked to
|
|
|
|
// ensure the module is fully configured and valid before
|
|
|
|
// being used.
|
2019-04-01 10:41:29 +08:00
|
|
|
func LoadModule(name string, rawMsg json.RawMessage) (interface{}, error) {
|
|
|
|
modulesMu.Lock()
|
|
|
|
mod, ok := modules[name]
|
|
|
|
modulesMu.Unlock()
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("unknown module: %s", name)
|
|
|
|
}
|
|
|
|
|
2019-03-27 05:45:51 +08:00
|
|
|
if mod.New == nil {
|
2019-04-01 10:41:29 +08:00
|
|
|
return nil, fmt.Errorf("module '%s' has no constructor", mod.Name)
|
2019-03-27 05:45:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
val, err := mod.New()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("initializing module '%s': %v", mod.Name, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// value must be a pointer for unmarshaling into concrete type
|
|
|
|
if rv := reflect.ValueOf(val); rv.Kind() != reflect.Ptr {
|
|
|
|
val = reflect.New(rv.Type()).Elem().Addr().Interface()
|
|
|
|
}
|
|
|
|
|
2019-04-29 23:22:00 +08:00
|
|
|
// fill in its config only if there is a config to fill in
|
|
|
|
if len(rawMsg) > 0 {
|
|
|
|
err = json.Unmarshal(rawMsg, &val)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("decoding module config: %s: %v", mod.Name, err)
|
|
|
|
}
|
2019-03-27 05:45:51 +08:00
|
|
|
}
|
|
|
|
|
2019-04-26 03:54:48 +08:00
|
|
|
if prov, ok := val.(Provisioner); ok {
|
|
|
|
err := prov.Provision()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("provision %s: %v", mod.Name, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-04 01:41:36 +08:00
|
|
|
if validator, ok := val.(Validator); ok {
|
|
|
|
err := validator.Validate()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("%s: invalid configuration: %v", mod.Name, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-08 14:00:14 +08:00
|
|
|
moduleInstances[mod.Name] = append(moduleInstances[mod.Name], val)
|
|
|
|
|
2019-03-27 05:45:51 +08:00
|
|
|
return val, nil
|
|
|
|
}
|
|
|
|
|
2019-04-26 03:54:48 +08:00
|
|
|
// LoadModuleInline loads a module from a JSON raw message which decodes
|
|
|
|
// to a map[string]interface{}, where one of the keys is moduleNameKey
|
|
|
|
// and the corresponding value is the module name as a string, which
|
|
|
|
// can be found in the given scope.
|
2019-04-01 10:41:29 +08:00
|
|
|
//
|
|
|
|
// This allows modules to be decoded into their concrete types and
|
|
|
|
// used when their names cannot be the unique key in a map, such as
|
|
|
|
// when there are multiple instances in the map or it appears in an
|
2019-04-26 03:54:48 +08:00
|
|
|
// array (where there are no custom keys). In other words, the key
|
|
|
|
// containing the module name is treated special/separate from all
|
|
|
|
// the other keys.
|
|
|
|
func LoadModuleInline(moduleNameKey, moduleScope string, raw json.RawMessage) (interface{}, error) {
|
|
|
|
moduleName, err := getModuleNameInline(moduleNameKey, raw)
|
2019-04-01 10:41:29 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
val, err := LoadModule(moduleScope+"."+moduleName, raw)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("loading module '%s': %v", moduleName, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return val, nil
|
|
|
|
}
|
|
|
|
|
2019-04-26 03:54:48 +08:00
|
|
|
// getModuleNameInline loads the string value from raw of moduleNameKey,
|
|
|
|
// where raw must be a JSON encoding of a map.
|
|
|
|
func getModuleNameInline(moduleNameKey string, raw json.RawMessage) (string, error) {
|
|
|
|
var tmp map[string]interface{}
|
|
|
|
err := json.Unmarshal(raw, &tmp)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
moduleName, ok := tmp[moduleNameKey].(string)
|
|
|
|
if !ok || moduleName == "" {
|
|
|
|
return "", fmt.Errorf("module name not specified with key '%s' in %+v", moduleNameKey, tmp)
|
|
|
|
}
|
|
|
|
|
|
|
|
return moduleName, nil
|
|
|
|
}
|
|
|
|
|
2019-04-04 01:41:36 +08:00
|
|
|
// Validator is implemented by modules which can verify that their
|
|
|
|
// configurations are valid. This method will be called after New()
|
|
|
|
// instantiations of modules (if implemented). Validation should
|
|
|
|
// always be fast (imperceptible running time) and an error should
|
|
|
|
// be returned only if the value's configuration is invalid.
|
|
|
|
type Validator interface {
|
|
|
|
Validate() error
|
|
|
|
}
|
|
|
|
|
2019-04-26 03:54:48 +08:00
|
|
|
// Provisioner is implemented by modules which may need to perform
|
|
|
|
// some additional "setup" steps immediately after being loaded.
|
|
|
|
// This method will be called after Validate() (if implemented).
|
|
|
|
type Provisioner interface {
|
|
|
|
Provision() error
|
|
|
|
}
|
|
|
|
|
2019-03-27 02:00:54 +08:00
|
|
|
var (
|
|
|
|
modules = make(map[string]Module)
|
|
|
|
modulesMu sync.Mutex
|
|
|
|
)
|