coredns-ldap/setup.go

41 lines
1.4 KiB
Go
Raw Normal View History

2020-06-01 07:48:07 +00:00
package ldap
import (
"github.com/coredns/coredns/core/dnsserver"
2017-09-15 20:29:47 +00:00
"github.com/coredns/coredns/plugin"
"github.com/coredns/coredns/plugin/metrics"
"github.com/caddyserver/caddy"
)
// init registers this plugin.
2020-06-01 07:48:07 +00:00
func init() { plugin.Register("ldap", setup) }
2020-06-01 07:48:07 +00:00
// setup is the function that gets called when the config parser see the token "ldap". Setup is responsible
// for parsing any extra options the ldap plugin may have. The first token this function sees is "ldap".
func setup(c *caddy.Controller) error {
2020-06-01 07:48:07 +00:00
c.Next() // Ignore "ldap" and give us the next token.
if c.NextArg() {
2018-02-25 08:52:52 +00:00
// If there was another token, return an error, because we don't have any configuration.
// Any errors returned from this setup function should be wrapped with plugin.Error, so we
// can present a slightly nicer error message to the user.
2020-06-01 07:48:07 +00:00
return plugin.Error("ldap", c.ArgErr())
}
// Add a startup function that will -- after all plugins have been loaded -- check if the
// prometheus plugin has been used - if so we will export metrics. We can only register
// this metric once, hence the "once.Do".
c.OnStartup(func() error {
2018-04-01 12:28:37 +00:00
once.Do(func() { metrics.MustRegister(c, requestCount) })
return nil
})
2018-02-25 08:52:52 +00:00
// Add the Plugin to CoreDNS, so Servers can use it in their plugin chain.
2017-09-15 20:29:47 +00:00
dnsserver.GetConfig(c).AddPlugin(func(next plugin.Handler) plugin.Handler {
2020-06-01 07:48:07 +00:00
return Ldap{Next: next}
})
2018-02-25 08:52:52 +00:00
// All OK, return a nil error.
return nil
}