repo.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. "errors"
  7. "strings"
  8. "github.com/codegangsta/martini"
  9. "github.com/gogits/gogs/models"
  10. )
  11. func RepoAssignment(redirect bool) martini.Handler {
  12. return func(ctx *Context, params martini.Params) {
  13. // assign false first
  14. ctx.Data["IsRepositoryValid"] = false
  15. var (
  16. user *models.User
  17. err error
  18. )
  19. // get repository owner
  20. ctx.Repo.IsOwner = ctx.IsSigned && ctx.User.LowerName == strings.ToLower(params["username"])
  21. if !ctx.Repo.IsOwner {
  22. user, err = models.GetUserByName(params["username"])
  23. if err != nil {
  24. if redirect {
  25. ctx.Redirect("/")
  26. return
  27. }
  28. ctx.Handle(200, "RepoAssignment", err)
  29. return
  30. }
  31. } else {
  32. user = ctx.User
  33. }
  34. if user == nil {
  35. if redirect {
  36. ctx.Redirect("/")
  37. return
  38. }
  39. ctx.Handle(200, "RepoAssignment", errors.New("invliad user account for single repository"))
  40. return
  41. }
  42. ctx.Repo.Owner = user
  43. // get repository
  44. repo, err := models.GetRepositoryByName(user, params["reponame"])
  45. if err != nil {
  46. if redirect {
  47. ctx.Redirect("/")
  48. return
  49. }
  50. ctx.Handle(200, "RepoAssignment", err)
  51. return
  52. }
  53. ctx.Repo.IsValid = true
  54. ctx.Repo.Repository = repo
  55. ctx.Data["IsRepositoryValid"] = true
  56. ctx.Data["Repository"] = repo
  57. ctx.Data["Owner"] = user
  58. ctx.Data["Title"] = user.Name + "/" + repo.Name
  59. ctx.Data["RepositoryLink"] = ctx.Data["Title"]
  60. ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner
  61. }
  62. }
PANIC: session(release): write data/sessions/0/c/0c612ad3bf11cd2a: no space left on device

PANIC

session(release): write data/sessions/0/c/0c612ad3bf11cd2a: 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)