web.go 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package cmd
  5. import (
  6. "crypto/tls"
  7. "fmt"
  8. "io/ioutil"
  9. "net"
  10. "net/http"
  11. "net/http/fcgi"
  12. "os"
  13. "path"
  14. "strings"
  15. "github.com/go-macaron/binding"
  16. "github.com/go-macaron/cache"
  17. "github.com/go-macaron/captcha"
  18. "github.com/go-macaron/csrf"
  19. "github.com/go-macaron/gzip"
  20. "github.com/go-macaron/i18n"
  21. "github.com/go-macaron/session"
  22. "github.com/go-macaron/toolbox"
  23. "github.com/go-xorm/xorm"
  24. "github.com/mcuadros/go-version"
  25. "github.com/urfave/cli"
  26. "gopkg.in/ini.v1"
  27. "gopkg.in/macaron.v1"
  28. "github.com/gogits/git-module"
  29. "github.com/gogits/go-gogs-client"
  30. "github.com/gogits/gogs/models"
  31. "github.com/gogits/gogs/modules/auth"
  32. "github.com/gogits/gogs/modules/bindata"
  33. "github.com/gogits/gogs/modules/context"
  34. "github.com/gogits/gogs/modules/log"
  35. "github.com/gogits/gogs/modules/setting"
  36. "github.com/gogits/gogs/modules/template"
  37. "github.com/gogits/gogs/routers"
  38. "github.com/gogits/gogs/routers/admin"
  39. apiv1 "github.com/gogits/gogs/routers/api/v1"
  40. "github.com/gogits/gogs/routers/dev"
  41. "github.com/gogits/gogs/routers/org"
  42. "github.com/gogits/gogs/routers/repo"
  43. "github.com/gogits/gogs/routers/user"
  44. )
  45. var CmdWeb = cli.Command{
  46. Name: "web",
  47. Usage: "Start Gogs web server",
  48. Description: `Gogs web server is the only thing you need to run,
  49. and it takes care of all the other things for you`,
  50. Action: runWeb,
  51. Flags: []cli.Flag{
  52. stringFlag("port, p", "3000", "Temporary port number to prevent conflict"),
  53. stringFlag("config, c", "custom/conf/app.ini", "Custom configuration file path"),
  54. },
  55. }
  56. type VerChecker struct {
  57. ImportPath string
  58. Version func() string
  59. Expected string
  60. }
  61. // checkVersion checks if binary matches the version of templates files.
  62. func checkVersion() {
  63. // Templates.
  64. data, err := ioutil.ReadFile(setting.StaticRootPath + "/templates/.VERSION")
  65. if err != nil {
  66. log.Fatal(4, "Fail to read 'templates/.VERSION': %v", err)
  67. }
  68. tplVer := string(data)
  69. if tplVer != setting.AppVer {
  70. if version.Compare(tplVer, setting.AppVer, ">") {
  71. log.Fatal(4, "Binary version is lower than template file version, did you forget to recompile Gogs?")
  72. } else {
  73. log.Fatal(4, "Binary version is higher than template file version, did you forget to update template files?")
  74. }
  75. }
  76. // Check dependency version.
  77. checkers := []VerChecker{
  78. {"github.com/go-xorm/xorm", func() string { return xorm.Version }, "0.6.0"},
  79. {"github.com/go-macaron/binding", binding.Version, "0.3.2"},
  80. {"github.com/go-macaron/cache", cache.Version, "0.1.2"},
  81. {"github.com/go-macaron/csrf", csrf.Version, "0.1.0"},
  82. {"github.com/go-macaron/i18n", i18n.Version, "0.3.0"},
  83. {"github.com/go-macaron/session", session.Version, "0.1.6"},
  84. {"github.com/go-macaron/toolbox", toolbox.Version, "0.1.0"},
  85. {"gopkg.in/ini.v1", ini.Version, "1.8.4"},
  86. {"gopkg.in/macaron.v1", macaron.Version, "1.1.7"},
  87. {"github.com/gogits/git-module", git.Version, "0.4.5"},
  88. {"github.com/gogits/go-gogs-client", gogs.Version, "0.12.1"},
  89. }
  90. for _, c := range checkers {
  91. if !version.Compare(c.Version(), c.Expected, ">=") {
  92. log.Fatal(4, `Dependency outdated!
  93. Package '%s' current version (%s) is below requirement (%s),
  94. please use following command to update this package and recompile Gogs:
  95. go get -u %[1]s`, c.ImportPath, c.Version(), c.Expected)
  96. }
  97. }
  98. }
  99. // newMacaron initializes Macaron instance.
  100. func newMacaron() *macaron.Macaron {
  101. m := macaron.New()
  102. if !setting.DisableRouterLog {
  103. m.Use(macaron.Logger())
  104. }
  105. m.Use(macaron.Recovery())
  106. if setting.EnableGzip {
  107. m.Use(gzip.Gziper())
  108. }
  109. if setting.Protocol == setting.SCHEME_FCGI {
  110. m.SetURLPrefix(setting.AppSubUrl)
  111. }
  112. m.Use(macaron.Static(
  113. path.Join(setting.StaticRootPath, "public"),
  114. macaron.StaticOptions{
  115. SkipLogging: setting.DisableRouterLog,
  116. },
  117. ))
  118. m.Use(macaron.Static(
  119. setting.AvatarUploadPath,
  120. macaron.StaticOptions{
  121. Prefix: "avatars",
  122. SkipLogging: setting.DisableRouterLog,
  123. },
  124. ))
  125. funcMap := template.NewFuncMap()
  126. m.Use(macaron.Renderer(macaron.RenderOptions{
  127. Directory: path.Join(setting.StaticRootPath, "templates"),
  128. AppendDirectories: []string{path.Join(setting.CustomPath, "templates")},
  129. Funcs: funcMap,
  130. IndentJSON: macaron.Env != macaron.PROD,
  131. }))
  132. models.InitMailRender(path.Join(setting.StaticRootPath, "templates/mail"),
  133. path.Join(setting.CustomPath, "templates/mail"), funcMap)
  134. localeNames, err := bindata.AssetDir("conf/locale")
  135. if err != nil {
  136. log.Fatal(4, "Fail to list locale files: %v", err)
  137. }
  138. localFiles := make(map[string][]byte)
  139. for _, name := range localeNames {
  140. localFiles[name] = bindata.MustAsset("conf/locale/" + name)
  141. }
  142. m.Use(i18n.I18n(i18n.Options{
  143. SubURL: setting.AppSubUrl,
  144. Files: localFiles,
  145. CustomDirectory: path.Join(setting.CustomPath, "conf/locale"),
  146. Langs: setting.Langs,
  147. Names: setting.Names,
  148. DefaultLang: "en-US",
  149. Redirect: true,
  150. }))
  151. m.Use(cache.Cacher(cache.Options{
  152. Adapter: setting.CacheAdapter,
  153. AdapterConfig: setting.CacheConn,
  154. Interval: setting.CacheInterval,
  155. }))
  156. m.Use(captcha.Captchaer(captcha.Options{
  157. SubURL: setting.AppSubUrl,
  158. }))
  159. m.Use(session.Sessioner(setting.SessionConfig))
  160. m.Use(csrf.Csrfer(csrf.Options{
  161. Secret: setting.SecretKey,
  162. Cookie: setting.CSRFCookieName,
  163. SetCookie: true,
  164. Header: "X-Csrf-Token",
  165. CookiePath: setting.AppSubUrl,
  166. }))
  167. m.Use(toolbox.Toolboxer(m, toolbox.Options{
  168. HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{
  169. &toolbox.HealthCheckFuncDesc{
  170. Desc: "Database connection",
  171. Func: models.Ping,
  172. },
  173. },
  174. }))
  175. m.Use(context.Contexter())
  176. return m
  177. }
  178. func runWeb(ctx *cli.Context) error {
  179. if ctx.IsSet("config") {
  180. setting.CustomConf = ctx.String("config")
  181. }
  182. routers.GlobalInit()
  183. checkVersion()
  184. m := newMacaron()
  185. reqSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: true})
  186. ignSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: setting.Service.RequireSignInView})
  187. ignSignInAndCsrf := context.Toggle(&context.ToggleOptions{DisableCSRF: true})
  188. reqSignOut := context.Toggle(&context.ToggleOptions{SignOutRequired: true})
  189. bindIgnErr := binding.BindIgnErr
  190. // FIXME: not all routes need go through same middlewares.
  191. // Especially some AJAX requests, we can reduce middleware number to improve performance.
  192. // Routers.
  193. m.Get("/", ignSignIn, routers.Home)
  194. m.Group("/explore", func() {
  195. m.Get("", func(ctx *context.Context) {
  196. ctx.Redirect(setting.AppSubUrl + "/explore/repos")
  197. })
  198. m.Get("/repos", routers.ExploreRepos)
  199. m.Get("/users", routers.ExploreUsers)
  200. m.Get("/organizations", routers.ExploreOrganizations)
  201. }, ignSignIn)
  202. m.Combo("/install", routers.InstallInit).Get(routers.Install).
  203. Post(bindIgnErr(auth.InstallForm{}), routers.InstallPost)
  204. m.Get("/^:type(issues|pulls)$", reqSignIn, user.Issues)
  205. // ***** START: User *****
  206. m.Group("/user", func() {
  207. m.Get("/login", user.SignIn)
  208. m.Post("/login", bindIgnErr(auth.SignInForm{}), user.SignInPost)
  209. m.Get("/sign_up", user.SignUp)
  210. m.Post("/sign_up", bindIgnErr(auth.RegisterForm{}), user.SignUpPost)
  211. m.Get("/reset_password", user.ResetPasswd)
  212. m.Post("/reset_password", user.ResetPasswdPost)
  213. }, reqSignOut)
  214. m.Group("/user/settings", func() {
  215. m.Get("", user.Settings)
  216. m.Post("", bindIgnErr(auth.UpdateProfileForm{}), user.SettingsPost)
  217. m.Combo("/avatar").Get(user.SettingsAvatar).
  218. Post(binding.MultipartForm(auth.AvatarForm{}), user.SettingsAvatarPost)
  219. m.Post("/avatar/delete", user.SettingsDeleteAvatar)
  220. m.Combo("/email").Get(user.SettingsEmails).
  221. Post(bindIgnErr(auth.AddEmailForm{}), user.SettingsEmailPost)
  222. m.Post("/email/delete", user.DeleteEmail)
  223. m.Get("/password", user.SettingsPassword)
  224. m.Post("/password", bindIgnErr(auth.ChangePasswordForm{}), user.SettingsPasswordPost)
  225. m.Combo("/ssh").Get(user.SettingsSSHKeys).
  226. Post(bindIgnErr(auth.AddSSHKeyForm{}), user.SettingsSSHKeysPost)
  227. m.Post("/ssh/delete", user.DeleteSSHKey)
  228. m.Combo("/applications").Get(user.SettingsApplications).
  229. Post(bindIgnErr(auth.NewAccessTokenForm{}), user.SettingsApplicationsPost)
  230. m.Post("/applications/delete", user.SettingsDeleteApplication)
  231. m.Group("/organizations", func() {
  232. m.Get("", user.SettingsOrganizations)
  233. m.Post("/leave", user.SettingsLeaveOrganization)
  234. })
  235. m.Route("/delete", "GET,POST", user.SettingsDelete)
  236. }, reqSignIn, func(ctx *context.Context) {
  237. ctx.Data["PageIsUserSettings"] = true
  238. })
  239. m.Group("/user", func() {
  240. // r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
  241. m.Any("/activate", user.Activate)
  242. m.Any("/activate_email", user.ActivateEmail)
  243. m.Get("/email2user", user.Email2User)
  244. m.Get("/forget_password", user.ForgotPasswd)
  245. m.Post("/forget_password", user.ForgotPasswdPost)
  246. m.Get("/logout", user.SignOut)
  247. })
  248. // ***** END: User *****
  249. adminReq := context.Toggle(&context.ToggleOptions{SignInRequired: true, AdminRequired: true})
  250. // ***** START: Admin *****
  251. m.Group("/admin", func() {
  252. m.Get("", adminReq, admin.Dashboard)
  253. m.Get("/config", admin.Config)
  254. m.Post("/config/test_mail", admin.SendTestMail)
  255. m.Get("/monitor", admin.Monitor)
  256. m.Group("/users", func() {
  257. m.Get("", admin.Users)
  258. m.Combo("/new").Get(admin.NewUser).Post(bindIgnErr(auth.AdminCrateUserForm{}), admin.NewUserPost)
  259. m.Combo("/:userid").Get(admin.EditUser).Post(bindIgnErr(auth.AdminEditUserForm{}), admin.EditUserPost)
  260. m.Post("/:userid/delete", admin.DeleteUser)
  261. })
  262. m.Group("/orgs", func() {
  263. m.Get("", admin.Organizations)
  264. })
  265. m.Group("/repos", func() {
  266. m.Get("", admin.Repos)
  267. m.Post("/delete", admin.DeleteRepo)
  268. })
  269. m.Group("/auths", func() {
  270. m.Get("", admin.Authentications)
  271. m.Combo("/new").Get(admin.NewAuthSource).Post(bindIgnErr(auth.AuthenticationForm{}), admin.NewAuthSourcePost)
  272. m.Combo("/:authid").Get(admin.EditAuthSource).
  273. Post(bindIgnErr(auth.AuthenticationForm{}), admin.EditAuthSourcePost)
  274. m.Post("/:authid/delete", admin.DeleteAuthSource)
  275. })
  276. m.Group("/notices", func() {
  277. m.Get("", admin.Notices)
  278. m.Post("/delete", admin.DeleteNotices)
  279. m.Get("/empty", admin.EmptyNotices)
  280. })
  281. }, adminReq)
  282. // ***** END: Admin *****
  283. m.Group("", func() {
  284. m.Group("/:username", func() {
  285. m.Get("", user.Profile)
  286. m.Get("/followers", user.Followers)
  287. m.Get("/following", user.Following)
  288. m.Get("/stars", user.Stars)
  289. })
  290. m.Get("/attachments/:uuid", func(ctx *context.Context) {
  291. attach, err := models.GetAttachmentByUUID(ctx.Params(":uuid"))
  292. if err != nil {
  293. if models.IsErrAttachmentNotExist(err) {
  294. ctx.Error(404)
  295. } else {
  296. ctx.Handle(500, "GetAttachmentByUUID", err)
  297. }
  298. return
  299. }
  300. fr, err := os.Open(attach.LocalPath())
  301. if err != nil {
  302. ctx.Handle(500, "Open", err)
  303. return
  304. }
  305. defer fr.Close()
  306. ctx.Header().Set("Cache-Control", "public,max-age=86400")
  307. ctx.Header().Set("Content-Disposition", fmt.Sprintf(`inline; filename="%s"`, attach.Name))
  308. // Fix #312. Attachments with , in their name are not handled correctly by Google Chrome.
  309. // We must put the name in " manually.
  310. if err = repo.ServeData(ctx, "\""+attach.Name+"\"", fr); err != nil {
  311. ctx.Handle(500, "ServeData", err)
  312. return
  313. }
  314. })
  315. m.Post("/issues/attachments", repo.UploadIssueAttachment)
  316. }, ignSignIn)
  317. m.Group("/:username", func() {
  318. m.Get("/action/:action", user.Action)
  319. }, reqSignIn)
  320. if macaron.Env == macaron.DEV {
  321. m.Get("/template/*", dev.TemplatePreview)
  322. }
  323. reqRepoAdmin := context.RequireRepoAdmin()
  324. reqRepoWriter := context.RequireRepoWriter()
  325. // ***** START: Organization *****
  326. m.Group("/org", func() {
  327. m.Get("/create", org.Create)
  328. m.Post("/create", bindIgnErr(auth.CreateOrgForm{}), org.CreatePost)
  329. m.Group("/:org", func() {
  330. m.Get("/dashboard", user.Dashboard)
  331. m.Get("/^:type(issues|pulls)$", user.Issues)
  332. m.Get("/members", org.Members)
  333. m.Get("/members/action/:action", org.MembersAction)
  334. m.Get("/teams", org.Teams)
  335. }, context.OrgAssignment(true))
  336. m.Group("/:org", func() {
  337. m.Get("/teams/:team", org.TeamMembers)
  338. m.Get("/teams/:team/repositories", org.TeamRepositories)
  339. m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction)
  340. m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction)
  341. }, context.OrgAssignment(true, false, true))
  342. m.Group("/:org", func() {
  343. m.Get("/teams/new", org.NewTeam)
  344. m.Post("/teams/new", bindIgnErr(auth.CreateTeamForm{}), org.NewTeamPost)
  345. m.Get("/teams/:team/edit", org.EditTeam)
  346. m.Post("/teams/:team/edit", bindIgnErr(auth.CreateTeamForm{}), org.EditTeamPost)
  347. m.Post("/teams/:team/delete", org.DeleteTeam)
  348. m.Group("/settings", func() {
  349. m.Combo("").Get(org.Settings).
  350. Post(bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost)
  351. m.Post("/avatar", binding.MultipartForm(auth.AvatarForm{}), org.SettingsAvatar)
  352. m.Post("/avatar/delete", org.SettingsDeleteAvatar)
  353. m.Group("/hooks", func() {
  354. m.Get("", org.Webhooks)
  355. m.Post("/delete", org.DeleteWebhook)
  356. m.Get("/:type/new", repo.WebhooksNew)
  357. m.Post("/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
  358. m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
  359. m.Get("/:id", repo.WebHooksEdit)
  360. m.Post("/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
  361. m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
  362. })
  363. m.Route("/delete", "GET,POST", org.SettingsDelete)
  364. })
  365. m.Route("/invitations/new", "GET,POST", org.Invitation)
  366. }, context.OrgAssignment(true, true))
  367. }, reqSignIn)
  368. // ***** END: Organization *****
  369. // ***** START: Repository *****
  370. m.Group("/repo", func() {
  371. m.Get("/create", repo.Create)
  372. m.Post("/create", bindIgnErr(auth.CreateRepoForm{}), repo.CreatePost)
  373. m.Get("/migrate", repo.Migrate)
  374. m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), repo.MigratePost)
  375. m.Combo("/fork/:repoid").Get(repo.Fork).
  376. Post(bindIgnErr(auth.CreateRepoForm{}), repo.ForkPost)
  377. }, reqSignIn)
  378. m.Group("/:username/:reponame", func() {
  379. m.Group("/settings", func() {
  380. m.Combo("").Get(repo.Settings).
  381. Post(bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost)
  382. m.Group("/collaboration", func() {
  383. m.Combo("").Get(repo.Collaboration).Post(repo.CollaborationPost)
  384. m.Post("/access_mode", repo.ChangeCollaborationAccessMode)
  385. m.Post("/delete", repo.DeleteCollaboration)
  386. })
  387. m.Group("/hooks", func() {
  388. m.Get("", repo.Webhooks)
  389. m.Post("/delete", repo.DeleteWebhook)
  390. m.Get("/:type/new", repo.WebhooksNew)
  391. m.Post("/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
  392. m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
  393. m.Get("/:id", repo.WebHooksEdit)
  394. m.Post("/:id/test", repo.TestWebhook)
  395. m.Post("/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
  396. m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
  397. m.Group("/git", func() {
  398. m.Get("", repo.GitHooks)
  399. m.Combo("/:name").Get(repo.GitHooksEdit).
  400. Post(repo.GitHooksEditPost)
  401. }, context.GitHookService())
  402. })
  403. m.Group("/keys", func() {
  404. m.Combo("").Get(repo.DeployKeys).
  405. Post(bindIgnErr(auth.AddSSHKeyForm{}), repo.DeployKeysPost)
  406. m.Post("/delete", repo.DeleteDeployKey)
  407. })
  408. }, func(ctx *context.Context) {
  409. ctx.Data["PageIsSettings"] = true
  410. })
  411. }, reqSignIn, context.RepoAssignment(), reqRepoAdmin, context.RepoRef())
  412. m.Get("/:username/:reponame/action/:action", reqSignIn, context.RepoAssignment(), repo.Action)
  413. m.Group("/:username/:reponame", func() {
  414. // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest.
  415. // So they can apply their own enable/disable logic on routers.
  416. m.Group("/issues", func() {
  417. m.Combo("/new", repo.MustEnableIssues).Get(context.RepoRef(), repo.NewIssue).
  418. Post(bindIgnErr(auth.CreateIssueForm{}), repo.NewIssuePost)
  419. m.Group("/:index", func() {
  420. m.Post("/label", repo.UpdateIssueLabel)
  421. m.Post("/milestone", repo.UpdateIssueMilestone)
  422. m.Post("/assignee", repo.UpdateIssueAssignee)
  423. }, reqRepoWriter)
  424. m.Group("/:index", func() {
  425. m.Post("/title", repo.UpdateIssueTitle)
  426. m.Post("/content", repo.UpdateIssueContent)
  427. m.Combo("/comments").Post(bindIgnErr(auth.CreateCommentForm{}), repo.NewComment)
  428. })
  429. })
  430. m.Group("/comments/:id", func() {
  431. m.Post("", repo.UpdateCommentContent)
  432. m.Post("/delete", repo.DeleteComment)
  433. })
  434. m.Group("/labels", func() {
  435. m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel)
  436. m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel)
  437. m.Post("/delete", repo.DeleteLabel)
  438. m.Post("/initialize", bindIgnErr(auth.InitializeLabelsForm{}), repo.InitializeLabels)
  439. }, reqRepoWriter, context.RepoRef())
  440. m.Group("/milestones", func() {
  441. m.Combo("/new").Get(repo.NewMilestone).
  442. Post(bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
  443. m.Get("/:id/edit", repo.EditMilestone)
  444. m.Post("/:id/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.EditMilestonePost)
  445. m.Get("/:id/:action", repo.ChangeMilestonStatus)
  446. m.Post("/delete", repo.DeleteMilestone)
  447. }, reqRepoWriter, context.RepoRef())
  448. m.Group("/releases", func() {
  449. m.Get("/new", repo.NewRelease)
  450. m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost)
  451. m.Post("/delete", repo.DeleteRelease)
  452. }, reqRepoWriter, context.RepoRef())
  453. m.Group("/releases", func() {
  454. m.Get("/edit/*", repo.EditRelease)
  455. m.Post("/edit/*", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
  456. }, reqRepoWriter, func(ctx *context.Context) {
  457. var err error
  458. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(ctx.Repo.Repository.DefaultBranch)
  459. if err != nil {
  460. ctx.Handle(500, "GetBranchCommit", err)
  461. return
  462. }
  463. ctx.Repo.CommitsCount, err = ctx.Repo.Commit.CommitsCount()
  464. if err != nil {
  465. ctx.Handle(500, "CommitsCount", err)
  466. return
  467. }
  468. ctx.Data["CommitsCount"] = ctx.Repo.CommitsCount
  469. })
  470. m.Combo("/compare/*", repo.MustAllowPulls).Get(repo.CompareAndPullRequest).
  471. Post(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost)
  472. m.Group("", func() {
  473. m.Combo("/_edit/*").Get(repo.EditFile).
  474. Post(bindIgnErr(auth.EditRepoFileForm{}), repo.EditFilePost)
  475. m.Combo("/_new/*").Get(repo.NewFile).
  476. Post(bindIgnErr(auth.EditRepoFileForm{}), repo.NewFilePost)
  477. m.Post("/_preview/*", bindIgnErr(auth.EditPreviewDiffForm{}), repo.DiffPreviewPost)
  478. m.Combo("/_delete/*").Get(repo.DeleteFile).
  479. Post(bindIgnErr(auth.DeleteRepoFileForm{}), repo.DeleteFilePost)
  480. m.Group("", func() {
  481. m.Combo("/_upload/*").Get(repo.UploadFile).
  482. Post(bindIgnErr(auth.UploadRepoFileForm{}), repo.UploadFilePost)
  483. m.Post("/upload-file", repo.UploadFileToServer)
  484. m.Post("/upload-remove", bindIgnErr(auth.RemoveUploadFileForm{}), repo.RemoveUploadFileFromServer)
  485. }, func(ctx *context.Context) {
  486. if !setting.Repository.Upload.Enabled {
  487. ctx.Handle(404, "", nil)
  488. return
  489. }
  490. })
  491. }, reqRepoWriter, context.RepoRef(), func(ctx *context.Context) {
  492. if !ctx.Repo.Repository.CanEnableEditor() || ctx.Repo.IsViewCommit {
  493. ctx.Handle(404, "", nil)
  494. return
  495. }
  496. })
  497. }, reqSignIn, context.RepoAssignment(), repo.MustBeNotBare)
  498. m.Group("/:username/:reponame", func() {
  499. m.Group("", func() {
  500. m.Get("/releases", repo.Releases)
  501. m.Get("/^:type(issues|pulls)$", repo.RetrieveLabels, repo.Issues)
  502. m.Get("/^:type(issues|pulls)$/:index", repo.ViewIssue)
  503. m.Get("/labels/", repo.RetrieveLabels, repo.Labels)
  504. m.Get("/milestones", repo.Milestones)
  505. }, context.RepoRef())
  506. // m.Get("/branches", repo.Branches)
  507. m.Post("/branches/:name/delete", reqSignIn, reqRepoWriter, repo.DeleteBranchPost)
  508. m.Group("/wiki", func() {
  509. m.Get("/?:page", repo.Wiki)
  510. m.Get("/_pages", repo.WikiPages)
  511. m.Group("", func() {
  512. m.Combo("/_new").Get(repo.NewWiki).
  513. Post(bindIgnErr(auth.NewWikiForm{}), repo.NewWikiPost)
  514. m.Combo("/:page/_edit").Get(repo.EditWiki).
  515. Post(bindIgnErr(auth.NewWikiForm{}), repo.EditWikiPost)
  516. m.Post("/:page/delete", repo.DeleteWikiPagePost)
  517. }, reqSignIn, reqRepoWriter)
  518. }, repo.MustEnableWiki, context.RepoRef())
  519. m.Get("/archive/*", repo.Download)
  520. m.Group("/pulls/:index", func() {
  521. m.Get("/commits", context.RepoRef(), repo.ViewPullCommits)
  522. m.Get("/files", context.RepoRef(), repo.ViewPullFiles)
  523. m.Post("/merge", reqRepoWriter, repo.MergePullRequest)
  524. }, repo.MustAllowPulls)
  525. m.Group("", func() {
  526. m.Get("/src/*", repo.Home)
  527. m.Get("/raw/*", repo.SingleDownload)
  528. m.Get("/commits/*", repo.RefCommits)
  529. m.Get("/commit/:sha([a-f0-9]{7,40})$", repo.Diff)
  530. m.Get("/forks", repo.Forks)
  531. }, context.RepoRef())
  532. m.Get("/commit/:sha([a-f0-9]{7,40})\\.:ext(patch|diff)", repo.RawDiff)
  533. m.Get("/compare/:before([a-z0-9]{40})\\.\\.\\.:after([a-z0-9]{40})", repo.CompareDiff)
  534. }, ignSignIn, context.RepoAssignment(), repo.MustBeNotBare)
  535. m.Group("/:username/:reponame", func() {
  536. m.Get("/stars", repo.Stars)
  537. m.Get("/watchers", repo.Watchers)
  538. }, ignSignIn, context.RepoAssignment(), context.RepoRef())
  539. m.Group("/:username", func() {
  540. m.Group("/:reponame", func() {
  541. m.Get("", repo.Home)
  542. m.Get("\\.git$", repo.Home)
  543. }, ignSignIn, context.RepoAssignment(true), context.RepoRef())
  544. m.Group("/:reponame", func() {
  545. m.Any("/*", ignSignInAndCsrf, repo.HTTP)
  546. m.Head("/tasks/trigger", repo.TriggerTask)
  547. })
  548. })
  549. // ***** END: Repository *****
  550. m.Group("/api", func() {
  551. apiv1.RegisterRoutes(m)
  552. }, ignSignIn)
  553. // robots.txt
  554. m.Get("/robots.txt", func(ctx *context.Context) {
  555. if setting.HasRobotsTxt {
  556. ctx.ServeFileContent(path.Join(setting.CustomPath, "robots.txt"))
  557. } else {
  558. ctx.Error(404)
  559. }
  560. })
  561. // Not found handler.
  562. m.NotFound(routers.NotFound)
  563. // Flag for port number in case first time run conflict.
  564. if ctx.IsSet("port") {
  565. setting.AppUrl = strings.Replace(setting.AppUrl, setting.HTTPPort, ctx.String("port"), 1)
  566. setting.HTTPPort = ctx.String("port")
  567. }
  568. var listenAddr string
  569. if setting.Protocol == setting.SCHEME_UNIX_SOCKET {
  570. listenAddr = fmt.Sprintf("%s", setting.HTTPAddr)
  571. } else {
  572. listenAddr = fmt.Sprintf("%s:%s", setting.HTTPAddr, setting.HTTPPort)
  573. }
  574. log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubUrl)
  575. var err error
  576. switch setting.Protocol {
  577. case setting.SCHEME_HTTP:
  578. err = http.ListenAndServe(listenAddr, m)
  579. case setting.SCHEME_HTTPS:
  580. server := &http.Server{Addr: listenAddr, TLSConfig: &tls.Config{MinVersion: tls.VersionTLS10}, Handler: m}
  581. err = server.ListenAndServeTLS(setting.CertFile, setting.KeyFile)
  582. case setting.SCHEME_FCGI:
  583. err = fcgi.Serve(nil, m)
  584. case setting.SCHEME_UNIX_SOCKET:
  585. os.Remove(listenAddr)
  586. var listener *net.UnixListener
  587. listener, err = net.ListenUnix("unix", &net.UnixAddr{listenAddr, "unix"})
  588. if err != nil {
  589. break // Handle error after switch
  590. }
  591. // FIXME: add proper implementation of signal capture on all protocols
  592. // execute this on SIGTERM or SIGINT: listener.Close()
  593. if err = os.Chmod(listenAddr, os.FileMode(setting.UnixSocketPermission)); err != nil {
  594. log.Fatal(4, "Failed to set permission of unix socket: %v", err)
  595. }
  596. err = http.Serve(listener, m)
  597. default:
  598. log.Fatal(4, "Invalid protocol: %s", setting.Protocol)
  599. }
  600. if err != nil {
  601. log.Fatal(4, "Fail to start server: %v", err)
  602. }
  603. return nil
  604. }