本文整理匯總了Golang中github.com/mholt/caddy/caddy/setup.Controller.Startup方法的典型用法代碼示例。如果您正苦於以下問題:Golang Controller.Startup方法的具體用法?Golang Controller.Startup怎麽用?Golang Controller.Startup使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/mholt/caddy/caddy/setup.Controller
的用法示例。
在下文中一共展示了Controller.Startup方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: Setup
// Git configures a new Git service routine.
func Setup(c *setup.Controller) (middleware.Middleware, error) {
git, err := parse(c)
if err != nil {
return nil, err
}
// repos configured with webhooks
var hookRepos []*Repo
// loop through all repos and and start monitoring
for i := range git {
repo := git.Repo(i)
// If a HookUrl is set, we switch to event based pulling.
// Install the url handler
if repo.HookUrl != "" {
c.OncePerServerBlock(func() error {
c.Startup = append(c.Startup, func() error {
return repo.Pull()
})
return nil
})
hookRepos = append(hookRepos, repo)
} else {
c.OncePerServerBlock(func() error {
c.Startup = append(c.Startup, func() error {
// Start service routine in background
Start(repo)
// Do a pull right away to return error
return repo.Pull()
})
return nil
})
}
}
// if there are repo(s) with webhook
// return handler
if len(hookRepos) > 0 {
webhook := &WebHook{Repos: hookRepos}
return func(next middleware.Handler) middleware.Handler {
webhook.Next = next
return webhook
}, err
}
return nil, err
}
示例2: Setup
// Setup creates a caddy middleware
func Setup(c *setup.Controller) (middleware.Middleware, error) {
repoPath, err := parseRepo(c)
if err != nil {
return nil, err
}
paths := []string{"/api"}
// Runs on Caddy startup, useful for services or other setups.
c.Startup = append(c.Startup, func() error {
fmt.Println("api middleware is initiated")
return nil
})
// Runs on Caddy shutdown, useful for cleanups.
c.Shutdown = append(c.Shutdown, func() error {
fmt.Println("api middleware is cleaning up")
return nil
})
return func(next middleware.Handler) middleware.Handler {
h := &handler{
Paths: paths,
Next: next,
}
repo := api.SimpleRepo(repoPath)
server := api.NewServer(repo)
h.apihandler = server
return h
}, nil
}