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