web.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559
  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.0.7"},
  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. Redirect: true,
  134. }))
  135. m.Use(cache.Cacher(cache.Options{
  136. Adapter: setting.CacheAdapter,
  137. AdapterConfig: setting.CacheConn,
  138. Interval: setting.CacheInternal,
  139. }))
  140. m.Use(captcha.Captchaer(captcha.Options{
  141. SubURL: setting.AppSubUrl,
  142. }))
  143. m.Use(session.Sessioner(setting.SessionConfig))
  144. m.Use(csrf.Csrfer(csrf.Options{
  145. Secret: setting.SecretKey,
  146. SetCookie: true,
  147. Header: "X-Csrf-Token",
  148. CookiePath: setting.AppSubUrl,
  149. }))
  150. m.Use(toolbox.Toolboxer(m, toolbox.Options{
  151. HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{
  152. &toolbox.HealthCheckFuncDesc{
  153. Desc: "Database connection",
  154. Func: models.Ping,
  155. },
  156. },
  157. }))
  158. m.Use(middleware.Contexter())
  159. return m
  160. }
  161. func runWeb(ctx *cli.Context) {
  162. if ctx.IsSet("config") {
  163. setting.CustomConf = ctx.String("config")
  164. }
  165. routers.GlobalInit()
  166. checkVersion()
  167. m := newMacaron()
  168. reqSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true})
  169. ignSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: setting.Service.RequireSignInView})
  170. ignSignInAndCsrf := middleware.Toggle(&middleware.ToggleOptions{DisableCsrf: true})
  171. reqSignOut := middleware.Toggle(&middleware.ToggleOptions{SignOutRequire: true})
  172. bindIgnErr := binding.BindIgnErr
  173. // Routers.
  174. m.Get("/", ignSignIn, routers.Home)
  175. m.Get("/explore", ignSignIn, routers.Explore)
  176. m.Combo("/install", routers.InstallInit).Get(routers.Install).
  177. Post(bindIgnErr(auth.InstallForm{}), routers.InstallPost)
  178. m.Get("/^:type(issues|pulls)$", reqSignIn, user.Issues)
  179. // ***** START: API *****
  180. m.Group("/api", func() {
  181. apiv1.RegisterRoutes(m)
  182. }, ignSignIn)
  183. // ***** END: API *****
  184. // ***** START: User *****
  185. m.Group("/user", func() {
  186. m.Get("/login", user.SignIn)
  187. m.Post("/login", bindIgnErr(auth.SignInForm{}), user.SignInPost)
  188. m.Get("/sign_up", user.SignUp)
  189. m.Post("/sign_up", bindIgnErr(auth.RegisterForm{}), user.SignUpPost)
  190. m.Get("/reset_password", user.ResetPasswd)
  191. m.Post("/reset_password", user.ResetPasswdPost)
  192. }, reqSignOut)
  193. m.Group("/user/settings", func() {
  194. m.Get("", user.Settings)
  195. m.Post("", bindIgnErr(auth.UpdateProfileForm{}), user.SettingsPost)
  196. m.Post("/avatar", binding.MultipartForm(auth.UploadAvatarForm{}), user.SettingsAvatar)
  197. m.Combo("/email").Get(user.SettingsEmails).
  198. Post(bindIgnErr(auth.AddEmailForm{}), user.SettingsEmailPost)
  199. m.Post("/email/delete", user.DeleteEmail)
  200. m.Get("/password", user.SettingsPassword)
  201. m.Post("/password", bindIgnErr(auth.ChangePasswordForm{}), user.SettingsPasswordPost)
  202. m.Combo("/ssh").Get(user.SettingsSSHKeys).
  203. Post(bindIgnErr(auth.AddSSHKeyForm{}), user.SettingsSSHKeysPost)
  204. m.Post("/ssh/delete", user.DeleteSSHKey)
  205. m.Combo("/applications").Get(user.SettingsApplications).
  206. Post(bindIgnErr(auth.NewAccessTokenForm{}), user.SettingsApplicationsPost)
  207. m.Post("/applications/delete", user.SettingsDeleteApplication)
  208. m.Route("/delete", "GET,POST", user.SettingsDelete)
  209. }, reqSignIn, func(ctx *middleware.Context) {
  210. ctx.Data["PageIsUserSettings"] = true
  211. })
  212. m.Group("/user", func() {
  213. // r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
  214. m.Any("/activate", user.Activate)
  215. m.Any("/activate_email", user.ActivateEmail)
  216. m.Get("/email2user", user.Email2User)
  217. m.Get("/forget_password", user.ForgotPasswd)
  218. m.Post("/forget_password", user.ForgotPasswdPost)
  219. m.Get("/logout", user.SignOut)
  220. })
  221. // ***** END: User *****
  222. // Gravatar service.
  223. avt := avatar.CacheServer("public/img/avatar/", "public/img/avatar_default.jpg")
  224. os.MkdirAll("public/img/avatar/", os.ModePerm)
  225. m.Get("/avatar/:hash", avt.ServeHTTP)
  226. adminReq := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true, AdminRequire: true})
  227. // ***** START: Admin *****
  228. m.Group("/admin", func() {
  229. m.Get("", adminReq, admin.Dashboard)
  230. m.Get("/config", admin.Config)
  231. m.Get("/monitor", admin.Monitor)
  232. m.Group("/users", func() {
  233. m.Get("", admin.Users)
  234. m.Get("/new", admin.NewUser)
  235. m.Post("/new", bindIgnErr(auth.AdminCrateUserForm{}), admin.NewUserPost)
  236. m.Get("/:userid", admin.EditUser)
  237. m.Post("/:userid", bindIgnErr(auth.AdminEditUserForm{}), admin.EditUserPost)
  238. m.Post("/:userid/delete", admin.DeleteUser)
  239. })
  240. m.Group("/orgs", func() {
  241. m.Get("", admin.Organizations)
  242. })
  243. m.Group("/repos", func() {
  244. m.Get("", admin.Repositories)
  245. })
  246. m.Group("/auths", func() {
  247. m.Get("", admin.Authentications)
  248. m.Get("/new", admin.NewAuthSource)
  249. m.Post("/new", bindIgnErr(auth.AuthenticationForm{}), admin.NewAuthSourcePost)
  250. m.Combo("/:authid").Get(admin.EditAuthSource).
  251. Post(bindIgnErr(auth.AuthenticationForm{}), admin.EditAuthSourcePost)
  252. m.Post("/:authid/delete", admin.DeleteAuthSource)
  253. })
  254. m.Group("/notices", func() {
  255. m.Get("", admin.Notices)
  256. m.Get("/:id:int/delete", admin.DeleteNotice)
  257. m.Get("/empty", admin.EmptyNotices)
  258. })
  259. }, adminReq)
  260. // ***** END: Admin *****
  261. m.Group("", func() {
  262. m.Get("/:username", user.Profile)
  263. m.Get("/attachments/:uuid", func(ctx *middleware.Context) {
  264. attach, err := models.GetAttachmentByUUID(ctx.Params(":uuid"))
  265. if err != nil {
  266. if models.IsErrAttachmentNotExist(err) {
  267. ctx.Error(404)
  268. } else {
  269. ctx.Handle(500, "GetAttachmentByUUID", err)
  270. }
  271. return
  272. }
  273. fr, err := os.Open(attach.LocalPath())
  274. if err != nil {
  275. ctx.Handle(500, "Open", err)
  276. return
  277. }
  278. defer fr.Close()
  279. ctx.Header().Set("Cache-Control", "public,max-age=86400")
  280. // Fix #312. Attachments with , in their name are not handled correctly by Google Chrome.
  281. // We must put the name in " manually.
  282. if err = repo.ServeData(ctx, "\""+attach.Name+"\"", fr); err != nil {
  283. ctx.Handle(500, "ServeData", err)
  284. return
  285. }
  286. })
  287. m.Post("/issues/attachments", repo.UploadIssueAttachment)
  288. }, ignSignIn)
  289. if macaron.Env == macaron.DEV {
  290. m.Get("/template/*", dev.TemplatePreview)
  291. }
  292. reqRepoAdmin := middleware.RequireRepoAdmin()
  293. reqRepoPusher := middleware.RequireRepoPusher()
  294. // ***** START: Organization *****
  295. m.Group("/org", func() {
  296. m.Get("/create", org.Create)
  297. m.Post("/create", bindIgnErr(auth.CreateOrgForm{}), org.CreatePost)
  298. m.Group("/:org", func() {
  299. m.Get("/dashboard", user.Dashboard)
  300. m.Get("/^:type(issues|pulls)$", user.Issues)
  301. m.Get("/members", org.Members)
  302. m.Get("/members/action/:action", org.MembersAction)
  303. m.Get("/teams", org.Teams)
  304. m.Get("/teams/:team", org.TeamMembers)
  305. m.Get("/teams/:team/repositories", org.TeamRepositories)
  306. m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction)
  307. m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction)
  308. }, middleware.OrgAssignment(true))
  309. m.Group("/:org", func() {
  310. m.Get("/teams/new", org.NewTeam)
  311. m.Post("/teams/new", bindIgnErr(auth.CreateTeamForm{}), org.NewTeamPost)
  312. m.Get("/teams/:team/edit", org.EditTeam)
  313. m.Post("/teams/:team/edit", bindIgnErr(auth.CreateTeamForm{}), org.EditTeamPost)
  314. m.Post("/teams/:team/delete", org.DeleteTeam)
  315. m.Group("/settings", func() {
  316. m.Combo("").Get(org.Settings).
  317. Post(bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost)
  318. m.Post("/avatar", binding.MultipartForm(auth.UploadAvatarForm{}), org.SettingsAvatar)
  319. m.Group("/hooks", func() {
  320. m.Get("", org.Webhooks)
  321. m.Post("/delete", org.DeleteWebhook)
  322. m.Get("/:type/new", repo.WebhooksNew)
  323. m.Post("/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
  324. m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
  325. m.Get("/:id", repo.WebHooksEdit)
  326. m.Post("/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
  327. m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
  328. })
  329. m.Route("/delete", "GET,POST", org.SettingsDelete)
  330. })
  331. m.Route("/invitations/new", "GET,POST", org.Invitation)
  332. }, middleware.OrgAssignment(true, true))
  333. }, reqSignIn)
  334. // ***** END: Organization *****
  335. // ***** START: Repository *****
  336. m.Group("/repo", func() {
  337. m.Get("/create", repo.Create)
  338. m.Post("/create", bindIgnErr(auth.CreateRepoForm{}), repo.CreatePost)
  339. m.Get("/migrate", repo.Migrate)
  340. m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), repo.MigratePost)
  341. m.Combo("/fork/:repoid").Get(repo.Fork).
  342. Post(bindIgnErr(auth.CreateRepoForm{}), repo.ForkPost)
  343. }, reqSignIn)
  344. m.Group("/:username/:reponame", func() {
  345. m.Group("/settings", func() {
  346. m.Combo("").Get(repo.Settings).
  347. Post(bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost)
  348. m.Route("/collaboration", "GET,POST", repo.Collaboration)
  349. m.Group("/hooks", func() {
  350. m.Get("", repo.Webhooks)
  351. m.Post("/delete", repo.DeleteWebhook)
  352. m.Get("/:type/new", repo.WebhooksNew)
  353. m.Post("/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
  354. m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
  355. m.Get("/:id", repo.WebHooksEdit)
  356. m.Post("/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
  357. m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
  358. m.Group("/git", func() {
  359. m.Get("", repo.GitHooks)
  360. m.Combo("/:name").Get(repo.GitHooksEdit).
  361. Post(repo.GitHooksEditPost)
  362. }, middleware.GitHookService())
  363. })
  364. m.Group("/keys", func() {
  365. m.Combo("").Get(repo.DeployKeys).
  366. Post(bindIgnErr(auth.AddSSHKeyForm{}), repo.DeployKeysPost)
  367. m.Post("/delete", repo.DeleteDeployKey)
  368. })
  369. }, func(ctx *middleware.Context) {
  370. ctx.Data["PageIsSettings"] = true
  371. })
  372. }, reqSignIn, middleware.RepoAssignment(), reqRepoAdmin, middleware.RepoRef())
  373. m.Group("/:username/:reponame", func() {
  374. m.Get("/action/:action", repo.Action)
  375. m.Group("/issues", func() {
  376. m.Combo("/new").Get(middleware.RepoRef(), repo.NewIssue).
  377. Post(bindIgnErr(auth.CreateIssueForm{}), repo.NewIssuePost)
  378. m.Combo("/:index/comments").Post(bindIgnErr(auth.CreateCommentForm{}), repo.NewComment)
  379. m.Group("/:index", func() {
  380. m.Post("/label", repo.UpdateIssueLabel)
  381. m.Post("/milestone", repo.UpdateIssueMilestone)
  382. m.Post("/assignee", repo.UpdateIssueAssignee)
  383. }, reqRepoAdmin)
  384. m.Group("/:index", func() {
  385. m.Post("/title", repo.UpdateIssueTitle)
  386. m.Post("/content", repo.UpdateIssueContent)
  387. })
  388. })
  389. m.Post("/comments/:id", repo.UpdateCommentContent)
  390. m.Group("/labels", func() {
  391. m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel)
  392. m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel)
  393. m.Post("/delete", repo.DeleteLabel)
  394. }, reqRepoAdmin, middleware.RepoRef())
  395. m.Group("/milestones", func() {
  396. m.Combo("/new").Get(repo.NewMilestone).
  397. Post(bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
  398. m.Get("/:id/edit", repo.EditMilestone)
  399. m.Post("/:id/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.EditMilestonePost)
  400. m.Get("/:id/:action", repo.ChangeMilestonStatus)
  401. m.Post("/delete", repo.DeleteMilestone)
  402. }, reqRepoAdmin, middleware.RepoRef())
  403. m.Group("/releases", func() {
  404. m.Get("/new", repo.NewRelease)
  405. m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost)
  406. m.Get("/edit/:tagname", repo.EditRelease)
  407. m.Post("/edit/:tagname", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
  408. m.Post("/delete", repo.DeleteRelease)
  409. }, reqRepoAdmin, middleware.RepoRef())
  410. m.Combo("/compare/*").Get(repo.CompareAndPullRequest).
  411. Post(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost)
  412. }, reqSignIn, middleware.RepoAssignment())
  413. m.Group("/:username/:reponame", func() {
  414. m.Group("", func() {
  415. m.Get("/releases", repo.Releases)
  416. m.Get("/^:type(issues|pulls)$", repo.RetrieveLabels, repo.Issues)
  417. m.Get("/^:type(issues|pulls)$/:index", repo.ViewIssue)
  418. m.Get("/labels/", repo.RetrieveLabels, repo.Labels)
  419. m.Get("/milestones", repo.Milestones)
  420. }, middleware.RepoRef())
  421. // m.Get("/branches", repo.Branches)
  422. m.Group("/wiki", func() {
  423. m.Get("/?:page", repo.Wiki)
  424. m.Get("/_pages", repo.WikiPages)
  425. m.Group("", func() {
  426. m.Combo("/_new").Get(repo.NewWiki).
  427. Post(bindIgnErr(auth.NewWikiForm{}), repo.NewWikiPost)
  428. m.Combo("/:page/_edit").Get(repo.EditWiki).
  429. Post(bindIgnErr(auth.NewWikiForm{}), repo.EditWikiPost)
  430. }, reqSignIn, reqRepoPusher)
  431. }, middleware.RepoRef())
  432. m.Get("/archive/*", repo.Download)
  433. m.Group("/pulls/:index", func() {
  434. m.Get("/commits", repo.ViewPullCommits)
  435. m.Get("/files", repo.ViewPullFiles)
  436. m.Post("/merge", reqRepoAdmin, repo.MergePullRequest)
  437. })
  438. m.Group("", func() {
  439. m.Get("/src/*", repo.Home)
  440. m.Get("/raw/*", repo.SingleDownload)
  441. m.Get("/commits/*", repo.RefCommits)
  442. m.Get("/commit/*", repo.Diff)
  443. m.Get("/stars", repo.Stars)
  444. m.Get("/watchers", repo.Watchers)
  445. m.Get("/forks", repo.Forks)
  446. }, middleware.RepoRef())
  447. m.Get("/compare/:before([a-z0-9]{40})...:after([a-z0-9]{40})", repo.CompareDiff)
  448. }, ignSignIn, middleware.RepoAssignment())
  449. m.Group("/:username", func() {
  450. m.Group("/:reponame", func() {
  451. m.Get("", repo.Home)
  452. m.Get("\\.git$", repo.Home)
  453. }, ignSignIn, middleware.RepoAssignment(true), middleware.RepoRef())
  454. m.Group("/:reponame", func() {
  455. m.Any("/*", ignSignInAndCsrf, repo.HTTP)
  456. m.Head("/tasks/trigger", repo.TriggerTask)
  457. })
  458. })
  459. // ***** END: Repository *****
  460. // robots.txt
  461. m.Get("/robots.txt", func(ctx *middleware.Context) {
  462. if setting.HasRobotsTxt {
  463. ctx.ServeFileContent(path.Join(setting.CustomPath, "robots.txt"))
  464. } else {
  465. ctx.Error(404)
  466. }
  467. })
  468. // Not found handler.
  469. m.NotFound(routers.NotFound)
  470. // Flag for port number in case first time run conflict.
  471. if ctx.IsSet("port") {
  472. setting.AppUrl = strings.Replace(setting.AppUrl, setting.HttpPort, ctx.String("port"), 1)
  473. setting.HttpPort = ctx.String("port")
  474. }
  475. var err error
  476. listenAddr := fmt.Sprintf("%s:%s", setting.HttpAddr, setting.HttpPort)
  477. log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubUrl)
  478. switch setting.Protocol {
  479. case setting.HTTP:
  480. err = http.ListenAndServe(listenAddr, m)
  481. case setting.HTTPS:
  482. server := &http.Server{Addr: listenAddr, TLSConfig: &tls.Config{MinVersion: tls.VersionTLS10}, Handler: m}
  483. err = server.ListenAndServeTLS(setting.CertFile, setting.KeyFile)
  484. case setting.FCGI:
  485. err = fcgi.Serve(nil, m)
  486. default:
  487. log.Fatal(4, "Invalid protocol: %s", setting.Protocol)
  488. }
  489. if err != nil {
  490. log.Fatal(4, "Fail to start server: %v", err)
  491. }
  492. }