You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

web.go 19KB

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