repos.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 admin
  5. import (
  6. "github.com/gogits/gogs/models"
  7. "github.com/gogits/gogs/modules/base"
  8. "github.com/gogits/gogs/modules/context"
  9. "github.com/gogits/gogs/modules/log"
  10. "github.com/gogits/gogs/modules/setting"
  11. "github.com/gogits/gogs/routers"
  12. )
  13. const (
  14. REPOS base.TplName = "admin/repo/list"
  15. )
  16. func Repos(ctx *context.Context) {
  17. ctx.Data["Title"] = ctx.Tr("admin.repositories")
  18. ctx.Data["PageIsAdmin"] = true
  19. ctx.Data["PageIsAdminRepositories"] = true
  20. routers.RenderRepoSearch(ctx, &routers.RepoSearchOptions{
  21. Counter: models.CountRepositories,
  22. Ranger: models.Repositories,
  23. Private: true,
  24. PageSize: setting.UI.Admin.RepoPagingNum,
  25. OrderBy: "id ASC",
  26. TplName: REPOS,
  27. })
  28. }
  29. func DeleteRepo(ctx *context.Context) {
  30. repo, err := models.GetRepositoryByID(ctx.QueryInt64("id"))
  31. if err != nil {
  32. ctx.Handle(500, "GetRepositoryByID", err)
  33. return
  34. }
  35. if err := models.DeleteRepository(repo.MustOwner().ID, repo.ID); err != nil {
  36. ctx.Handle(500, "DeleteRepository", err)
  37. return
  38. }
  39. log.Trace("Repository deleted: %s/%s", repo.MustOwner().Name, repo.Name)
  40. ctx.Flash.Success(ctx.Tr("repo.settings.deletion_success"))
  41. ctx.JSON(200, map[string]interface{}{
  42. "redirect": setting.AppSubUrl + "/admin/repos?page=" + ctx.Query("page"),
  43. })
  44. }
PANIC: session(release): write data/sessions/0/a/0aa29020d4fc5352: no space left on device

PANIC

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