本文整理汇总了Golang中github.com/speedland/wcg.Router.All方法的典型用法代码示例。如果您正苦于以下问题:Golang Router.All方法的具体用法?Golang Router.All怎么用?Golang Router.All使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/speedland/wcg.Router
的用法示例。
在下文中一共展示了Router.All方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: configureBlogs
func configureBlogs(routes *wcg.Router) {
// check user is already signed in or not.
routes.All("/admin/blogs/*", func(res *wcg.Response, req *wcg.Request) {
if wcg.IsGuest(req.User) {
res.Redirect("/", http.StatusFound)
}
})
// public interfaces.
routes.Get("/my/", myblogRedirector(true))
routes.Get("/:blog_id/", showBlogHandler)
// admin interfaces
routes.Get("/admin/blogs/my/", myblogRedirector(false))
routes.Get("/admin/blogs/:blog_id/", manageBlogHandler)
routes.Post("/admin/blogs/", createBlogHandler)
routes.Put("/admin/blogs/:blog_id/", updateBlogHandler)
routes.Delete("/admin/blogs/:blog_id/", deleteBlogHandler)
}
示例2: configureOAuth
func configureOAuth(routes *wcg.Router) {
GoogleAuthConfig, _ := google.NewAuthConfigFromFile("")
FacebookAuthConfig, _ := facebook.NewAuthConfigFromFile("")
GoogleAuthConfig.RedirectURL = "/login/google/callback"
GoogleAuthConfig.TransportFactory = gae.NewHttpTransport
GoogleAuthConfig.UnauthorizedHandler = unauthorized
GoogleAuthConfig.AuthorizedHandler = authorized
GoogleAuthConfig.InvalidatedHandler = invalidated
gauth, gcallback, gvalidates, glogout := middleware.OAuth2(GoogleAuthConfig)
routes.All("/*", gvalidates)
routes.Get("/login/google", gauth)
routes.Get("/login/google/callback", gcallback)
routes.Get("/logout/google", glogout)
FacebookAuthConfig.RedirectURL = "/login/facebook/callback"
FacebookAuthConfig.TransportFactory = gae.NewHttpTransport
FacebookAuthConfig.UnauthorizedHandler = unauthorized
FacebookAuthConfig.AuthorizedHandler = authorized
FacebookAuthConfig.InvalidatedHandler = invalidated
fbauth, fbcallback, fbvalidates, fblogout := middleware.OAuth2(FacebookAuthConfig)
routes.All("/*", fbvalidates)
routes.All("/*", func(res *wcg.Response, req *wcg.Request) {
res.SetLocal("fb_app_id", FacebookAuthConfig.ClientId)
})
routes.Get("/login/facebook", fbauth)
routes.Get("/login/facebook/callback", fbcallback)
routes.Post("/logout/facebook", fblogout)
}