web.go 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678
  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.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.Get("/organizations", user.SettingsOrganizations)
  232. m.Route("/delete", "GET,POST", user.SettingsDelete)
  233. }, reqSignIn, func(ctx *context.Context) {
  234. ctx.Data["PageIsUserSettings"] = true
  235. })
  236. m.Group("/user", func() {
  237. // r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
  238. m.Any("/activate", user.Activate)
  239. m.Any("/activate_email", user.ActivateEmail)
  240. m.Get("/email2user", user.Email2User)
  241. m.Get("/forget_password", user.ForgotPasswd)
  242. m.Post("/forget_password", user.ForgotPasswdPost)
  243. m.Get("/logout", user.SignOut)
  244. })
  245. // ***** END: User *****
  246. adminReq := context.Toggle(&context.ToggleOptions{SignInRequired: true, AdminRequired: true})
  247. // ***** START: Admin *****
  248. m.Group("/admin", func() {
  249. m.Get("", adminReq, admin.Dashboard)
  250. m.Get("/config", admin.Config)
  251. m.Post("/config/test_mail", admin.SendTestMail)
  252. m.Get("/monitor", admin.Monitor)
  253. m.Group("/users", func() {
  254. m.Get("", admin.Users)
  255. m.Combo("/new").Get(admin.NewUser).Post(bindIgnErr(auth.AdminCrateUserForm{}), admin.NewUserPost)
  256. m.Combo("/:userid").Get(admin.EditUser).Post(bindIgnErr(auth.AdminEditUserForm{}), admin.EditUserPost)
  257. m.Post("/:userid/delete", admin.DeleteUser)
  258. })
  259. m.Group("/orgs", func() {
  260. m.Get("", admin.Organizations)
  261. })
  262. m.Group("/repos", func() {
  263. m.Get("", admin.Repos)
  264. m.Post("/delete", admin.DeleteRepo)
  265. })
  266. m.Group("/auths", func() {
  267. m.Get("", admin.Authentications)
  268. m.Combo("/new").Get(admin.NewAuthSource).Post(bindIgnErr(auth.AuthenticationForm{}), admin.NewAuthSourcePost)
  269. m.Combo("/:authid").Get(admin.EditAuthSource).
  270. Post(bindIgnErr(auth.AuthenticationForm{}), admin.EditAuthSourcePost)
  271. m.Post("/:authid/delete", admin.DeleteAuthSource)
  272. })
  273. m.Group("/notices", func() {
  274. m.Get("", admin.Notices)
  275. m.Post("/delete", admin.DeleteNotices)
  276. m.Get("/empty", admin.EmptyNotices)
  277. })
  278. }, adminReq)
  279. // ***** END: Admin *****
  280. m.Group("", func() {
  281. m.Group("/:username", func() {
  282. m.Get("", user.Profile)
  283. m.Get("/followers", user.Followers)
  284. m.Get("/following", user.Following)
  285. m.Get("/stars", user.Stars)
  286. })
  287. m.Get("/attachments/:uuid", func(ctx *context.Context) {
  288. attach, err := models.GetAttachmentByUUID(ctx.Params(":uuid"))
  289. if err != nil {
  290. if models.IsErrAttachmentNotExist(err) {
  291. ctx.Error(404)
  292. } else {
  293. ctx.Handle(500, "GetAttachmentByUUID", err)
  294. }
  295. return
  296. }
  297. fr, err := os.Open(attach.LocalPath())
  298. if err != nil {
  299. ctx.Handle(500, "Open", err)
  300. return
  301. }
  302. defer fr.Close()
  303. ctx.Header().Set("Cache-Control", "public,max-age=86400")
  304. ctx.Header().Set("Content-Disposition", fmt.Sprintf(`inline; filename="%s"`, attach.Name))
  305. // Fix #312. Attachments with , in their name are not handled correctly by Google Chrome.
  306. // We must put the name in " manually.
  307. if err = repo.ServeData(ctx, "\""+attach.Name+"\"", fr); err != nil {
  308. ctx.Handle(500, "ServeData", err)
  309. return
  310. }
  311. })
  312. m.Post("/issues/attachments", repo.UploadIssueAttachment)
  313. }, ignSignIn)
  314. m.Group("/:username", func() {
  315. m.Get("/action/:action", user.Action)
  316. }, reqSignIn)
  317. if macaron.Env == macaron.DEV {
  318. m.Get("/template/*", dev.TemplatePreview)
  319. }
  320. reqRepoAdmin := context.RequireRepoAdmin()
  321. reqRepoWriter := context.RequireRepoWriter()
  322. // ***** START: Organization *****
  323. m.Group("/org", func() {
  324. m.Get("/create", org.Create)
  325. m.Post("/create", bindIgnErr(auth.CreateOrgForm{}), org.CreatePost)
  326. m.Group("/:org", func() {
  327. m.Get("/dashboard", user.Dashboard)
  328. m.Get("/^:type(issues|pulls)$", user.Issues)
  329. m.Get("/members", org.Members)
  330. m.Get("/members/action/:action", org.MembersAction)
  331. m.Get("/teams", org.Teams)
  332. }, context.OrgAssignment(true))
  333. m.Group("/:org", func() {
  334. m.Get("/teams/:team", org.TeamMembers)
  335. m.Get("/teams/:team/repositories", org.TeamRepositories)
  336. m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction)
  337. m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction)
  338. }, context.OrgAssignment(true, false, true))
  339. m.Group("/:org", func() {
  340. m.Get("/teams/new", org.NewTeam)
  341. m.Post("/teams/new", bindIgnErr(auth.CreateTeamForm{}), org.NewTeamPost)
  342. m.Get("/teams/:team/edit", org.EditTeam)
  343. m.Post("/teams/:team/edit", bindIgnErr(auth.CreateTeamForm{}), org.EditTeamPost)
  344. m.Post("/teams/:team/delete", org.DeleteTeam)
  345. m.Group("/settings", func() {
  346. m.Combo("").Get(org.Settings).
  347. Post(bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost)
  348. m.Post("/avatar", binding.MultipartForm(auth.AvatarForm{}), org.SettingsAvatar)
  349. m.Post("/avatar/delete", org.SettingsDeleteAvatar)
  350. m.Group("/hooks", func() {
  351. m.Get("", org.Webhooks)
  352. m.Post("/delete", org.DeleteWebhook)
  353. m.Get("/:type/new", repo.WebhooksNew)
  354. m.Post("/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
  355. m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
  356. m.Get("/:id", repo.WebHooksEdit)
  357. m.Post("/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
  358. m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
  359. })
  360. m.Route("/delete", "GET,POST", org.SettingsDelete)
  361. })
  362. m.Route("/invitations/new", "GET,POST", org.Invitation)
  363. }, context.OrgAssignment(true, true))
  364. }, reqSignIn)
  365. // ***** END: Organization *****
  366. // ***** START: Repository *****
  367. m.Group("/repo", func() {
  368. m.Get("/create", repo.Create)
  369. m.Post("/create", bindIgnErr(auth.CreateRepoForm{}), repo.CreatePost)
  370. m.Get("/migrate", repo.Migrate)
  371. m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), repo.MigratePost)
  372. m.Combo("/fork/:repoid").Get(repo.Fork).
  373. Post(bindIgnErr(auth.CreateRepoForm{}), repo.ForkPost)
  374. }, reqSignIn)
  375. m.Group("/:username/:reponame", func() {
  376. m.Group("/settings", func() {
  377. m.Combo("").Get(repo.Settings).
  378. Post(bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost)
  379. m.Group("/collaboration", func() {
  380. m.Combo("").Get(repo.Collaboration).Post(repo.CollaborationPost)
  381. m.Post("/access_mode", repo.ChangeCollaborationAccessMode)
  382. m.Post("/delete", repo.DeleteCollaboration)
  383. })
  384. m.Group("/hooks", func() {
  385. m.Get("", repo.Webhooks)
  386. m.Post("/delete", repo.DeleteWebhook)
  387. m.Get("/:type/new", repo.WebhooksNew)
  388. m.Post("/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
  389. m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
  390. m.Get("/:id", repo.WebHooksEdit)
  391. m.Post("/:id/test", repo.TestWebhook)
  392. m.Post("/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
  393. m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
  394. m.Group("/git", func() {
  395. m.Get("", repo.GitHooks)
  396. m.Combo("/:name").Get(repo.GitHooksEdit).
  397. Post(repo.GitHooksEditPost)
  398. }, context.GitHookService())
  399. })
  400. m.Group("/keys", func() {
  401. m.Combo("").Get(repo.DeployKeys).
  402. Post(bindIgnErr(auth.AddSSHKeyForm{}), repo.DeployKeysPost)
  403. m.Post("/delete", repo.DeleteDeployKey)
  404. })
  405. }, func(ctx *context.Context) {
  406. ctx.Data["PageIsSettings"] = true
  407. })
  408. }, reqSignIn, context.RepoAssignment(), reqRepoAdmin, context.RepoRef())
  409. m.Get("/:username/:reponame/action/:action", reqSignIn, context.RepoAssignment(), repo.Action)
  410. m.Group("/:username/:reponame", func() {
  411. // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest.
  412. // So they can apply their own enable/disable logic on routers.
  413. m.Group("/issues", func() {
  414. m.Combo("/new", repo.MustEnableIssues).Get(context.RepoRef(), repo.NewIssue).
  415. Post(bindIgnErr(auth.CreateIssueForm{}), repo.NewIssuePost)
  416. m.Group("/:index", func() {
  417. m.Post("/label", repo.UpdateIssueLabel)
  418. m.Post("/milestone", repo.UpdateIssueMilestone)
  419. m.Post("/assignee", repo.UpdateIssueAssignee)
  420. }, reqRepoWriter)
  421. m.Group("/:index", func() {
  422. m.Post("/title", repo.UpdateIssueTitle)
  423. m.Post("/content", repo.UpdateIssueContent)
  424. m.Combo("/comments").Post(bindIgnErr(auth.CreateCommentForm{}), repo.NewComment)
  425. })
  426. })
  427. m.Group("/comments/:id", func() {
  428. m.Post("", repo.UpdateCommentContent)
  429. m.Post("/delete", repo.DeleteComment)
  430. })
  431. m.Group("/labels", func() {
  432. m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel)
  433. m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel)
  434. m.Post("/delete", repo.DeleteLabel)
  435. m.Post("/initialize", bindIgnErr(auth.InitializeLabelsForm{}), repo.InitializeLabels)
  436. }, reqRepoWriter, context.RepoRef())
  437. m.Group("/milestones", func() {
  438. m.Combo("/new").Get(repo.NewMilestone).
  439. Post(bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
  440. m.Get("/:id/edit", repo.EditMilestone)
  441. m.Post("/:id/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.EditMilestonePost)
  442. m.Get("/:id/:action", repo.ChangeMilestonStatus)
  443. m.Post("/delete", repo.DeleteMilestone)
  444. }, reqRepoWriter, context.RepoRef())
  445. m.Group("/releases", func() {
  446. m.Get("/new", repo.NewRelease)
  447. m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost)
  448. m.Post("/delete", repo.DeleteRelease)
  449. }, reqRepoWriter, context.RepoRef())
  450. m.Group("/releases", func() {
  451. m.Get("/edit/*", repo.EditRelease)
  452. m.Post("/edit/*", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
  453. }, reqRepoWriter, func(ctx *context.Context) {
  454. var err error
  455. ctx.Repo.Commit, err = ctx.Repo.GitRepo.GetBranchCommit(ctx.Repo.Repository.DefaultBranch)
  456. if err != nil {
  457. ctx.Handle(500, "GetBranchCommit", err)
  458. return
  459. }
  460. ctx.Repo.CommitsCount, err = ctx.Repo.Commit.CommitsCount()
  461. if err != nil {
  462. ctx.Handle(500, "CommitsCount", err)
  463. return
  464. }
  465. ctx.Data["CommitsCount"] = ctx.Repo.CommitsCount
  466. })
  467. m.Combo("/compare/*", repo.MustAllowPulls).Get(repo.CompareAndPullRequest).
  468. Post(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost)
  469. m.Group("", func() {
  470. m.Combo("/_edit/*").Get(repo.EditFile).
  471. Post(bindIgnErr(auth.EditRepoFileForm{}), repo.EditFilePost)
  472. m.Combo("/_new/*").Get(repo.NewFile).
  473. Post(bindIgnErr(auth.EditRepoFileForm{}), repo.NewFilePost)
  474. m.Post("/_preview/*", bindIgnErr(auth.EditPreviewDiffForm{}), repo.DiffPreviewPost)
  475. m.Combo("/_delete/*").Get(repo.DeleteFile).
  476. Post(bindIgnErr(auth.DeleteRepoFileForm{}), repo.DeleteFilePost)
  477. m.Group("", func() {
  478. m.Combo("/_upload/*").Get(repo.UploadFile).
  479. Post(bindIgnErr(auth.UploadRepoFileForm{}), repo.UploadFilePost)
  480. m.Post("/upload-file", repo.UploadFileToServer)
  481. m.Post("/upload-remove", bindIgnErr(auth.RemoveUploadFileForm{}), repo.RemoveUploadFileFromServer)
  482. }, func(ctx *context.Context) {
  483. if !setting.Repository.Upload.Enabled {
  484. ctx.Handle(404, "", nil)
  485. return
  486. }
  487. })
  488. }, reqRepoWriter, context.RepoRef(), func(ctx *context.Context) {
  489. if !ctx.Repo.Repository.CanEnableEditor() || ctx.Repo.IsViewCommit {
  490. ctx.Handle(404, "", nil)
  491. return
  492. }
  493. })
  494. }, reqSignIn, context.RepoAssignment(), repo.MustBeNotBare)
  495. m.Group("/:username/:reponame", func() {
  496. m.Group("", func() {
  497. m.Get("/releases", repo.Releases)
  498. m.Get("/^:type(issues|pulls)$", repo.RetrieveLabels, repo.Issues)
  499. m.Get("/^:type(issues|pulls)$/:index", repo.ViewIssue)
  500. m.Get("/labels/", repo.RetrieveLabels, repo.Labels)
  501. m.Get("/milestones", repo.Milestones)
  502. }, context.RepoRef())
  503. // m.Get("/branches", repo.Branches)
  504. m.Post("/branches/:name/delete", reqSignIn, reqRepoWriter, repo.DeleteBranchPost)
  505. m.Group("/wiki", func() {
  506. m.Get("/?:page", repo.Wiki)
  507. m.Get("/_pages", repo.WikiPages)
  508. m.Group("", func() {
  509. m.Combo("/_new").Get(repo.NewWiki).
  510. Post(bindIgnErr(auth.NewWikiForm{}), repo.NewWikiPost)
  511. m.Combo("/:page/_edit").Get(repo.EditWiki).
  512. Post(bindIgnErr(auth.NewWikiForm{}), repo.EditWikiPost)
  513. m.Post("/:page/delete", repo.DeleteWikiPagePost)
  514. }, reqSignIn, reqRepoWriter)
  515. }, repo.MustEnableWiki, context.RepoRef())
  516. m.Get("/archive/*", repo.Download)
  517. m.Group("/pulls/:index", func() {
  518. m.Get("/commits", context.RepoRef(), repo.ViewPullCommits)
  519. m.Get("/files", context.RepoRef(), repo.ViewPullFiles)
  520. m.Post("/merge", reqRepoWriter, repo.MergePullRequest)
  521. }, repo.MustAllowPulls)
  522. m.Group("", func() {
  523. m.Get("/src/*", repo.Home)
  524. m.Get("/raw/*", repo.SingleDownload)
  525. m.Get("/commits/*", repo.RefCommits)
  526. m.Get("/commit/:sha([a-f0-9]{7,40})$", repo.Diff)
  527. m.Get("/forks", repo.Forks)
  528. }, context.RepoRef())
  529. m.Get("/commit/:sha([a-f0-9]{7,40})\\.:ext(patch|diff)", repo.RawDiff)
  530. m.Get("/compare/:before([a-z0-9]{40})\\.\\.\\.:after([a-z0-9]{40})", repo.CompareDiff)
  531. }, ignSignIn, context.RepoAssignment(), repo.MustBeNotBare)
  532. m.Group("/:username/:reponame", func() {
  533. m.Get("/stars", repo.Stars)
  534. m.Get("/watchers", repo.Watchers)
  535. }, ignSignIn, context.RepoAssignment(), context.RepoRef())
  536. m.Group("/:username", func() {
  537. m.Group("/:reponame", func() {
  538. m.Get("", repo.Home)
  539. m.Get("\\.git$", repo.Home)
  540. }, ignSignIn, context.RepoAssignment(true), context.RepoRef())
  541. m.Group("/:reponame", func() {
  542. m.Any("/*", ignSignInAndCsrf, repo.HTTP)
  543. m.Head("/tasks/trigger", repo.TriggerTask)
  544. })
  545. })
  546. // ***** END: Repository *****
  547. m.Group("/api", func() {
  548. apiv1.RegisterRoutes(m)
  549. }, ignSignIn)
  550. // robots.txt
  551. m.Get("/robots.txt", func(ctx *context.Context) {
  552. if setting.HasRobotsTxt {
  553. ctx.ServeFileContent(path.Join(setting.CustomPath, "robots.txt"))
  554. } else {
  555. ctx.Error(404)
  556. }
  557. })
  558. // Not found handler.
  559. m.NotFound(routers.NotFound)
  560. // Flag for port number in case first time run conflict.
  561. if ctx.IsSet("port") {
  562. setting.AppUrl = strings.Replace(setting.AppUrl, setting.HTTPPort, ctx.String("port"), 1)
  563. setting.HTTPPort = ctx.String("port")
  564. }
  565. var listenAddr string
  566. if setting.Protocol == setting.UNIX_SOCKET {
  567. listenAddr = fmt.Sprintf("%s", setting.HTTPAddr)
  568. } else {
  569. listenAddr = fmt.Sprintf("%s:%s", setting.HTTPAddr, setting.HTTPPort)
  570. }
  571. log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubUrl)
  572. var err error
  573. switch setting.Protocol {
  574. case setting.HTTP:
  575. err = http.ListenAndServe(listenAddr, m)
  576. case setting.HTTPS:
  577. server := &http.Server{Addr: listenAddr, TLSConfig: &tls.Config{MinVersion: tls.VersionTLS10}, Handler: m}
  578. err = server.ListenAndServeTLS(setting.CertFile, setting.KeyFile)
  579. case setting.FCGI:
  580. err = fcgi.Serve(nil, m)
  581. case setting.UNIX_SOCKET:
  582. os.Remove(listenAddr)
  583. var listener *net.UnixListener
  584. listener, err = net.ListenUnix("unix", &net.UnixAddr{listenAddr, "unix"})
  585. if err != nil {
  586. break // Handle error after switch
  587. }
  588. // FIXME: add proper implementation of signal capture on all protocols
  589. // execute this on SIGTERM or SIGINT: listener.Close()
  590. if err = os.Chmod(listenAddr, os.FileMode(setting.UnixSocketPermission)); err != nil {
  591. log.Fatal(4, "Failed to set permission of unix socket: %v", err)
  592. }
  593. err = http.Serve(listener, m)
  594. default:
  595. log.Fatal(4, "Invalid protocol: %s", setting.Protocol)
  596. }
  597. if err != nil {
  598. log.Fatal(4, "Fail to start server: %v", err)
  599. }
  600. return nil
  601. }