|
@@ -144,25 +144,6 @@ func newMacaron() *macaron.Macaron {
|
|
|
m.Use(captcha.Captchaer(captcha.Options{
|
|
|
SubURL: conf.Server.Subpath,
|
|
|
}))
|
|
|
- m.Use(session.Sessioner(session.Options{
|
|
|
- Provider: conf.Session.Provider,
|
|
|
- ProviderConfig: conf.Session.ProviderConfig,
|
|
|
- CookieName: conf.Session.CookieName,
|
|
|
- CookiePath: conf.Server.Subpath,
|
|
|
- Gclifetime: conf.Session.GCInterval,
|
|
|
- Maxlifetime: conf.Session.MaxLifeTime,
|
|
|
- Secure: conf.Session.CookieSecure,
|
|
|
- }))
|
|
|
- m.Use(csrf.Csrfer(csrf.Options{
|
|
|
- Secret: conf.Security.SecretKey,
|
|
|
- Header: "X-CSRF-Token",
|
|
|
- Cookie: conf.Session.CSRFCookieName,
|
|
|
- CookieDomain: conf.Server.URL.Hostname(),
|
|
|
- CookiePath: conf.Server.Subpath,
|
|
|
- CookieHttpOnly: true,
|
|
|
- SetCookie: true,
|
|
|
- Secure: conf.Server.URL.Scheme == "https",
|
|
|
- }))
|
|
|
m.Use(toolbox.Toolboxer(m, toolbox.Options{
|
|
|
HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{
|
|
|
{
|
|
@@ -171,7 +152,6 @@ func newMacaron() *macaron.Macaron {
|
|
|
},
|
|
|
},
|
|
|
}))
|
|
|
- m.Use(context.Contexter())
|
|
|
return m
|
|
|
}
|
|
|
|
|
@@ -185,488 +165,506 @@ func runWeb(c *cli.Context) error {
|
|
|
|
|
|
reqSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: true})
|
|
|
ignSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: conf.Auth.RequireSigninView})
|
|
|
- ignSignInAndCsrf := context.Toggle(&context.ToggleOptions{DisableCSRF: true})
|
|
|
reqSignOut := context.Toggle(&context.ToggleOptions{SignOutRequired: true})
|
|
|
|
|
|
bindIgnErr := binding.BindIgnErr
|
|
|
|
|
|
m.SetAutoHead(true)
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- m.Get("/", ignSignIn, route.Home)
|
|
|
- m.Group("/explore", func() {
|
|
|
- m.Get("", func(c *context.Context) {
|
|
|
- c.Redirect(conf.Server.Subpath + "/explore/repos")
|
|
|
- })
|
|
|
- m.Get("/repos", route.ExploreRepos)
|
|
|
- m.Get("/users", route.ExploreUsers)
|
|
|
- m.Get("/organizations", route.ExploreOrganizations)
|
|
|
- }, ignSignIn)
|
|
|
- m.Combo("/install", route.InstallInit).Get(route.Install).
|
|
|
- Post(bindIgnErr(form.Install{}), route.InstallPost)
|
|
|
- m.Get("/^:type(issues|pulls)$", reqSignIn, user.Issues)
|
|
|
-
|
|
|
-
|
|
|
- m.Group("/user", func() {
|
|
|
- m.Group("/login", func() {
|
|
|
- m.Combo("").Get(user.Login).
|
|
|
- Post(bindIgnErr(form.SignIn{}), user.LoginPost)
|
|
|
- m.Combo("/two_factor").Get(user.LoginTwoFactor).Post(user.LoginTwoFactorPost)
|
|
|
- m.Combo("/two_factor_recovery_code").Get(user.LoginTwoFactorRecoveryCode).Post(user.LoginTwoFactorRecoveryCodePost)
|
|
|
- })
|
|
|
-
|
|
|
- m.Get("/sign_up", user.SignUp)
|
|
|
- m.Post("/sign_up", bindIgnErr(form.Register{}), user.SignUpPost)
|
|
|
- m.Get("/reset_password", user.ResetPasswd)
|
|
|
- m.Post("/reset_password", user.ResetPasswdPost)
|
|
|
- }, reqSignOut)
|
|
|
-
|
|
|
- m.Group("/user/settings", func() {
|
|
|
- m.Get("", user.Settings)
|
|
|
- m.Post("", bindIgnErr(form.UpdateProfile{}), user.SettingsPost)
|
|
|
- m.Combo("/avatar").Get(user.SettingsAvatar).
|
|
|
- Post(binding.MultipartForm(form.Avatar{}), user.SettingsAvatarPost)
|
|
|
- m.Post("/avatar/delete", user.SettingsDeleteAvatar)
|
|
|
- m.Combo("/email").Get(user.SettingsEmails).
|
|
|
- Post(bindIgnErr(form.AddEmail{}), user.SettingsEmailPost)
|
|
|
- m.Post("/email/delete", user.DeleteEmail)
|
|
|
- m.Get("/password", user.SettingsPassword)
|
|
|
- m.Post("/password", bindIgnErr(form.ChangePassword{}), user.SettingsPasswordPost)
|
|
|
- m.Combo("/ssh").Get(user.SettingsSSHKeys).
|
|
|
- Post(bindIgnErr(form.AddSSHKey{}), user.SettingsSSHKeysPost)
|
|
|
- m.Post("/ssh/delete", user.DeleteSSHKey)
|
|
|
- m.Group("/security", func() {
|
|
|
- m.Get("", user.SettingsSecurity)
|
|
|
- m.Combo("/two_factor_enable").Get(user.SettingsTwoFactorEnable).
|
|
|
- Post(user.SettingsTwoFactorEnablePost)
|
|
|
- m.Combo("/two_factor_recovery_codes").Get(user.SettingsTwoFactorRecoveryCodes).
|
|
|
- Post(user.SettingsTwoFactorRecoveryCodesPost)
|
|
|
- m.Post("/two_factor_disable", user.SettingsTwoFactorDisable)
|
|
|
- })
|
|
|
- m.Group("/repositories", func() {
|
|
|
- m.Get("", user.SettingsRepos)
|
|
|
- m.Post("/leave", user.SettingsLeaveRepo)
|
|
|
- })
|
|
|
- m.Group("/organizations", func() {
|
|
|
- m.Get("", user.SettingsOrganizations)
|
|
|
- m.Post("/leave", user.SettingsLeaveOrganization)
|
|
|
- })
|
|
|
- m.Combo("/applications").Get(user.SettingsApplications).
|
|
|
- Post(bindIgnErr(form.NewAccessToken{}), user.SettingsApplicationsPost)
|
|
|
- m.Post("/applications/delete", user.SettingsDeleteApplication)
|
|
|
- m.Route("/delete", "GET,POST", user.SettingsDelete)
|
|
|
- }, reqSignIn, func(c *context.Context) {
|
|
|
- c.Data["PageIsUserSettings"] = true
|
|
|
- })
|
|
|
-
|
|
|
- m.Group("/user", func() {
|
|
|
- m.Any("/activate", user.Activate)
|
|
|
- m.Any("/activate_email", user.ActivateEmail)
|
|
|
- m.Get("/email2user", user.Email2User)
|
|
|
- m.Get("/forget_password", user.ForgotPasswd)
|
|
|
- m.Post("/forget_password", user.ForgotPasswdPost)
|
|
|
- m.Post("/logout", user.SignOut)
|
|
|
- })
|
|
|
-
|
|
|
-
|
|
|
- reqAdmin := context.Toggle(&context.ToggleOptions{SignInRequired: true, AdminRequired: true})
|
|
|
-
|
|
|
-
|
|
|
- m.Group("/admin", func() {
|
|
|
- m.Combo("").Get(admin.Dashboard).Post(admin.Operation)
|
|
|
- m.Get("/config", admin.Config)
|
|
|
- m.Post("/config/test_mail", admin.SendTestMail)
|
|
|
- m.Get("/monitor", admin.Monitor)
|
|
|
-
|
|
|
- m.Group("/users", func() {
|
|
|
- m.Get("", admin.Users)
|
|
|
- m.Combo("/new").Get(admin.NewUser).Post(bindIgnErr(form.AdminCrateUser{}), admin.NewUserPost)
|
|
|
- m.Combo("/:userid").Get(admin.EditUser).Post(bindIgnErr(form.AdminEditUser{}), admin.EditUserPost)
|
|
|
- m.Post("/:userid/delete", admin.DeleteUser)
|
|
|
- })
|
|
|
-
|
|
|
- m.Group("/orgs", func() {
|
|
|
- m.Get("", admin.Organizations)
|
|
|
- })
|
|
|
-
|
|
|
- m.Group("/repos", func() {
|
|
|
- m.Get("", admin.Repos)
|
|
|
- m.Post("/delete", admin.DeleteRepo)
|
|
|
- })
|
|
|
+ m.Group("", func() {
|
|
|
+ m.Get("/", ignSignIn, route.Home)
|
|
|
+ m.Group("/explore", func() {
|
|
|
+ m.Get("", func(c *context.Context) {
|
|
|
+ c.Redirect(conf.Server.Subpath + "/explore/repos")
|
|
|
+ })
|
|
|
+ m.Get("/repos", route.ExploreRepos)
|
|
|
+ m.Get("/users", route.ExploreUsers)
|
|
|
+ m.Get("/organizations", route.ExploreOrganizations)
|
|
|
+ }, ignSignIn)
|
|
|
+ m.Combo("/install", route.InstallInit).Get(route.Install).
|
|
|
+ Post(bindIgnErr(form.Install{}), route.InstallPost)
|
|
|
+ m.Get("/^:type(issues|pulls)$", reqSignIn, user.Issues)
|
|
|
+
|
|
|
+
|
|
|
+ m.Group("/user", func() {
|
|
|
+ m.Group("/login", func() {
|
|
|
+ m.Combo("").Get(user.Login).
|
|
|
+ Post(bindIgnErr(form.SignIn{}), user.LoginPost)
|
|
|
+ m.Combo("/two_factor").Get(user.LoginTwoFactor).Post(user.LoginTwoFactorPost)
|
|
|
+ m.Combo("/two_factor_recovery_code").Get(user.LoginTwoFactorRecoveryCode).Post(user.LoginTwoFactorRecoveryCodePost)
|
|
|
+ })
|
|
|
|
|
|
- m.Group("/auths", func() {
|
|
|
- m.Get("", admin.Authentications)
|
|
|
- m.Combo("/new").Get(admin.NewAuthSource).Post(bindIgnErr(form.Authentication{}), admin.NewAuthSourcePost)
|
|
|
- m.Combo("/:authid").Get(admin.EditAuthSource).
|
|
|
- Post(bindIgnErr(form.Authentication{}), admin.EditAuthSourcePost)
|
|
|
- m.Post("/:authid/delete", admin.DeleteAuthSource)
|
|
|
+ m.Get("/sign_up", user.SignUp)
|
|
|
+ m.Post("/sign_up", bindIgnErr(form.Register{}), user.SignUpPost)
|
|
|
+ m.Get("/reset_password", user.ResetPasswd)
|
|
|
+ m.Post("/reset_password", user.ResetPasswdPost)
|
|
|
+ }, reqSignOut)
|
|
|
+
|
|
|
+ m.Group("/user/settings", func() {
|
|
|
+ m.Get("", user.Settings)
|
|
|
+ m.Post("", bindIgnErr(form.UpdateProfile{}), user.SettingsPost)
|
|
|
+ m.Combo("/avatar").Get(user.SettingsAvatar).
|
|
|
+ Post(binding.MultipartForm(form.Avatar{}), user.SettingsAvatarPost)
|
|
|
+ m.Post("/avatar/delete", user.SettingsDeleteAvatar)
|
|
|
+ m.Combo("/email").Get(user.SettingsEmails).
|
|
|
+ Post(bindIgnErr(form.AddEmail{}), user.SettingsEmailPost)
|
|
|
+ m.Post("/email/delete", user.DeleteEmail)
|
|
|
+ m.Get("/password", user.SettingsPassword)
|
|
|
+ m.Post("/password", bindIgnErr(form.ChangePassword{}), user.SettingsPasswordPost)
|
|
|
+ m.Combo("/ssh").Get(user.SettingsSSHKeys).
|
|
|
+ Post(bindIgnErr(form.AddSSHKey{}), user.SettingsSSHKeysPost)
|
|
|
+ m.Post("/ssh/delete", user.DeleteSSHKey)
|
|
|
+ m.Group("/security", func() {
|
|
|
+ m.Get("", user.SettingsSecurity)
|
|
|
+ m.Combo("/two_factor_enable").Get(user.SettingsTwoFactorEnable).
|
|
|
+ Post(user.SettingsTwoFactorEnablePost)
|
|
|
+ m.Combo("/two_factor_recovery_codes").Get(user.SettingsTwoFactorRecoveryCodes).
|
|
|
+ Post(user.SettingsTwoFactorRecoveryCodesPost)
|
|
|
+ m.Post("/two_factor_disable", user.SettingsTwoFactorDisable)
|
|
|
+ })
|
|
|
+ m.Group("/repositories", func() {
|
|
|
+ m.Get("", user.SettingsRepos)
|
|
|
+ m.Post("/leave", user.SettingsLeaveRepo)
|
|
|
+ })
|
|
|
+ m.Group("/organizations", func() {
|
|
|
+ m.Get("", user.SettingsOrganizations)
|
|
|
+ m.Post("/leave", user.SettingsLeaveOrganization)
|
|
|
+ })
|
|
|
+ m.Combo("/applications").Get(user.SettingsApplications).
|
|
|
+ Post(bindIgnErr(form.NewAccessToken{}), user.SettingsApplicationsPost)
|
|
|
+ m.Post("/applications/delete", user.SettingsDeleteApplication)
|
|
|
+ m.Route("/delete", "GET,POST", user.SettingsDelete)
|
|
|
+ }, reqSignIn, func(c *context.Context) {
|
|
|
+ c.Data["PageIsUserSettings"] = true
|
|
|
})
|
|
|
|
|
|
- m.Group("/notices", func() {
|
|
|
- m.Get("", admin.Notices)
|
|
|
- m.Post("/delete", admin.DeleteNotices)
|
|
|
- m.Get("/empty", admin.EmptyNotices)
|
|
|
+ m.Group("/user", func() {
|
|
|
+ m.Any("/activate", user.Activate)
|
|
|
+ m.Any("/activate_email", user.ActivateEmail)
|
|
|
+ m.Get("/email2user", user.Email2User)
|
|
|
+ m.Get("/forget_password", user.ForgotPasswd)
|
|
|
+ m.Post("/forget_password", user.ForgotPasswdPost)
|
|
|
+ m.Post("/logout", user.SignOut)
|
|
|
})
|
|
|
- }, reqAdmin)
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+ reqAdmin := context.Toggle(&context.ToggleOptions{SignInRequired: true, AdminRequired: true})
|
|
|
+
|
|
|
+
|
|
|
+ m.Group("/admin", func() {
|
|
|
+ m.Combo("").Get(admin.Dashboard).Post(admin.Operation)
|
|
|
+ m.Get("/config", admin.Config)
|
|
|
+ m.Post("/config/test_mail", admin.SendTestMail)
|
|
|
+ m.Get("/monitor", admin.Monitor)
|
|
|
+
|
|
|
+ m.Group("/users", func() {
|
|
|
+ m.Get("", admin.Users)
|
|
|
+ m.Combo("/new").Get(admin.NewUser).Post(bindIgnErr(form.AdminCrateUser{}), admin.NewUserPost)
|
|
|
+ m.Combo("/:userid").Get(admin.EditUser).Post(bindIgnErr(form.AdminEditUser{}), admin.EditUserPost)
|
|
|
+ m.Post("/:userid/delete", admin.DeleteUser)
|
|
|
+ })
|
|
|
|
|
|
- m.Group("", func() {
|
|
|
- m.Group("/:username", func() {
|
|
|
- m.Get("", user.Profile)
|
|
|
- m.Get("/followers", user.Followers)
|
|
|
- m.Get("/following", user.Following)
|
|
|
- m.Get("/stars", user.Stars)
|
|
|
- }, context.InjectParamsUser())
|
|
|
-
|
|
|
- m.Get("/attachments/:uuid", func(c *context.Context) {
|
|
|
- attach, err := db.GetAttachmentByUUID(c.Params(":uuid"))
|
|
|
- if err != nil {
|
|
|
- c.NotFoundOrError(err, "get attachment by UUID")
|
|
|
- return
|
|
|
- } else if !com.IsFile(attach.LocalPath()) {
|
|
|
- c.NotFound()
|
|
|
- return
|
|
|
- }
|
|
|
+ m.Group("/orgs", func() {
|
|
|
+ m.Get("", admin.Organizations)
|
|
|
+ })
|
|
|
|
|
|
- fr, err := os.Open(attach.LocalPath())
|
|
|
- if err != nil {
|
|
|
- c.Error(err, "open attachment file")
|
|
|
- return
|
|
|
- }
|
|
|
- defer fr.Close()
|
|
|
+ m.Group("/repos", func() {
|
|
|
+ m.Get("", admin.Repos)
|
|
|
+ m.Post("/delete", admin.DeleteRepo)
|
|
|
+ })
|
|
|
|
|
|
- c.Header().Set("Cache-Control", "public,max-age=86400")
|
|
|
- c.Header().Set("Content-Disposition", fmt.Sprintf(`inline; filename="%s"`, attach.Name))
|
|
|
+ m.Group("/auths", func() {
|
|
|
+ m.Get("", admin.Authentications)
|
|
|
+ m.Combo("/new").Get(admin.NewAuthSource).Post(bindIgnErr(form.Authentication{}), admin.NewAuthSourcePost)
|
|
|
+ m.Combo("/:authid").Get(admin.EditAuthSource).
|
|
|
+ Post(bindIgnErr(form.Authentication{}), admin.EditAuthSourcePost)
|
|
|
+ m.Post("/:authid/delete", admin.DeleteAuthSource)
|
|
|
+ })
|
|
|
|
|
|
- if _, err = io.Copy(c.Resp, fr); err != nil {
|
|
|
- c.Error(err, "copy from file to response")
|
|
|
- return
|
|
|
- }
|
|
|
- })
|
|
|
- m.Post("/issues/attachments", repo.UploadIssueAttachment)
|
|
|
- m.Post("/releases/attachments", repo.UploadReleaseAttachment)
|
|
|
- }, ignSignIn)
|
|
|
+ m.Group("/notices", func() {
|
|
|
+ m.Get("", admin.Notices)
|
|
|
+ m.Post("/delete", admin.DeleteNotices)
|
|
|
+ m.Get("/empty", admin.EmptyNotices)
|
|
|
+ })
|
|
|
+ }, reqAdmin)
|
|
|
+
|
|
|
|
|
|
- m.Group("/:username", func() {
|
|
|
- m.Post("/action/:action", user.Action)
|
|
|
- }, reqSignIn, context.InjectParamsUser())
|
|
|
+ m.Group("", func() {
|
|
|
+ m.Group("/:username", func() {
|
|
|
+ m.Get("", user.Profile)
|
|
|
+ m.Get("/followers", user.Followers)
|
|
|
+ m.Get("/following", user.Following)
|
|
|
+ m.Get("/stars", user.Stars)
|
|
|
+ }, context.InjectParamsUser())
|
|
|
+
|
|
|
+ m.Get("/attachments/:uuid", func(c *context.Context) {
|
|
|
+ attach, err := db.GetAttachmentByUUID(c.Params(":uuid"))
|
|
|
+ if err != nil {
|
|
|
+ c.NotFoundOrError(err, "get attachment by UUID")
|
|
|
+ return
|
|
|
+ } else if !com.IsFile(attach.LocalPath()) {
|
|
|
+ c.NotFound()
|
|
|
+ return
|
|
|
+ }
|
|
|
|
|
|
- if macaron.Env == macaron.DEV {
|
|
|
- m.Get("/template/*", dev.TemplatePreview)
|
|
|
- }
|
|
|
+ fr, err := os.Open(attach.LocalPath())
|
|
|
+ if err != nil {
|
|
|
+ c.Error(err, "open attachment file")
|
|
|
+ return
|
|
|
+ }
|
|
|
+ defer fr.Close()
|
|
|
|
|
|
- reqRepoAdmin := context.RequireRepoAdmin()
|
|
|
- reqRepoWriter := context.RequireRepoWriter()
|
|
|
+ c.Header().Set("Cache-Control", "public,max-age=86400")
|
|
|
+ c.Header().Set("Content-Disposition", fmt.Sprintf(`inline; filename="%s"`, attach.Name))
|
|
|
|
|
|
- webhookRoutes := func() {
|
|
|
- m.Group("", func() {
|
|
|
- m.Get("", repo.Webhooks)
|
|
|
- m.Post("/delete", repo.DeleteWebhook)
|
|
|
- m.Get("/:type/new", repo.WebhooksNew)
|
|
|
- m.Post("/gogs/new", bindIgnErr(form.NewWebhook{}), repo.WebhooksNewPost)
|
|
|
- m.Post("/slack/new", bindIgnErr(form.NewSlackHook{}), repo.WebhooksSlackNewPost)
|
|
|
- m.Post("/discord/new", bindIgnErr(form.NewDiscordHook{}), repo.WebhooksDiscordNewPost)
|
|
|
- m.Post("/dingtalk/new", bindIgnErr(form.NewDingtalkHook{}), repo.WebhooksDingtalkNewPost)
|
|
|
- m.Get("/:id", repo.WebhooksEdit)
|
|
|
- m.Post("/gogs/:id", bindIgnErr(form.NewWebhook{}), repo.WebhooksEditPost)
|
|
|
- m.Post("/slack/:id", bindIgnErr(form.NewSlackHook{}), repo.WebhooksSlackEditPost)
|
|
|
- m.Post("/discord/:id", bindIgnErr(form.NewDiscordHook{}), repo.WebhooksDiscordEditPost)
|
|
|
- m.Post("/dingtalk/:id", bindIgnErr(form.NewDingtalkHook{}), repo.WebhooksDingtalkEditPost)
|
|
|
- }, repo.InjectOrgRepoContext())
|
|
|
- }
|
|
|
+ if _, err = io.Copy(c.Resp, fr); err != nil {
|
|
|
+ c.Error(err, "copy from file to response")
|
|
|
+ return
|
|
|
+ }
|
|
|
+ })
|
|
|
+ m.Post("/issues/attachments", repo.UploadIssueAttachment)
|
|
|
+ m.Post("/releases/attachments", repo.UploadReleaseAttachment)
|
|
|
+ }, ignSignIn)
|
|
|
|
|
|
-
|
|
|
- m.Group("/org", func() {
|
|
|
- m.Group("", func() {
|
|
|
- m.Get("/create", org.Create)
|
|
|
- m.Post("/create", bindIgnErr(form.CreateOrg{}), org.CreatePost)
|
|
|
- }, func(c *context.Context) {
|
|
|
- if !c.User.CanCreateOrganization() {
|
|
|
- c.NotFound()
|
|
|
- }
|
|
|
- })
|
|
|
+ m.Group("/:username", func() {
|
|
|
+ m.Post("/action/:action", user.Action)
|
|
|
+ }, reqSignIn, context.InjectParamsUser())
|
|
|
|
|
|
- m.Group("/:org", func() {
|
|
|
- m.Get("/dashboard", user.Dashboard)
|
|
|
- m.Get("/^:type(issues|pulls)$", user.Issues)
|
|
|
- m.Get("/members", org.Members)
|
|
|
- m.Get("/members/action/:action", org.MembersAction)
|
|
|
-
|
|
|
- m.Get("/teams", org.Teams)
|
|
|
- }, context.OrgAssignment(true))
|
|
|
-
|
|
|
- m.Group("/:org", func() {
|
|
|
- m.Get("/teams/:team", org.TeamMembers)
|
|
|
- m.Get("/teams/:team/repositories", org.TeamRepositories)
|
|
|
- m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction)
|
|
|
- m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction)
|
|
|
- }, context.OrgAssignment(true, false, true))
|
|
|
-
|
|
|
- m.Group("/:org", func() {
|
|
|
- m.Get("/teams/new", org.NewTeam)
|
|
|
- m.Post("/teams/new", bindIgnErr(form.CreateTeam{}), org.NewTeamPost)
|
|
|
- m.Get("/teams/:team/edit", org.EditTeam)
|
|
|
- m.Post("/teams/:team/edit", bindIgnErr(form.CreateTeam{}), org.EditTeamPost)
|
|
|
- m.Post("/teams/:team/delete", org.DeleteTeam)
|
|
|
+ if macaron.Env == macaron.DEV {
|
|
|
+ m.Get("/template/*", dev.TemplatePreview)
|
|
|
+ }
|
|
|
|
|
|
- m.Group("/settings", func() {
|
|
|
- m.Combo("").Get(org.Settings).
|
|
|
- Post(bindIgnErr(form.UpdateOrgSetting{}), org.SettingsPost)
|
|
|
- m.Post("/avatar", binding.MultipartForm(form.Avatar{}), org.SettingsAvatar)
|
|
|
- m.Post("/avatar/delete", org.SettingsDeleteAvatar)
|
|
|
- m.Group("/hooks", webhookRoutes)
|
|
|
- m.Route("/delete", "GET,POST", org.SettingsDelete)
|
|
|
- })
|
|
|
+ reqRepoAdmin := context.RequireRepoAdmin()
|
|
|
+ reqRepoWriter := context.RequireRepoWriter()
|
|
|
|
|
|
- m.Route("/invitations/new", "GET,POST", org.Invitation)
|
|
|
- }, context.OrgAssignment(true, true))
|
|
|
- }, reqSignIn)
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- m.Group("/repo", func() {
|
|
|
- m.Get("/create", repo.Create)
|
|
|
- m.Post("/create", bindIgnErr(form.CreateRepo{}), repo.CreatePost)
|
|
|
- m.Get("/migrate", repo.Migrate)
|
|
|
- m.Post("/migrate", bindIgnErr(form.MigrateRepo{}), repo.MigratePost)
|
|
|
- m.Combo("/fork/:repoid").Get(repo.Fork).
|
|
|
- Post(bindIgnErr(form.CreateRepo{}), repo.ForkPost)
|
|
|
- }, reqSignIn)
|
|
|
+ webhookRoutes := func() {
|
|
|
+ m.Group("", func() {
|
|
|
+ m.Get("", repo.Webhooks)
|
|
|
+ m.Post("/delete", repo.DeleteWebhook)
|
|
|
+ m.Get("/:type/new", repo.WebhooksNew)
|
|
|
+ m.Post("/gogs/new", bindIgnErr(form.NewWebhook{}), repo.WebhooksNewPost)
|
|
|
+ m.Post("/slack/new", bindIgnErr(form.NewSlackHook{}), repo.WebhooksSlackNewPost)
|
|
|
+ m.Post("/discord/new", bindIgnErr(form.NewDiscordHook{}), repo.WebhooksDiscordNewPost)
|
|
|
+ m.Post("/dingtalk/new", bindIgnErr(form.NewDingtalkHook{}), repo.WebhooksDingtalkNewPost)
|
|
|
+ m.Get("/:id", repo.WebhooksEdit)
|
|
|
+ m.Post("/gogs/:id", bindIgnErr(form.NewWebhook{}), repo.WebhooksEditPost)
|
|
|
+ m.Post("/slack/:id", bindIgnErr(form.NewSlackHook{}), repo.WebhooksSlackEditPost)
|
|
|
+ m.Post("/discord/:id", bindIgnErr(form.NewDiscordHook{}), repo.WebhooksDiscordEditPost)
|
|
|
+ m.Post("/dingtalk/:id", bindIgnErr(form.NewDingtalkHook{}), repo.WebhooksDingtalkEditPost)
|
|
|
+ }, repo.InjectOrgRepoContext())
|
|
|
+ }
|
|
|
|
|
|
- m.Group("/:username/:reponame", func() {
|
|
|
- m.Group("/settings", func() {
|
|
|
- m.Combo("").Get(repo.Settings).
|
|
|
- Post(bindIgnErr(form.RepoSetting{}), repo.SettingsPost)
|
|
|
- m.Combo("/avatar").Get(repo.SettingsAvatar).
|
|
|
- Post(binding.MultipartForm(form.Avatar{}), repo.SettingsAvatarPost)
|
|
|
- m.Post("/avatar/delete", repo.SettingsDeleteAvatar)
|
|
|
- m.Group("/collaboration", func() {
|
|
|
- m.Combo("").Get(repo.SettingsCollaboration).Post(repo.SettingsCollaborationPost)
|
|
|
- m.Post("/access_mode", repo.ChangeCollaborationAccessMode)
|
|
|
- m.Post("/delete", repo.DeleteCollaboration)
|
|
|
- })
|
|
|
- m.Group("/branches", func() {
|
|
|
- m.Get("", repo.SettingsBranches)
|
|
|
- m.Post("/default_branch", repo.UpdateDefaultBranch)
|
|
|
- m.Combo("/*").Get(repo.SettingsProtectedBranch).
|
|
|
- Post(bindIgnErr(form.ProtectBranch{}), repo.SettingsProtectedBranchPost)
|
|
|
+
|
|
|
+ m.Group("/org", func() {
|
|
|
+ m.Group("", func() {
|
|
|
+ m.Get("/create", org.Create)
|
|
|
+ m.Post("/create", bindIgnErr(form.CreateOrg{}), org.CreatePost)
|
|
|
}, func(c *context.Context) {
|
|
|
- if c.Repo.Repository.IsMirror {
|
|
|
+ if !c.User.CanCreateOrganization() {
|
|
|
c.NotFound()
|
|
|
- return
|
|
|
}
|
|
|
})
|
|
|
|
|
|
- m.Group("/hooks", func() {
|
|
|
- webhookRoutes()
|
|
|
-
|
|
|
- m.Group("/:id", func() {
|
|
|
- m.Post("/test", repo.TestWebhook)
|
|
|
- m.Post("/redelivery", repo.RedeliveryWebhook)
|
|
|
+ m.Group("/:org", func() {
|
|
|
+ m.Get("/dashboard", user.Dashboard)
|
|
|
+ m.Get("/^:type(issues|pulls)$", user.Issues)
|
|
|
+ m.Get("/members", org.Members)
|
|
|
+ m.Get("/members/action/:action", org.MembersAction)
|
|
|
+
|
|
|
+ m.Get("/teams", org.Teams)
|
|
|
+ }, context.OrgAssignment(true))
|
|
|
+
|
|
|
+ m.Group("/:org", func() {
|
|
|
+ m.Get("/teams/:team", org.TeamMembers)
|
|
|
+ m.Get("/teams/:team/repositories", org.TeamRepositories)
|
|
|
+ m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction)
|
|
|
+ m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction)
|
|
|
+ }, context.OrgAssignment(true, false, true))
|
|
|
+
|
|
|
+ m.Group("/:org", func() {
|
|
|
+ m.Get("/teams/new", org.NewTeam)
|
|
|
+ m.Post("/teams/new", bindIgnErr(form.CreateTeam{}), org.NewTeamPost)
|
|
|
+ m.Get("/teams/:team/edit", org.EditTeam)
|
|
|
+ m.Post("/teams/:team/edit", bindIgnErr(form.CreateTeam{}), org.EditTeamPost)
|
|
|
+ m.Post("/teams/:team/delete", org.DeleteTeam)
|
|
|
+
|
|
|
+ m.Group("/settings", func() {
|
|
|
+ m.Combo("").Get(org.Settings).
|
|
|
+ Post(bindIgnErr(form.UpdateOrgSetting{}), org.SettingsPost)
|
|
|
+ m.Post("/avatar", binding.MultipartForm(form.Avatar{}), org.SettingsAvatar)
|
|
|
+ m.Post("/avatar/delete", org.SettingsDeleteAvatar)
|
|
|
+ m.Group("/hooks", webhookRoutes)
|
|
|
+ m.Route("/delete", "GET,POST", org.SettingsDelete)
|
|
|
})
|
|
|
|
|
|
- m.Group("/git", func() {
|
|
|
- m.Get("", repo.SettingsGitHooks)
|
|
|
- m.Combo("/:name").Get(repo.SettingsGitHooksEdit).
|
|
|
- Post(repo.SettingsGitHooksEditPost)
|
|
|
- }, context.GitHookService())
|
|
|
- })
|
|
|
+ m.Route("/invitations/new", "GET,POST", org.Invitation)
|
|
|
+ }, context.OrgAssignment(true, true))
|
|
|
+ }, reqSignIn)
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ m.Group("/repo", func() {
|
|
|
+ m.Get("/create", repo.Create)
|
|
|
+ m.Post("/create", bindIgnErr(form.CreateRepo{}), repo.CreatePost)
|
|
|
+ m.Get("/migrate", repo.Migrate)
|
|
|
+ m.Post("/migrate", bindIgnErr(form.MigrateRepo{}), repo.MigratePost)
|
|
|
+ m.Combo("/fork/:repoid").Get(repo.Fork).
|
|
|
+ Post(bindIgnErr(form.CreateRepo{}), repo.ForkPost)
|
|
|
+ }, reqSignIn)
|
|
|
+
|
|
|
+ m.Group("/:username/:reponame", func() {
|
|
|
+ m.Group("/settings", func() {
|
|
|
+ m.Combo("").Get(repo.Settings).
|
|
|
+ Post(bindIgnErr(form.RepoSetting{}), repo.SettingsPost)
|
|
|
+ m.Combo("/avatar").Get(repo.SettingsAvatar).
|
|
|
+ Post(binding.MultipartForm(form.Avatar{}), repo.SettingsAvatarPost)
|
|
|
+ m.Post("/avatar/delete", repo.SettingsDeleteAvatar)
|
|
|
+ m.Group("/collaboration", func() {
|
|
|
+ m.Combo("").Get(repo.SettingsCollaboration).Post(repo.SettingsCollaborationPost)
|
|
|
+ m.Post("/access_mode", repo.ChangeCollaborationAccessMode)
|
|
|
+ m.Post("/delete", repo.DeleteCollaboration)
|
|
|
+ })
|
|
|
+ m.Group("/branches", func() {
|
|
|
+ m.Get("", repo.SettingsBranches)
|
|
|
+ m.Post("/default_branch", repo.UpdateDefaultBranch)
|
|
|
+ m.Combo("/*").Get(repo.SettingsProtectedBranch).
|
|
|
+ Post(bindIgnErr(form.ProtectBranch{}), repo.SettingsProtectedBranchPost)
|
|
|
+ }, func(c *context.Context) {
|
|
|
+ if c.Repo.Repository.IsMirror {
|
|
|
+ c.NotFound()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ })
|
|
|
|
|
|
- m.Group("/keys", func() {
|
|
|
- m.Combo("").Get(repo.SettingsDeployKeys).
|
|
|
- Post(bindIgnErr(form.AddSSHKey{}), repo.SettingsDeployKeysPost)
|
|
|
- m.Post("/delete", repo.DeleteDeployKey)
|
|
|
- })
|
|
|
+ m.Group("/hooks", func() {
|
|
|
+ webhookRoutes()
|
|
|
|
|
|
- }, func(c *context.Context) {
|
|
|
- c.Data["PageIsSettings"] = true
|
|
|
- })
|
|
|
- }, reqSignIn, context.RepoAssignment(), reqRepoAdmin, context.RepoRef())
|
|
|
+ m.Group("/:id", func() {
|
|
|
+ m.Post("/test", repo.TestWebhook)
|
|
|
+ m.Post("/redelivery", repo.RedeliveryWebhook)
|
|
|
+ })
|
|
|
|
|
|
- m.Post("/:username/:reponame/action/:action", reqSignIn, context.RepoAssignment(), repo.Action)
|
|
|
- m.Group("/:username/:reponame", func() {
|
|
|
- m.Get("/issues", repo.RetrieveLabels, repo.Issues)
|
|
|
- m.Get("/issues/:index", repo.ViewIssue)
|
|
|
- m.Get("/labels/", repo.RetrieveLabels, repo.Labels)
|
|
|
- m.Get("/milestones", repo.Milestones)
|
|
|
- }, ignSignIn, context.RepoAssignment(true))
|
|
|
- m.Group("/:username/:reponame", func() {
|
|
|
-
|
|
|
-
|
|
|
- m.Group("/issues", func() {
|
|
|
- m.Combo("/new", repo.MustEnableIssues).Get(context.RepoRef(), repo.NewIssue).
|
|
|
- Post(bindIgnErr(form.NewIssue{}), repo.NewIssuePost)
|
|
|
-
|
|
|
- m.Group("/:index", func() {
|
|
|
- m.Post("/title", repo.UpdateIssueTitle)
|
|
|
- m.Post("/content", repo.UpdateIssueContent)
|
|
|
- m.Combo("/comments").Post(bindIgnErr(form.CreateComment{}), repo.NewComment)
|
|
|
- })
|
|
|
- })
|
|
|
- m.Group("/comments/:id", func() {
|
|
|
- m.Post("", repo.UpdateCommentContent)
|
|
|
- m.Post("/delete", repo.DeleteComment)
|
|
|
- })
|
|
|
- }, reqSignIn, context.RepoAssignment(true))
|
|
|
- m.Group("/:username/:reponame", func() {
|
|
|
- m.Group("/wiki", func() {
|
|
|
- m.Get("/?:page", repo.Wiki)
|
|
|
- m.Get("/_pages", repo.WikiPages)
|
|
|
- }, repo.MustEnableWiki, context.RepoRef())
|
|
|
- }, ignSignIn, context.RepoAssignment(false, true))
|
|
|
+ m.Group("/git", func() {
|
|
|
+ m.Get("", repo.SettingsGitHooks)
|
|
|
+ m.Combo("/:name").Get(repo.SettingsGitHooksEdit).
|
|
|
+ Post(repo.SettingsGitHooksEditPost)
|
|
|
+ }, context.GitHookService())
|
|
|
+ })
|
|
|
|
|
|
- m.Group("/:username/:reponame", func() {
|
|
|
-
|
|
|
-
|
|
|
- m.Group("/issues", func() {
|
|
|
- m.Group("/:index", func() {
|
|
|
- m.Post("/label", repo.UpdateIssueLabel)
|
|
|
- m.Post("/milestone", repo.UpdateIssueMilestone)
|
|
|
- m.Post("/assignee", repo.UpdateIssueAssignee)
|
|
|
- }, reqRepoWriter)
|
|
|
- })
|
|
|
- m.Group("/labels", func() {
|
|
|
- m.Post("/new", bindIgnErr(form.CreateLabel{}), repo.NewLabel)
|
|
|
- m.Post("/edit", bindIgnErr(form.CreateLabel{}), repo.UpdateLabel)
|
|
|
- m.Post("/delete", repo.DeleteLabel)
|
|
|
- m.Post("/initialize", bindIgnErr(form.InitializeLabels{}), repo.InitializeLabels)
|
|
|
- }, reqRepoWriter, context.RepoRef())
|
|
|
- m.Group("/milestones", func() {
|
|
|
- m.Combo("/new").Get(repo.NewMilestone).
|
|
|
- Post(bindIgnErr(form.CreateMilestone{}), repo.NewMilestonePost)
|
|
|
- m.Get("/:id/edit", repo.EditMilestone)
|
|
|
- m.Post("/:id/edit", bindIgnErr(form.CreateMilestone{}), repo.EditMilestonePost)
|
|
|
- m.Get("/:id/:action", repo.ChangeMilestonStatus)
|
|
|
- m.Post("/delete", repo.DeleteMilestone)
|
|
|
- }, reqRepoWriter, context.RepoRef())
|
|
|
-
|
|
|
- m.Group("/releases", func() {
|
|
|
- m.Get("/new", repo.NewRelease)
|
|
|
- m.Post("/new", bindIgnErr(form.NewRelease{}), repo.NewReleasePost)
|
|
|
- m.Post("/delete", repo.DeleteRelease)
|
|
|
- m.Get("/edit/*", repo.EditRelease)
|
|
|
- m.Post("/edit/*", bindIgnErr(form.EditRelease{}), repo.EditReleasePost)
|
|
|
- }, repo.MustBeNotBare, reqRepoWriter, func(c *context.Context) {
|
|
|
- c.Data["PageIsViewFiles"] = true
|
|
|
- })
|
|
|
+ m.Group("/keys", func() {
|
|
|
+ m.Combo("").Get(repo.SettingsDeployKeys).
|
|
|
+ Post(bindIgnErr(form.AddSSHKey{}), repo.SettingsDeployKeysPost)
|
|
|
+ m.Post("/delete", repo.DeleteDeployKey)
|
|
|
+ })
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- m.Combo("/compare/*", repo.MustAllowPulls).Get(repo.CompareAndPullRequest).
|
|
|
- Post(bindIgnErr(form.NewIssue{}), repo.CompareAndPullRequestPost)
|
|
|
+ }, func(c *context.Context) {
|
|
|
+ c.Data["PageIsSettings"] = true
|
|
|
+ })
|
|
|
+ }, reqSignIn, context.RepoAssignment(), reqRepoAdmin, context.RepoRef())
|
|
|
+
|
|
|
+ m.Post("/:username/:reponame/action/:action", reqSignIn, context.RepoAssignment(), repo.Action)
|
|
|
+ m.Group("/:username/:reponame", func() {
|
|
|
+ m.Get("/issues", repo.RetrieveLabels, repo.Issues)
|
|
|
+ m.Get("/issues/:index", repo.ViewIssue)
|
|
|
+ m.Get("/labels/", repo.RetrieveLabels, repo.Labels)
|
|
|
+ m.Get("/milestones", repo.Milestones)
|
|
|
+ }, ignSignIn, context.RepoAssignment(true))
|
|
|
+ m.Group("/:username/:reponame", func() {
|
|
|
+
|
|
|
+
|
|
|
+ m.Group("/issues", func() {
|
|
|
+ m.Combo("/new", repo.MustEnableIssues).Get(context.RepoRef(), repo.NewIssue).
|
|
|
+ Post(bindIgnErr(form.NewIssue{}), repo.NewIssuePost)
|
|
|
+
|
|
|
+ m.Group("/:index", func() {
|
|
|
+ m.Post("/title", repo.UpdateIssueTitle)
|
|
|
+ m.Post("/content", repo.UpdateIssueContent)
|
|
|
+ m.Combo("/comments").Post(bindIgnErr(form.CreateComment{}), repo.NewComment)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ m.Group("/comments/:id", func() {
|
|
|
+ m.Post("", repo.UpdateCommentContent)
|
|
|
+ m.Post("/delete", repo.DeleteComment)
|
|
|
+ })
|
|
|
+ }, reqSignIn, context.RepoAssignment(true))
|
|
|
+ m.Group("/:username/:reponame", func() {
|
|
|
+ m.Group("/wiki", func() {
|
|
|
+ m.Get("/?:page", repo.Wiki)
|
|
|
+ m.Get("/_pages", repo.WikiPages)
|
|
|
+ }, repo.MustEnableWiki, context.RepoRef())
|
|
|
+ }, ignSignIn, context.RepoAssignment(false, true))
|
|
|
+
|
|
|
+ m.Group("/:username/:reponame", func() {
|
|
|
+
|
|
|
+
|
|
|
+ m.Group("/issues", func() {
|
|
|
+ m.Group("/:index", func() {
|
|
|
+ m.Post("/label", repo.UpdateIssueLabel)
|
|
|
+ m.Post("/milestone", repo.UpdateIssueMilestone)
|
|
|
+ m.Post("/assignee", repo.UpdateIssueAssignee)
|
|
|
+ }, reqRepoWriter)
|
|
|
+ })
|
|
|
+ m.Group("/labels", func() {
|
|
|
+ m.Post("/new", bindIgnErr(form.CreateLabel{}), repo.NewLabel)
|
|
|
+ m.Post("/edit", bindIgnErr(form.CreateLabel{}), repo.UpdateLabel)
|
|
|
+ m.Post("/delete", repo.DeleteLabel)
|
|
|
+ m.Post("/initialize", bindIgnErr(form.InitializeLabels{}), repo.InitializeLabels)
|
|
|
+ }, reqRepoWriter, context.RepoRef())
|
|
|
+ m.Group("/milestones", func() {
|
|
|
+ m.Combo("/new").Get(repo.NewMilestone).
|
|
|
+ Post(bindIgnErr(form.CreateMilestone{}), repo.NewMilestonePost)
|
|
|
+ m.Get("/:id/edit", repo.EditMilestone)
|
|
|
+ m.Post("/:id/edit", bindIgnErr(form.CreateMilestone{}), repo.EditMilestonePost)
|
|
|
+ m.Get("/:id/:action", repo.ChangeMilestonStatus)
|
|
|
+ m.Post("/delete", repo.DeleteMilestone)
|
|
|
+ }, reqRepoWriter, context.RepoRef())
|
|
|
+
|
|
|
+ m.Group("/releases", func() {
|
|
|
+ m.Get("/new", repo.NewRelease)
|
|
|
+ m.Post("/new", bindIgnErr(form.NewRelease{}), repo.NewReleasePost)
|
|
|
+ m.Post("/delete", repo.DeleteRelease)
|
|
|
+ m.Get("/edit/*", repo.EditRelease)
|
|
|
+ m.Post("/edit/*", bindIgnErr(form.EditRelease{}), repo.EditReleasePost)
|
|
|
+ }, repo.MustBeNotBare, reqRepoWriter, func(c *context.Context) {
|
|
|
+ c.Data["PageIsViewFiles"] = true
|
|
|
+ })
|
|
|
|
|
|
- m.Group("", func() {
|
|
|
- m.Combo("/_edit/*").Get(repo.EditFile).
|
|
|
- Post(bindIgnErr(form.EditRepoFile{}), repo.EditFilePost)
|
|
|
- m.Combo("/_new/*").Get(repo.NewFile).
|
|
|
- Post(bindIgnErr(form.EditRepoFile{}), repo.NewFilePost)
|
|
|
- m.Post("/_preview/*", bindIgnErr(form.EditPreviewDiff{}), repo.DiffPreviewPost)
|
|
|
- m.Combo("/_delete/*").Get(repo.DeleteFile).
|
|
|
- Post(bindIgnErr(form.DeleteRepoFile{}), repo.DeleteFilePost)
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ m.Combo("/compare/*", repo.MustAllowPulls).Get(repo.CompareAndPullRequest).
|
|
|
+ Post(bindIgnErr(form.NewIssue{}), repo.CompareAndPullRequestPost)
|
|
|
|
|
|
m.Group("", func() {
|
|
|
- m.Combo("/_upload/*").Get(repo.UploadFile).
|
|
|
- Post(bindIgnErr(form.UploadRepoFile{}), repo.UploadFilePost)
|
|
|
- m.Post("/upload-file", repo.UploadFileToServer)
|
|
|
- m.Post("/upload-remove", bindIgnErr(form.RemoveUploadFile{}), repo.RemoveUploadFileFromServer)
|
|
|
- }, func(c *context.Context) {
|
|
|
- if !conf.Repository.Upload.Enabled {
|
|
|
+ m.Combo("/_edit/*").Get(repo.EditFile).
|
|
|
+ Post(bindIgnErr(form.EditRepoFile{}), repo.EditFilePost)
|
|
|
+ m.Combo("/_new/*").Get(repo.NewFile).
|
|
|
+ Post(bindIgnErr(form.EditRepoFile{}), repo.NewFilePost)
|
|
|
+ m.Post("/_preview/*", bindIgnErr(form.EditPreviewDiff{}), repo.DiffPreviewPost)
|
|
|
+ m.Combo("/_delete/*").Get(repo.DeleteFile).
|
|
|
+ Post(bindIgnErr(form.DeleteRepoFile{}), repo.DeleteFilePost)
|
|
|
+
|
|
|
+ m.Group("", func() {
|
|
|
+ m.Combo("/_upload/*").Get(repo.UploadFile).
|
|
|
+ Post(bindIgnErr(form.UploadRepoFile{}), repo.UploadFilePost)
|
|
|
+ m.Post("/upload-file", repo.UploadFileToServer)
|
|
|
+ m.Post("/upload-remove", bindIgnErr(form.RemoveUploadFile{}), repo.RemoveUploadFileFromServer)
|
|
|
+ }, func(c *context.Context) {
|
|
|
+ if !conf.Repository.Upload.Enabled {
|
|
|
+ c.NotFound()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }, repo.MustBeNotBare, reqRepoWriter, context.RepoRef(), func(c *context.Context) {
|
|
|
+ if !c.Repo.CanEnableEditor() {
|
|
|
c.NotFound()
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+ c.Data["PageIsViewFiles"] = true
|
|
|
})
|
|
|
- }, repo.MustBeNotBare, reqRepoWriter, context.RepoRef(), func(c *context.Context) {
|
|
|
- if !c.Repo.CanEnableEditor() {
|
|
|
- c.NotFound()
|
|
|
- return
|
|
|
- }
|
|
|
+ }, reqSignIn, context.RepoAssignment())
|
|
|
|
|
|
- c.Data["PageIsViewFiles"] = true
|
|
|
- })
|
|
|
- }, reqSignIn, context.RepoAssignment())
|
|
|
+ m.Group("/:username/:reponame", func() {
|
|
|
+ m.Group("", func() {
|
|
|
+ m.Get("/releases", repo.MustBeNotBare, repo.Releases)
|
|
|
+ m.Get("/pulls", repo.RetrieveLabels, repo.Pulls)
|
|
|
+ m.Get("/pulls/:index", repo.ViewPull)
|
|
|
+ }, context.RepoRef())
|
|
|
|
|
|
- m.Group("/:username/:reponame", func() {
|
|
|
- m.Group("", func() {
|
|
|
- m.Get("/releases", repo.MustBeNotBare, repo.Releases)
|
|
|
- m.Get("/pulls", repo.RetrieveLabels, repo.Pulls)
|
|
|
- m.Get("/pulls/:index", repo.ViewPull)
|
|
|
- }, context.RepoRef())
|
|
|
-
|
|
|
- m.Group("/branches", func() {
|
|
|
- m.Get("", repo.Branches)
|
|
|
- m.Get("/all", repo.AllBranches)
|
|
|
- m.Post("/delete/*", reqSignIn, reqRepoWriter, repo.DeleteBranchPost)
|
|
|
- }, repo.MustBeNotBare, func(c *context.Context) {
|
|
|
- c.Data["PageIsViewFiles"] = true
|
|
|
- })
|
|
|
+ m.Group("/branches", func() {
|
|
|
+ m.Get("", repo.Branches)
|
|
|
+ m.Get("/all", repo.AllBranches)
|
|
|
+ m.Post("/delete/*", reqSignIn, reqRepoWriter, repo.DeleteBranchPost)
|
|
|
+ }, repo.MustBeNotBare, func(c *context.Context) {
|
|
|
+ c.Data["PageIsViewFiles"] = true
|
|
|
+ })
|
|
|
|
|
|
- m.Group("/wiki", func() {
|
|
|
- m.Group("", func() {
|
|
|
- m.Combo("/_new").Get(repo.NewWiki).
|
|
|
- Post(bindIgnErr(form.NewWiki{}), repo.NewWikiPost)
|
|
|
- m.Combo("/:page/_edit").Get(repo.EditWiki).
|
|
|
- Post(bindIgnErr(form.NewWiki{}), repo.EditWikiPost)
|
|
|
- m.Post("/:page/delete", repo.DeleteWikiPagePost)
|
|
|
- }, reqSignIn, reqRepoWriter)
|
|
|
- }, repo.MustEnableWiki, context.RepoRef())
|
|
|
-
|
|
|
- m.Get("/archive/*", repo.MustBeNotBare, repo.Download)
|
|
|
-
|
|
|
- m.Group("/pulls/:index", func() {
|
|
|
- m.Get("/commits", context.RepoRef(), repo.ViewPullCommits)
|
|
|
- m.Get("/files", context.RepoRef(), repo.ViewPullFiles)
|
|
|
- m.Post("/merge", reqRepoWriter, repo.MergePullRequest)
|
|
|
- }, repo.MustAllowPulls)
|
|
|
+ m.Group("/wiki", func() {
|
|
|
+ m.Group("", func() {
|
|
|
+ m.Combo("/_new").Get(repo.NewWiki).
|
|
|
+ Post(bindIgnErr(form.NewWiki{}), repo.NewWikiPost)
|
|
|
+ m.Combo("/:page/_edit").Get(repo.EditWiki).
|
|
|
+ Post(bindIgnErr(form.NewWiki{}), repo.EditWikiPost)
|
|
|
+ m.Post("/:page/delete", repo.DeleteWikiPagePost)
|
|
|
+ }, reqSignIn, reqRepoWriter)
|
|
|
+ }, repo.MustEnableWiki, context.RepoRef())
|
|
|
|
|
|
- m.Group("", func() {
|
|
|
- m.Get("/src/*", repo.Home)
|
|
|
- m.Get("/raw/*", repo.SingleDownload)
|
|
|
- m.Get("/commits/*", repo.RefCommits)
|
|
|
- m.Get("/commit/:sha([a-f0-9]{7,40})$", repo.Diff)
|
|
|
- m.Get("/forks", repo.Forks)
|
|
|
- }, repo.MustBeNotBare, context.RepoRef())
|
|
|
- m.Get("/commit/:sha([a-f0-9]{7,40})\\.:ext(patch|diff)", repo.MustBeNotBare, repo.RawDiff)
|
|
|
-
|
|
|
- m.Get("/compare/:before([a-z0-9]{40})\\.\\.\\.:after([a-z0-9]{40})", repo.MustBeNotBare, context.RepoRef(), repo.CompareDiff)
|
|
|
- }, ignSignIn, context.RepoAssignment())
|
|
|
- m.Group("/:username/:reponame", func() {
|
|
|
- m.Get("/stars", repo.Stars)
|
|
|
- m.Get("/watchers", repo.Watchers)
|
|
|
- }, ignSignIn, context.RepoAssignment(), context.RepoRef())
|
|
|
+ m.Get("/archive/*", repo.MustBeNotBare, repo.Download)
|
|
|
|
|
|
- m.Group("/:username", func() {
|
|
|
- m.Get("/:reponame", ignSignIn, context.RepoAssignment(), context.RepoRef(), repo.Home)
|
|
|
+ m.Group("/pulls/:index", func() {
|
|
|
+ m.Get("/commits", context.RepoRef(), repo.ViewPullCommits)
|
|
|
+ m.Get("/files", context.RepoRef(), repo.ViewPullFiles)
|
|
|
+ m.Post("/merge", reqRepoWriter, repo.MergePullRequest)
|
|
|
+ }, repo.MustAllowPulls)
|
|
|
|
|
|
- m.Group("/:reponame", func() {
|
|
|
- m.Head("/tasks/trigger", repo.TriggerTask)
|
|
|
- })
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- m.Group("/:reponame([\\d\\w-_\\.]+\\.git$)", func() {
|
|
|
- m.Get("", ignSignIn, context.RepoAssignment(), context.RepoRef(), repo.Home)
|
|
|
+ m.Group("", func() {
|
|
|
+ m.Get("/src/*", repo.Home)
|
|
|
+ m.Get("/raw/*", repo.SingleDownload)
|
|
|
+ m.Get("/commits/*", repo.RefCommits)
|
|
|
+ m.Get("/commit/:sha([a-f0-9]{7,40})$", repo.Diff)
|
|
|
+ m.Get("/forks", repo.Forks)
|
|
|
+ }, repo.MustBeNotBare, context.RepoRef())
|
|
|
+ m.Get("/commit/:sha([a-f0-9]{7,40})\\.:ext(patch|diff)", repo.MustBeNotBare, repo.RawDiff)
|
|
|
+
|
|
|
+ m.Get("/compare/:before([a-z0-9]{40})\\.\\.\\.:after([a-z0-9]{40})", repo.MustBeNotBare, context.RepoRef(), repo.CompareDiff)
|
|
|
+ }, ignSignIn, context.RepoAssignment())
|
|
|
+ m.Group("/:username/:reponame", func() {
|
|
|
+ m.Get("", repo.Home)
|
|
|
+ m.Get("/stars", repo.Stars)
|
|
|
+ m.Get("/watchers", repo.Watchers)
|
|
|
+ m.Head("/tasks/trigger", repo.TriggerTask)
|
|
|
+ }, ignSignIn, context.RepoAssignment(), context.RepoRef())
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ m.Group("/api", func() {
|
|
|
+ apiv1.RegisterRoutes(m)
|
|
|
+ }, ignSignIn)
|
|
|
+ },
|
|
|
+ session.Sessioner(session.Options{
|
|
|
+ Provider: conf.Session.Provider,
|
|
|
+ ProviderConfig: conf.Session.ProviderConfig,
|
|
|
+ CookieName: conf.Session.CookieName,
|
|
|
+ CookiePath: conf.Server.Subpath,
|
|
|
+ Gclifetime: conf.Session.GCInterval,
|
|
|
+ Maxlifetime: conf.Session.MaxLifeTime,
|
|
|
+ Secure: conf.Session.CookieSecure,
|
|
|
+ }),
|
|
|
+ csrf.Csrfer(csrf.Options{
|
|
|
+ Secret: conf.Security.SecretKey,
|
|
|
+ Header: "X-CSRF-Token",
|
|
|
+ Cookie: conf.Session.CSRFCookieName,
|
|
|
+ CookieDomain: conf.Server.URL.Hostname(),
|
|
|
+ CookiePath: conf.Server.Subpath,
|
|
|
+ CookieHttpOnly: true,
|
|
|
+ SetCookie: true,
|
|
|
+ Secure: conf.Server.URL.Scheme == "https",
|
|
|
+ }),
|
|
|
+ context.Contexter(),
|
|
|
+ )
|
|
|
|
|
|
- m.Group("/info/lfs", func() {
|
|
|
- lfs.RegisterRoutes(m.Router)
|
|
|
- }, ignSignInAndCsrf)
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
- m.Route("/*", "GET,POST,OPTIONS", ignSignInAndCsrf, repo.HTTPContexter(), repo.HTTP)
|
|
|
+ m.Group("/:username/:reponame", func() {
|
|
|
+ m.Group("/info/lfs", func() {
|
|
|
+ lfs.RegisterRoutes(m.Router)
|
|
|
})
|
|
|
- m.Route("/:reponame/*", "GET,POST,OPTIONS", ignSignInAndCsrf, repo.HTTPContexter(), repo.HTTP)
|
|
|
- })
|
|
|
-
|
|
|
|
|
|
- m.Group("/api", func() {
|
|
|
- apiv1.RegisterRoutes(m)
|
|
|
- }, ignSignIn)
|
|
|
+ m.Route("/*", "GET,POST,OPTIONS", repo.HTTPContexter(), repo.HTTP)
|
|
|
+ })
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
m.Group("/-", func() {
|
|
|
m.Get("/metrics", app.MetricsFilter(), promhttp.Handler())
|
|
|
|
|
@@ -675,16 +673,18 @@ func runWeb(c *cli.Context) error {
|
|
|
})
|
|
|
})
|
|
|
|
|
|
-
|
|
|
- m.Get("/robots.txt", func(c *context.Context) {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ m.Get("/robots.txt", func(w http.ResponseWriter, r *http.Request) {
|
|
|
if conf.HasRobotsTxt {
|
|
|
- c.ServeFileContent(filepath.Join(conf.CustomDir(), "robots.txt"))
|
|
|
+ http.ServeFile(w, r, filepath.Join(conf.CustomDir(), "robots.txt"))
|
|
|
} else {
|
|
|
- c.NotFound()
|
|
|
+ w.WriteHeader(http.StatusNotFound)
|
|
|
}
|
|
|
})
|
|
|
|
|
|
-
|
|
|
m.NotFound(route.NotFound)
|
|
|
|
|
|
|