web.go 19 KB

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