2014-08-29 14:50:43 +02:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
2015-09-26 00:38:43 +02:00
|
|
|
"github.com/Unknwon/paginater"
|
2015-09-13 15:51:51 +02:00
|
|
|
|
2014-08-29 14:50:43 +02:00
|
|
|
"github.com/gogits/gogs/models"
|
|
|
|
"github.com/gogits/gogs/modules/base"
|
2015-12-05 23:39:29 +01:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-08-29 14:50:43 +02:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2015-09-26 00:38:43 +02:00
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-08-29 14:50:43 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
REPOS base.TplName = "admin/repo/list"
|
|
|
|
)
|
|
|
|
|
2015-12-05 23:39:29 +01:00
|
|
|
func Repos(ctx *middleware.Context) {
|
2014-08-29 14:50:43 +02:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.repositories")
|
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
ctx.Data["PageIsAdminRepositories"] = true
|
|
|
|
|
2015-09-26 00:38:43 +02:00
|
|
|
total := models.CountRepositories()
|
|
|
|
page := ctx.QueryInt("page")
|
|
|
|
if page <= 1 {
|
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
ctx.Data["Page"] = paginater.New(int(total), setting.AdminRepoPagingNum, page, 5)
|
|
|
|
|
|
|
|
repos, err := models.RepositoriesWithUsers(page, setting.AdminRepoPagingNum)
|
2014-08-29 14:50:43 +02:00
|
|
|
if err != nil {
|
2015-09-26 00:38:43 +02:00
|
|
|
ctx.Handle(500, "RepositoriesWithUsers", err)
|
2014-08-29 14:50:43 +02:00
|
|
|
return
|
|
|
|
}
|
2015-09-26 00:38:43 +02:00
|
|
|
ctx.Data["Repos"] = repos
|
|
|
|
|
2015-09-26 01:07:21 +02:00
|
|
|
ctx.Data["Total"] = total
|
2014-08-29 14:50:43 +02:00
|
|
|
ctx.HTML(200, REPOS)
|
|
|
|
}
|
2015-12-05 23:39:29 +01:00
|
|
|
|
|
|
|
func DeleteRepo(ctx *middleware.Context) {
|
|
|
|
repo, err := models.GetRepositoryByID(ctx.QueryInt64("id"))
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetRepositoryByID", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := models.DeleteRepository(repo.MustOwner().Id, repo.ID); err != nil {
|
|
|
|
ctx.Handle(500, "DeleteRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("Repository deleted: %s/%s", repo.MustOwner().Name, repo.Name)
|
|
|
|
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.deletion_success"))
|
|
|
|
ctx.JSON(200, map[string]interface{}{
|
2015-12-05 23:49:46 +01:00
|
|
|
"redirect": setting.AppSubUrl + "/admin/repos?page=" + ctx.Query("page"),
|
2015-12-05 23:39:29 +01:00
|
|
|
})
|
|
|
|
}
|