2022-06-12 22:35:11 +03:00
|
|
|
package caddy
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"reflect"
|
|
|
|
)
|
|
|
|
|
|
|
|
var namespaceTypes map[string][]reflect.Type = make(map[string][]reflect.Type)
|
|
|
|
|
2023-12-14 23:50:24 +03:00
|
|
|
func RegisterNamespace(namespace string, vals []interface{}) {
|
2022-06-14 20:51:58 +03:00
|
|
|
var types []reflect.Type
|
|
|
|
for _, v := range vals {
|
|
|
|
reflect.TypeOf(v).Elem()
|
|
|
|
}
|
2022-06-12 22:35:11 +03:00
|
|
|
if _, ok := namespaceTypes[namespace]; ok {
|
|
|
|
panic("namespace is already registered")
|
|
|
|
}
|
|
|
|
namespaceTypes[namespace] = types
|
|
|
|
}
|
|
|
|
|
|
|
|
// NamespaceTypes returns a copy of Caddy's namespace->type registry
|
|
|
|
func NamespaceTypes() map[string][]reflect.Type {
|
|
|
|
copy := make(map[string][]reflect.Type)
|
|
|
|
for namespace, typeSlice := range namespaceTypes {
|
|
|
|
copy[namespace] = typeSlice
|
|
|
|
}
|
|
|
|
return copy
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConformsToNamespace validates the given module implements all the mandatory types of a given namespace
|
|
|
|
func ConformsToNamespace(mod Module, namespace string) (bool, error) {
|
|
|
|
modType := reflect.TypeOf(mod)
|
|
|
|
for _, t := range namespaceTypes[namespace] {
|
|
|
|
if !modType.Implements(t) {
|
|
|
|
return false, fmt.Errorf("%s does not implement %s", modType, t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true, nil
|
|
|
|
}
|