auth.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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 context
  5. import (
  6. "net/http"
  7. "net/url"
  8. "strings"
  9. "github.com/go-macaron/csrf"
  10. "gopkg.in/macaron.v1"
  11. "gogs.io/gogs/internal/auth"
  12. "gogs.io/gogs/internal/setting"
  13. "gogs.io/gogs/internal/tool"
  14. )
  15. type ToggleOptions struct {
  16. SignInRequired bool
  17. SignOutRequired bool
  18. AdminRequired bool
  19. DisableCSRF bool
  20. }
  21. func Toggle(options *ToggleOptions) macaron.Handler {
  22. return func(c *Context) {
  23. // Cannot view any page before installation.
  24. if !setting.InstallLock {
  25. c.Redirect(setting.AppSubURL + "/install")
  26. return
  27. }
  28. // Check prohibit login users.
  29. if c.IsLogged && c.User.ProhibitLogin {
  30. c.Data["Title"] = c.Tr("auth.prohibit_login")
  31. c.HTML(200, "user/auth/prohibit_login")
  32. return
  33. }
  34. // Check non-logged users landing page.
  35. if !c.IsLogged && c.Req.RequestURI == "/" && setting.LandingPageURL != setting.LANDING_PAGE_HOME {
  36. c.Redirect(setting.AppSubURL + string(setting.LandingPageURL))
  37. return
  38. }
  39. // Redirect to dashboard if user tries to visit any non-login page.
  40. if options.SignOutRequired && c.IsLogged && c.Req.RequestURI != "/" {
  41. c.Redirect(setting.AppSubURL + "/")
  42. return
  43. }
  44. if !options.SignOutRequired && !options.DisableCSRF && c.Req.Method == "POST" && !auth.IsAPIPath(c.Req.URL.Path) {
  45. csrf.Validate(c.Context, c.csrf)
  46. if c.Written() {
  47. return
  48. }
  49. }
  50. if options.SignInRequired {
  51. if !c.IsLogged {
  52. // Restrict API calls with error message.
  53. if auth.IsAPIPath(c.Req.URL.Path) {
  54. c.JSON(403, map[string]string{
  55. "message": "Only signed in user is allowed to call APIs.",
  56. })
  57. return
  58. }
  59. c.SetCookie("redirect_to", url.QueryEscape(setting.AppSubURL+c.Req.RequestURI), 0, setting.AppSubURL)
  60. c.Redirect(setting.AppSubURL + "/user/login")
  61. return
  62. } else if !c.User.IsActive && setting.Service.RegisterEmailConfirm {
  63. c.Data["Title"] = c.Tr("auth.active_your_account")
  64. c.HTML(200, "user/auth/activate")
  65. return
  66. }
  67. }
  68. // Redirect to log in page if auto-signin info is provided and has not signed in.
  69. if !options.SignOutRequired && !c.IsLogged && !auth.IsAPIPath(c.Req.URL.Path) &&
  70. len(c.GetCookie(setting.CookieUserName)) > 0 {
  71. c.SetCookie("redirect_to", url.QueryEscape(setting.AppSubURL+c.Req.RequestURI), 0, setting.AppSubURL)
  72. c.Redirect(setting.AppSubURL + "/user/login")
  73. return
  74. }
  75. if options.AdminRequired {
  76. if !c.User.IsAdmin {
  77. c.Error(403)
  78. return
  79. }
  80. c.Data["PageIsAdmin"] = true
  81. }
  82. }
  83. }
  84. // RequireBasicAuth verifies HTTP Basic Authentication header with given credentials
  85. func (c *Context) RequireBasicAuth(username, password string) {
  86. fields := strings.Fields(c.Req.Header.Get("Authorization"))
  87. if len(fields) != 2 || fields[0] != "Basic" {
  88. c.Status(http.StatusUnauthorized)
  89. return
  90. }
  91. uname, passwd, _ := tool.BasicAuthDecode(fields[1])
  92. if uname != username || passwd != password {
  93. c.Status(http.StatusForbidden)
  94. return
  95. }
  96. }