auth.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 middleware
  5. import (
  6. "net/url"
  7. "github.com/go-martini/martini"
  8. "github.com/gogits/gogs/modules/base"
  9. )
  10. type ToggleOptions struct {
  11. SignInRequire bool
  12. SignOutRequire bool
  13. AdminRequire bool
  14. DisableCsrf bool
  15. }
  16. func Toggle(options *ToggleOptions) martini.Handler {
  17. return func(ctx *Context) {
  18. if !base.InstallLock {
  19. ctx.Redirect("/install")
  20. return
  21. }
  22. if options.SignOutRequire && ctx.IsSigned && ctx.Req.RequestURI != "/" {
  23. ctx.Redirect("/")
  24. return
  25. }
  26. if !options.DisableCsrf {
  27. if ctx.Req.Method == "POST" {
  28. if !ctx.CsrfTokenValid() {
  29. ctx.Error(403, "CSRF token does not match")
  30. return
  31. }
  32. }
  33. }
  34. if options.SignInRequire {
  35. if !ctx.IsSigned {
  36. ctx.SetCookie("redirect_to", "/"+url.QueryEscape(ctx.Req.RequestURI))
  37. ctx.Redirect("/user/login")
  38. return
  39. } else if !ctx.User.IsActive && base.Service.RegisterEmailConfirm {
  40. ctx.Data["Title"] = "Activate Your Account"
  41. ctx.HTML(200, "user/activate")
  42. return
  43. }
  44. }
  45. if options.AdminRequire {
  46. if !ctx.User.IsAdmin {
  47. ctx.Error(403)
  48. return
  49. }
  50. ctx.Data["PageIsAdmin"] = true
  51. }
  52. }
  53. }
PANIC: session(release): write data/sessions/0/a/0acfa1c4ece262b0: no space left on device

PANIC

session(release): write data/sessions/0/a/0acfa1c4ece262b0: no space left on device
github.com/go-macaron/session@v0.0.0-20190805070824-1a3cdc6f5659/session.go:199 (0x8b2934)
gopkg.in/macaron.v1@v1.3.9/context.go:79 (0x83d0a0)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:157 (0x80ab07)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:135 (0x80a8a8)
gopkg.in/macaron.v1@v1.3.9/context.go:121 (0x83d1f8)
gopkg.in/macaron.v1@v1.3.9/context.go:112 (0x84fdb5)
gopkg.in/macaron.v1@v1.3.9/recovery.go:161 (0x84fda8)
gopkg.in/macaron.v1@v1.3.9/logger.go:40 (0x840c73)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:157 (0x80ab07)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:135 (0x80a8a8)
gopkg.in/macaron.v1@v1.3.9/context.go:121 (0x83d1f8)
gopkg.in/macaron.v1@v1.3.9/router.go:187 (0x850fc6)
gopkg.in/macaron.v1@v1.3.9/router.go:303 (0x8493e5)
gopkg.in/macaron.v1@v1.3.9/macaron.go:220 (0x841fca)
net/http/server.go:2836 (0x7a79b2)
net/http/server.go:1924 (0x7a341b)
runtime/asm_amd64.s:1373 (0x46f9f0)