web.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560
  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. gotmpl "html/template"
  9. "io/ioutil"
  10. "net/http"
  11. "net/http/fcgi"
  12. "os"
  13. "path"
  14. "strings"
  15. "github.com/codegangsta/cli"
  16. "github.com/go-macaron/binding"
  17. "github.com/go-macaron/cache"
  18. "github.com/go-macaron/captcha"
  19. "github.com/go-macaron/csrf"
  20. "github.com/go-macaron/gzip"
  21. "github.com/go-macaron/i18n"
  22. "github.com/go-macaron/session"
  23. "github.com/go-macaron/toolbox"
  24. "github.com/go-xorm/xorm"
  25. "github.com/mcuadros/go-version"
  26. "gopkg.in/ini.v1"
  27. "gopkg.in/macaron.v1"
  28. "github.com/gogits/gogs/models"
  29. "github.com/gogits/gogs/modules/auth"
  30. "github.com/gogits/gogs/modules/avatar"
  31. "github.com/gogits/gogs/modules/bindata"
  32. "github.com/gogits/gogs/modules/log"
  33. "github.com/gogits/gogs/modules/middleware"
  34. "github.com/gogits/gogs/modules/setting"
  35. "github.com/gogits/gogs/modules/template"
  36. "github.com/gogits/gogs/routers"
  37. "github.com/gogits/gogs/routers/admin"
  38. apiv1 "github.com/gogits/gogs/routers/api/v1"
  39. "github.com/gogits/gogs/routers/dev"
  40. "github.com/gogits/gogs/routers/org"
  41. "github.com/gogits/gogs/routers/repo"
  42. "github.com/gogits/gogs/routers/user"
  43. )
  44. var CmdWeb = cli.Command{
  45. Name: "web",
  46. Usage: "Start Gogs web server",
  47. Description: `Gogs web server is the only thing you need to run,
  48. and it takes care of all the other things for you`,
  49. Action: runWeb,
  50. Flags: []cli.Flag{
  51. stringFlag("port, p", "3000", "Temporary port number to prevent conflict"),
  52. stringFlag("config, c", "custom/conf/app.ini", "Custom configuration file path"),
  53. },
  54. }
  55. type VerChecker struct {
  56. ImportPath string
  57. Version func() string
  58. Expected string
  59. }
  60. // checkVersion checks if binary matches the version of templates files.
  61. func checkVersion() {
  62. // Templates.
  63. data, err := ioutil.ReadFile(setting.StaticRootPath + "/templates/.VERSION")
  64. if err != nil {
  65. log.Fatal(4, "Fail to read 'templates/.VERSION': %v", err)
  66. }
  67. if string(data) != setting.AppVer {
  68. log.Fatal(4, "Binary and template file version does not match, did you forget to recompile?")
  69. }
  70. // Check dependency version.
  71. checkers := []VerChecker{
  72. {"github.com/go-xorm/xorm", func() string { return xorm.Version }, "0.4.4.1029"},
  73. {"github.com/Unknwon/macaron", macaron.Version, "0.5.4"},
  74. {"github.com/go-macaron/binding", binding.Version, "0.1.0"},
  75. {"github.com/go-macaron/cache", cache.Version, "0.1.2"},
  76. {"github.com/go-macaron/csrf", csrf.Version, "0.0.3"},
  77. {"github.com/go-macaron/i18n", i18n.Version, "0.2.0"},
  78. {"github.com/go-macaron/session", session.Version, "0.1.6"},
  79. {"github.com/go-macaron/toolbox", toolbox.Version, "0.1.0"},
  80. {"gopkg.in/ini.v1", ini.Version, "1.3.4"},
  81. }
  82. for _, c := range checkers {
  83. if !version.Compare(c.Version(), c.Expected, ">=") {
  84. log.Fatal(4, "Package '%s' version is too old(%s -> %s), did you forget to update?", c.ImportPath, c.Version(), c.Expected)
  85. }
  86. }
  87. }
  88. // newMacaron initializes Macaron instance.
  89. func newMacaron() *macaron.Macaron {
  90. m := macaron.New()
  91. if !setting.DisableRouterLog {
  92. m.Use(macaron.Logger())
  93. }
  94. m.Use(macaron.Recovery())
  95. if setting.EnableGzip {
  96. m.Use(gzip.Gziper())
  97. }
  98. if setting.Protocol == setting.FCGI {
  99. m.SetURLPrefix(setting.AppSubUrl)
  100. }
  101. m.Use(macaron.Static(
  102. path.Join(setting.StaticRootPath, "public"),
  103. macaron.StaticOptions{
  104. SkipLogging: setting.DisableRouterLog,
  105. },
  106. ))
  107. m.Use(macaron.Static(
  108. setting.AvatarUploadPath,
  109. macaron.StaticOptions{
  110. Prefix: "avatars",
  111. SkipLogging: setting.DisableRouterLog,
  112. },
  113. ))
  114. m.Use(macaron.Renderer(macaron.RenderOptions{
  115. Directory: path.Join(setting.StaticRootPath, "templates"),
  116. Funcs: []gotmpl.FuncMap{template.Funcs},
  117. IndentJSON: macaron.Env != macaron.PROD,
  118. }))
  119. localeNames, err := bindata.AssetDir("conf/locale")
  120. if err != nil {
  121. log.Fatal(4, "Fail to list locale files: %v", err)
  122. }
  123. localFiles := make(map[string][]byte)
  124. for _, name := range localeNames {
  125. localFiles[name] = bindata.MustAsset("conf/locale/" + name)
  126. }
  127. m.Use(i18n.I18n(i18n.Options{
  128. SubURL: setting.AppSubUrl,
  129. Files: localFiles,
  130. CustomDirectory: path.Join(setting.CustomPath, "conf/locale"),
  131. Langs: setting.Langs,
  132. Names: setting.Names,
  133. DefaultLang: "en-US",
  134. Redirect: true,
  135. }))
  136. m.Use(cache.Cacher(cache.Options{
  137. Adapter: setting.CacheAdapter,
  138. AdapterConfig: setting.CacheConn,
  139. Interval: setting.CacheInternal,
  140. }))
  141. m.Use(captcha.Captchaer(captcha.Options{
  142. SubURL: setting.AppSubUrl,
  143. }))
  144. m.Use(session.Sessioner(setting.SessionConfig))
  145. m.Use(csrf.Csrfer(csrf.Options{
  146. Secret: setting.SecretKey,
  147. SetCookie: true,
  148. Header: "X-Csrf-Token",
  149. CookiePath: setting.AppSubUrl,
  150. }))
  151. m.Use(toolbox.Toolboxer(m, toolbox.Options{
  152. HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{
  153. &toolbox.HealthCheckFuncDesc{
  154. Desc: "Database connection",
  155. Func: models.Ping,
  156. },
  157. },
  158. }))
  159. m.Use(middleware.Contexter())
  160. return m
  161. }
  162. func runWeb(ctx *cli.Context) {
  163. if ctx.IsSet("config") {
  164. setting.CustomConf = ctx.String("config")
  165. }
  166. routers.GlobalInit()
  167. checkVersion()
  168. m := newMacaron()
  169. reqSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true})
  170. ignSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: setting.Service.RequireSignInView})
  171. ignSignInAndCsrf := middleware.Toggle(&middleware.ToggleOptions{DisableCsrf: true})
  172. reqSignOut := middleware.Toggle(&middleware.ToggleOptions{SignOutRequire: true})
  173. bindIgnErr := binding.BindIgnErr
  174. // Routers.
  175. m.Get("/", ignSignIn, routers.Home)
  176. m.Get("/explore", ignSignIn, routers.Explore)
  177. m.Combo("/install", routers.InstallInit).Get(routers.Install).
  178. Post(bindIgnErr(auth.InstallForm{}), routers.InstallPost)
  179. m.Get("/^:type(issues|pulls)$", reqSignIn, user.Issues)
  180. // ***** START: API *****
  181. m.Group("/api", func() {
  182. apiv1.RegisterRoutes(m)
  183. }, ignSignIn)
  184. // ***** END: API *****
  185. // ***** START: User *****
  186. m.Group("/user", func() {
  187. m.Get("/login", user.SignIn)
  188. m.Post("/login", bindIgnErr(auth.SignInForm{}), user.SignInPost)
  189. m.Get("/sign_up", user.SignUp)
  190. m.Post("/sign_up", bindIgnErr(auth.RegisterForm{}), user.SignUpPost)
  191. m.Get("/reset_password", user.ResetPasswd)
  192. m.Post("/reset_password", user.ResetPasswdPost)
  193. }, reqSignOut)
  194. m.Group("/user/settings", func() {
  195. m.Get("", user.Settings)
  196. m.Post("", bindIgnErr(auth.UpdateProfileForm{}), user.SettingsPost)
  197. m.Post("/avatar", binding.MultipartForm(auth.UploadAvatarForm{}), user.SettingsAvatar)
  198. m.Combo("/email").Get(user.SettingsEmails).
  199. Post(bindIgnErr(auth.AddEmailForm{}), user.SettingsEmailPost)
  200. m.Post("/email/delete", user.DeleteEmail)
  201. m.Get("/password", user.SettingsPassword)
  202. m.Post("/password", bindIgnErr(auth.ChangePasswordForm{}), user.SettingsPasswordPost)
  203. m.Combo("/ssh").Get(user.SettingsSSHKeys).
  204. Post(bindIgnErr(auth.AddSSHKeyForm{}), user.SettingsSSHKeysPost)
  205. m.Post("/ssh/delete", user.DeleteSSHKey)
  206. m.Combo("/applications").Get(user.SettingsApplications).
  207. Post(bindIgnErr(auth.NewAccessTokenForm{}), user.SettingsApplicationsPost)
  208. m.Post("/applications/delete", user.SettingsDeleteApplication)
  209. m.Route("/delete", "GET,POST", user.SettingsDelete)
  210. }, reqSignIn, func(ctx *middleware.Context) {
  211. ctx.Data["PageIsUserSettings"] = true
  212. })
  213. m.Group("/user", func() {
  214. // r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
  215. m.Any("/activate", user.Activate)
  216. m.Any("/activate_email", user.ActivateEmail)
  217. m.Get("/email2user", user.Email2User)
  218. m.Get("/forget_password", user.ForgotPasswd)
  219. m.Post("/forget_password", user.ForgotPasswdPost)
  220. m.Get("/logout", user.SignOut)
  221. })
  222. // ***** END: User *****
  223. // Gravatar service.
  224. avt := avatar.CacheServer("public/img/avatar/", "public/img/avatar_default.jpg")
  225. os.MkdirAll("public/img/avatar/", os.ModePerm)
  226. m.Get("/avatar/:hash", avt.ServeHTTP)
  227. adminReq := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true, AdminRequire: true})
  228. // ***** START: Admin *****
  229. m.Group("/admin", func() {
  230. m.Get("", adminReq, admin.Dashboard)
  231. m.Get("/config", admin.Config)
  232. m.Get("/monitor", admin.Monitor)
  233. m.Group("/users", func() {
  234. m.Get("", admin.Users)
  235. m.Get("/new", admin.NewUser)
  236. m.Post("/new", bindIgnErr(auth.AdminCrateUserForm{}), admin.NewUserPost)
  237. m.Get("/:userid", admin.EditUser)
  238. m.Post("/:userid", bindIgnErr(auth.AdminEditUserForm{}), admin.EditUserPost)
  239. m.Post("/:userid/delete", admin.DeleteUser)
  240. })
  241. m.Group("/orgs", func() {
  242. m.Get("", admin.Organizations)
  243. })
  244. m.Group("/repos", func() {
  245. m.Get("", admin.Repositories)
  246. })
  247. m.Group("/auths", func() {
  248. m.Get("", admin.Authentications)
  249. m.Get("/new", admin.NewAuthSource)
  250. m.Post("/new", bindIgnErr(auth.AuthenticationForm{}), admin.NewAuthSourcePost)
  251. m.Combo("/:authid").Get(admin.EditAuthSource).
  252. Post(bindIgnErr(auth.AuthenticationForm{}), admin.EditAuthSourcePost)
  253. m.Post("/:authid/delete", admin.DeleteAuthSource)
  254. })
  255. m.Group("/notices", func() {
  256. m.Get("", admin.Notices)
  257. m.Post("/delete", admin.DeleteNotices)
  258. m.Get("/empty", admin.EmptyNotices)
  259. })
  260. }, adminReq)
  261. // ***** END: Admin *****
  262. m.Group("", func() {
  263. m.Get("/:username", user.Profile)
  264. m.Get("/attachments/:uuid", func(ctx *middleware.Context) {
  265. attach, err := models.GetAttachmentByUUID(ctx.Params(":uuid"))
  266. if err != nil {
  267. if models.IsErrAttachmentNotExist(err) {
  268. ctx.Error(404)
  269. } else {
  270. ctx.Handle(500, "GetAttachmentByUUID", err)
  271. }
  272. return
  273. }
  274. fr, err := os.Open(attach.LocalPath())
  275. if err != nil {
  276. ctx.Handle(500, "Open", err)
  277. return
  278. }
  279. defer fr.Close()
  280. ctx.Header().Set("Cache-Control", "public,max-age=86400")
  281. // Fix #312. Attachments with , in their name are not handled correctly by Google Chrome.
  282. // We must put the name in " manually.
  283. if err = repo.ServeData(ctx, "\""+attach.Name+"\"", fr); err != nil {
  284. ctx.Handle(500, "ServeData", err)
  285. return
  286. }
  287. })
  288. m.Post("/issues/attachments", repo.UploadIssueAttachment)
  289. }, ignSignIn)
  290. if macaron.Env == macaron.DEV {
  291. m.Get("/template/*", dev.TemplatePreview)
  292. }
  293. reqRepoAdmin := middleware.RequireRepoAdmin()
  294. reqRepoPusher := middleware.RequireRepoPusher()
  295. // ***** START: Organization *****
  296. m.Group("/org", func() {
  297. m.Get("/create", org.Create)
  298. m.Post("/create", bindIgnErr(auth.CreateOrgForm{}), org.CreatePost)
  299. m.Group("/:org", func() {
  300. m.Get("/dashboard", user.Dashboard)
  301. m.Get("/^:type(issues|pulls)$", user.Issues)
  302. m.Get("/members", org.Members)
  303. m.Get("/members/action/:action", org.MembersAction)
  304. m.Get("/teams", org.Teams)
  305. m.Get("/teams/:team", org.TeamMembers)
  306. m.Get("/teams/:team/repositories", org.TeamRepositories)
  307. m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction)
  308. m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction)
  309. }, middleware.OrgAssignment(true))
  310. m.Group("/:org", func() {
  311. m.Get("/teams/new", org.NewTeam)
  312. m.Post("/teams/new", bindIgnErr(auth.CreateTeamForm{}), org.NewTeamPost)
  313. m.Get("/teams/:team/edit", org.EditTeam)
  314. m.Post("/teams/:team/edit", bindIgnErr(auth.CreateTeamForm{}), org.EditTeamPost)
  315. m.Post("/teams/:team/delete", org.DeleteTeam)
  316. m.Group("/settings", func() {
  317. m.Combo("").Get(org.Settings).
  318. Post(bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost)
  319. m.Post("/avatar", binding.MultipartForm(auth.UploadAvatarForm{}), org.SettingsAvatar)
  320. m.Group("/hooks", func() {
  321. m.Get("", org.Webhooks)
  322. m.Post("/delete", org.DeleteWebhook)
  323. m.Get("/:type/new", repo.WebhooksNew)
  324. m.Post("/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
  325. m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
  326. m.Get("/:id", repo.WebHooksEdit)
  327. m.Post("/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
  328. m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
  329. })
  330. m.Route("/delete", "GET,POST", org.SettingsDelete)
  331. })
  332. m.Route("/invitations/new", "GET,POST", org.Invitation)
  333. }, middleware.OrgAssignment(true, true))
  334. }, reqSignIn)
  335. // ***** END: Organization *****
  336. // ***** START: Repository *****
  337. m.Group("/repo", func() {
  338. m.Get("/create", repo.Create)
  339. m.Post("/create", bindIgnErr(auth.CreateRepoForm{}), repo.CreatePost)
  340. m.Get("/migrate", repo.Migrate)
  341. m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), repo.MigratePost)
  342. m.Combo("/fork/:repoid").Get(repo.Fork).
  343. Post(bindIgnErr(auth.CreateRepoForm{}), repo.ForkPost)
  344. }, reqSignIn)
  345. m.Group("/:username/:reponame", func() {
  346. m.Group("/settings", func() {
  347. m.Combo("").Get(repo.Settings).
  348. Post(bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost)
  349. m.Route("/collaboration", "GET,POST", repo.Collaboration)
  350. m.Group("/hooks", func() {
  351. m.Get("", repo.Webhooks)
  352. m.Post("/delete", repo.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. m.Group("/git", func() {
  360. m.Get("", repo.GitHooks)
  361. m.Combo("/:name").Get(repo.GitHooksEdit).
  362. Post(repo.GitHooksEditPost)
  363. }, middleware.GitHookService())
  364. })
  365. m.Group("/keys", func() {
  366. m.Combo("").Get(repo.DeployKeys).
  367. Post(bindIgnErr(auth.AddSSHKeyForm{}), repo.DeployKeysPost)
  368. m.Post("/delete", repo.DeleteDeployKey)
  369. })
  370. }, func(ctx *middleware.Context) {
  371. ctx.Data["PageIsSettings"] = true
  372. })
  373. }, reqSignIn, middleware.RepoAssignment(), reqRepoAdmin, middleware.RepoRef())
  374. m.Group("/:username/:reponame", func() {
  375. m.Get("/action/:action", repo.Action)
  376. m.Group("/issues", func() {
  377. m.Combo("/new", repo.MustEnableIssues).Get(middleware.RepoRef(), repo.NewIssue).
  378. Post(bindIgnErr(auth.CreateIssueForm{}), repo.NewIssuePost)
  379. m.Combo("/:index/comments").Post(bindIgnErr(auth.CreateCommentForm{}), repo.NewComment)
  380. m.Group("/:index", func() {
  381. m.Post("/label", repo.UpdateIssueLabel)
  382. m.Post("/milestone", repo.UpdateIssueMilestone)
  383. m.Post("/assignee", repo.UpdateIssueAssignee)
  384. }, reqRepoAdmin)
  385. m.Group("/:index", func() {
  386. m.Post("/title", repo.UpdateIssueTitle)
  387. m.Post("/content", repo.UpdateIssueContent)
  388. })
  389. })
  390. m.Post("/comments/:id", repo.UpdateCommentContent)
  391. m.Group("/labels", func() {
  392. m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel)
  393. m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel)
  394. m.Post("/delete", repo.DeleteLabel)
  395. }, reqRepoAdmin, middleware.RepoRef())
  396. m.Group("/milestones", func() {
  397. m.Combo("/new").Get(repo.NewMilestone).
  398. Post(bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
  399. m.Get("/:id/edit", repo.EditMilestone)
  400. m.Post("/:id/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.EditMilestonePost)
  401. m.Get("/:id/:action", repo.ChangeMilestonStatus)
  402. m.Post("/delete", repo.DeleteMilestone)
  403. }, reqRepoAdmin, middleware.RepoRef())
  404. m.Group("/releases", func() {
  405. m.Get("/new", repo.NewRelease)
  406. m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost)
  407. m.Get("/edit/:tagname", repo.EditRelease)
  408. m.Post("/edit/:tagname", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
  409. m.Post("/delete", repo.DeleteRelease)
  410. }, reqRepoAdmin, middleware.RepoRef())
  411. m.Combo("/compare/*", repo.MustEnablePulls).Get(repo.CompareAndPullRequest).
  412. Post(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost)
  413. }, reqSignIn, middleware.RepoAssignment())
  414. m.Group("/:username/:reponame", func() {
  415. m.Group("", func() {
  416. m.Get("/releases", repo.Releases)
  417. m.Get("/^:type(issues|pulls)$", repo.RetrieveLabels, repo.Issues)
  418. m.Get("/^:type(issues|pulls)$/:index", repo.ViewIssue)
  419. m.Get("/labels/", repo.RetrieveLabels, repo.Labels)
  420. m.Get("/milestones", repo.Milestones)
  421. }, middleware.RepoRef())
  422. // m.Get("/branches", repo.Branches)
  423. m.Group("/wiki", func() {
  424. m.Get("/?:page", repo.Wiki)
  425. m.Get("/_pages", repo.WikiPages)
  426. m.Group("", func() {
  427. m.Combo("/_new").Get(repo.NewWiki).
  428. Post(bindIgnErr(auth.NewWikiForm{}), repo.NewWikiPost)
  429. m.Combo("/:page/_edit").Get(repo.EditWiki).
  430. Post(bindIgnErr(auth.NewWikiForm{}), repo.EditWikiPost)
  431. }, reqSignIn, reqRepoPusher)
  432. }, repo.MustEnableWiki, middleware.RepoRef())
  433. m.Get("/archive/*", repo.Download)
  434. m.Group("/pulls/:index", func() {
  435. m.Get("/commits", repo.ViewPullCommits)
  436. m.Get("/files", repo.ViewPullFiles)
  437. m.Post("/merge", reqRepoAdmin, repo.MergePullRequest)
  438. }, repo.MustEnablePulls)
  439. m.Group("", func() {
  440. m.Get("/src/*", repo.Home)
  441. m.Get("/raw/*", repo.SingleDownload)
  442. m.Get("/commits/*", repo.RefCommits)
  443. m.Get("/commit/*", repo.Diff)
  444. m.Get("/stars", repo.Stars)
  445. m.Get("/watchers", repo.Watchers)
  446. m.Get("/forks", repo.Forks)
  447. }, middleware.RepoRef())
  448. m.Get("/compare/:before([a-z0-9]{40})...:after([a-z0-9]{40})", repo.CompareDiff)
  449. }, ignSignIn, middleware.RepoAssignment())
  450. m.Group("/:username", func() {
  451. m.Group("/:reponame", func() {
  452. m.Get("", repo.Home)
  453. m.Get("\\.git$", repo.Home)
  454. }, ignSignIn, middleware.RepoAssignment(true), middleware.RepoRef())
  455. m.Group("/:reponame", func() {
  456. m.Any("/*", ignSignInAndCsrf, repo.HTTP)
  457. m.Head("/tasks/trigger", repo.TriggerTask)
  458. })
  459. })
  460. // ***** END: Repository *****
  461. // robots.txt
  462. m.Get("/robots.txt", func(ctx *middleware.Context) {
  463. if setting.HasRobotsTxt {
  464. ctx.ServeFileContent(path.Join(setting.CustomPath, "robots.txt"))
  465. } else {
  466. ctx.Error(404)
  467. }
  468. })
  469. // Not found handler.
  470. m.NotFound(routers.NotFound)
  471. // Flag for port number in case first time run conflict.
  472. if ctx.IsSet("port") {
  473. setting.AppUrl = strings.Replace(setting.AppUrl, setting.HttpPort, ctx.String("port"), 1)
  474. setting.HttpPort = ctx.String("port")
  475. }
  476. var err error
  477. listenAddr := fmt.Sprintf("%s:%s", setting.HttpAddr, setting.HttpPort)
  478. log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubUrl)
  479. switch setting.Protocol {
  480. case setting.HTTP:
  481. err = http.ListenAndServe(listenAddr, m)
  482. case setting.HTTPS:
  483. server := &http.Server{Addr: listenAddr, TLSConfig: &tls.Config{MinVersion: tls.VersionTLS10}, Handler: m}
  484. err = server.ListenAndServeTLS(setting.CertFile, setting.KeyFile)
  485. case setting.FCGI:
  486. err = fcgi.Serve(nil, m)
  487. default:
  488. log.Fatal(4, "Invalid protocol: %s", setting.Protocol)
  489. }
  490. if err != nil {
  491. log.Fatal(4, "Fail to start server: %v", err)
  492. }
  493. }