當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Controller.Startup方法代碼示例

本文整理匯總了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
}
開發者ID:karasz,項目名稱:caddy-git,代碼行數:53,代碼來源:setup.go

示例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
}
開發者ID:groob,項目名稱:ape,代碼行數:32,代碼來源:ape.go


注:本文中的github.com/mholt/caddy/caddy/setup.Controller.Startup方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。