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 (
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/routers"
|
2014-08-29 14:50:43 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-21 04:21:24 +01:00
|
|
|
tplRepos base.TplName = "admin/repo/list"
|
2014-08-29 14:50:43 +02:00
|
|
|
)
|
|
|
|
|
2016-11-21 04:21:24 +01:00
|
|
|
// Repos show all the repositories
|
2016-03-11 17:56:52 +01:00
|
|
|
func Repos(ctx *context.Context) {
|
2014-08-29 14:50:43 +02:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.repositories")
|
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
ctx.Data["PageIsAdminRepositories"] = true
|
|
|
|
|
2016-03-15 19:23:12 +01:00
|
|
|
routers.RenderRepoSearch(ctx, &routers.RepoSearchOptions{
|
|
|
|
Private: true,
|
2016-07-23 18:23:54 +02:00
|
|
|
PageSize: setting.UI.Admin.RepoPagingNum,
|
2016-11-21 04:21:24 +01:00
|
|
|
TplName: tplRepos,
|
2016-03-15 19:23:12 +01:00
|
|
|
})
|
2014-08-29 14:50:43 +02:00
|
|
|
}
|
2015-12-05 23:39:29 +01:00
|
|
|
|
2016-11-21 04:21:24 +01:00
|
|
|
// DeleteRepo delete one repository
|
2016-03-11 17:56:52 +01:00
|
|
|
func DeleteRepo(ctx *context.Context) {
|
2015-12-05 23:39:29 +01:00
|
|
|
repo, err := models.GetRepositoryByID(ctx.QueryInt64("id"))
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetRepositoryByID", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-09-03 10:20:24 +02:00
|
|
|
if err := models.DeleteRepository(ctx.User, repo.MustOwner().ID, repo.ID); err != nil {
|
2015-12-05 23:39:29 +01:00
|
|
|
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{}{
|
2016-11-27 11:14:25 +01:00
|
|
|
"redirect": setting.AppSubURL + "/admin/repos?page=" + ctx.Query("page"),
|
2015-12-05 23:39:29 +01:00
|
|
|
})
|
|
|
|
}
|