1
0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2025-04-03 03:51:42 +02:00

Make RegisterPlugin() more consistent, having name as first argument

This commit is contained in:
Matthew Holt 2016-06-06 15:31:03 -06:00
parent 9b4134b287
commit d3860f95f5
No known key found for this signature in database
GPG key ID: 0D97CC73664F4D03
23 changed files with 33 additions and 62 deletions
caddyhttp
basicauth
bind
browse
errors
expvar
extensions
fastcgi
gzip
header
internalsrv
log
markdown
mime
pprof
proxy
redirect
rewrite
root
templates
websocket
caddytls
plugins.go
startupshutdown

View file

@ -8,8 +8,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "basicauth",
caddy.RegisterPlugin("basicauth", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -6,8 +6,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "bind",
caddy.RegisterPlugin("bind", caddy.Plugin{
ServerType: "http",
Action: setupBind,
})

View file

@ -11,8 +11,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "browse",
caddy.RegisterPlugin("browse", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -16,8 +16,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "errors",
caddy.RegisterPlugin("errors", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -10,8 +10,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "expvar",
caddy.RegisterPlugin("expvar", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -6,8 +6,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "ext",
caddy.RegisterPlugin("ext", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -10,8 +10,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "fastcgi",
caddy.RegisterPlugin("fastcgi", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -17,8 +17,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "gzip",
caddy.RegisterPlugin("gzip", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -6,8 +6,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "header",
caddy.RegisterPlugin("header", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -6,8 +6,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "internal",
caddy.RegisterPlugin("internal", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -11,8 +11,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "log",
caddy.RegisterPlugin("log", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -10,8 +10,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "markdown",
caddy.RegisterPlugin("markdown", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -9,8 +9,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "mime",
caddy.RegisterPlugin("mime", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -6,8 +6,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "pprof",
caddy.RegisterPlugin("pprof", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -6,8 +6,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "proxy",
caddy.RegisterPlugin("proxy", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -8,8 +8,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "redir",
caddy.RegisterPlugin("redir", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -10,8 +10,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "rewrite",
caddy.RegisterPlugin("rewrite", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -9,8 +9,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "root",
caddy.RegisterPlugin("root", caddy.Plugin{
ServerType: "http",
Action: setupRoot,
})

View file

@ -8,8 +8,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "templates",
caddy.RegisterPlugin("templates", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -6,8 +6,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "websocket",
caddy.RegisterPlugin("websocket", caddy.Plugin{
ServerType: "http",
Action: setup,
})

View file

@ -16,10 +16,7 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "tls",
Action: setupTLS,
})
caddy.RegisterPlugin("tls", caddy.Plugin{Action: setupTLS})
}
// setupTLS sets up the TLS configuration and installs certificates that

View file

@ -135,11 +135,6 @@ type ServerType struct {
// Plugin is a type which holds information about a plugin.
type Plugin struct {
// The plugin must have a name: lower case and one word.
// If this plugin has an action, it must be the name of
// the directive to attach to. A name is always required.
Name string
// ServerType is the type of server this plugin is for.
// Can be empty if not applicable, or if the plugin
// can associate with any server type.
@ -154,17 +149,22 @@ type Plugin struct {
// themselves, even if they do not perform an action associated
// with a directive. It is important for the process to know
// which plugins are available.
func RegisterPlugin(plugin Plugin) {
if plugin.Name == "" {
//
// The plugin MUST have a name: lower case and one word.
// If this plugin has an action, it must be the name of
// the directive that invokes it. A name is always required
// and must be unique for the server type.
func RegisterPlugin(name string, plugin Plugin) {
if name == "" {
panic("plugin must have a name")
}
if _, ok := plugins[plugin.ServerType]; !ok {
plugins[plugin.ServerType] = make(map[string]Plugin)
}
if _, dup := plugins[plugin.ServerType][plugin.Name]; dup {
panic("plugin named " + plugin.Name + " already registered for server type " + plugin.ServerType)
if _, dup := plugins[plugin.ServerType][name]; dup {
panic("plugin named " + name + " already registered for server type " + plugin.ServerType)
}
plugins[plugin.ServerType][plugin.Name] = plugin
plugins[plugin.ServerType][name] = plugin
}
// RegisterParsingCallback registers callback to be called after

View file

@ -9,14 +9,8 @@ import (
)
func init() {
caddy.RegisterPlugin(caddy.Plugin{
Name: "startup",
Action: Startup,
})
caddy.RegisterPlugin(caddy.Plugin{
Name: "shutdown",
Action: Shutdown,
})
caddy.RegisterPlugin("startup", caddy.Plugin{Action: Startup})
caddy.RegisterPlugin("shutdown", caddy.Plugin{Action: Shutdown})
}
// Startup registers a startup callback to execute during server start.