mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.4 KiB
52 lines
1.4 KiB
// 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 ( |
|
"github.com/gogits/gogs/models" |
|
"github.com/gogits/gogs/modules/base" |
|
"github.com/gogits/gogs/modules/context" |
|
"github.com/gogits/gogs/modules/log" |
|
"github.com/gogits/gogs/modules/setting" |
|
"github.com/gogits/gogs/routers" |
|
) |
|
|
|
const ( |
|
REPOS base.TplName = "admin/repo/list" |
|
) |
|
|
|
func Repos(ctx *context.Context) { |
|
ctx.Data["Title"] = ctx.Tr("admin.repositories") |
|
ctx.Data["PageIsAdmin"] = true |
|
ctx.Data["PageIsAdminRepositories"] = true |
|
|
|
routers.RenderRepoSearch(ctx, &routers.RepoSearchOptions{ |
|
Counter: models.CountRepositories, |
|
Ranger: models.Repositories, |
|
Private: true, |
|
PageSize: setting.UI.Admin.RepoPagingNum, |
|
OrderBy: "id ASC", |
|
TplName: REPOS, |
|
}) |
|
} |
|
|
|
func DeleteRepo(ctx *context.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{}{ |
|
"redirect": setting.AppSubUrl + "/admin/repos?page=" + ctx.Query("page"), |
|
}) |
|
}
|
|
|