2014-08-29 14:50:43 +02:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2014-08-29 14:50:43 +02:00
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
2021-04-05 17:30:52 +02:00
|
|
|
"net/http"
|
2020-12-24 16:26:19 +01:00
|
|
|
"net/url"
|
2020-09-25 06:09:23 +02:00
|
|
|
"strings"
|
|
|
|
|
2021-09-24 13:32:56 +02:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-10 02:27:50 +01:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 10:49:20 +01:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-11-28 03:42:08 +01:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-06-09 01:33:54 +02:00
|
|
|
"code.gitea.io/gitea/routers/web/explore"
|
2024-02-27 08:12:22 +01:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2019-10-26 08:54:11 +02:00
|
|
|
repo_service "code.gitea.io/gitea/services/repository"
|
2014-08-29 14:50:43 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2020-09-25 06:09:23 +02:00
|
|
|
tplRepos base.TplName = "admin/repo/list"
|
|
|
|
tplUnadoptedRepos base.TplName = "admin/repo/unadopted"
|
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["PageIsAdminRepositories"] = true
|
|
|
|
|
2021-06-09 01:33:54 +02:00
|
|
|
explore.RenderRepoSearch(ctx, &explore.RepoSearchOptions{
|
2023-02-24 20:11:31 +01:00
|
|
|
Private: true,
|
|
|
|
PageSize: setting.UI.Admin.RepoPagingNum,
|
|
|
|
TplName: tplRepos,
|
|
|
|
OnlyShowRelevant: false,
|
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) {
|
2022-12-03 03:48:26 +01:00
|
|
|
repo, err := repo_model.GetRepositoryByID(ctx, ctx.FormInt64("id"))
|
2015-12-05 23:39:29 +01:00
|
|
|
if err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("GetRepositoryByID", err)
|
2015-12-05 23:39:29 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-14 22:19:38 +02:00
|
|
|
if ctx.Repo != nil && ctx.Repo.GitRepo != nil && ctx.Repo.Repository != nil && ctx.Repo.Repository.ID == repo.ID {
|
|
|
|
ctx.Repo.GitRepo.Close()
|
|
|
|
}
|
|
|
|
|
2022-03-22 08:03:22 +01:00
|
|
|
if err := repo_service.DeleteRepository(ctx, ctx.Doer, repo, true); err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("DeleteRepository", err)
|
2015-12-05 23:39:29 +01:00
|
|
|
return
|
|
|
|
}
|
2020-01-12 10:36:21 +01:00
|
|
|
log.Trace("Repository deleted: %s", repo.FullName())
|
2015-12-05 23:39:29 +01:00
|
|
|
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.settings.deletion_success"))
|
2023-07-26 08:04:01 +02:00
|
|
|
ctx.JSONRedirect(setting.AppSubURL + "/admin/repos?page=" + url.QueryEscape(ctx.FormString("page")) + "&sort=" + url.QueryEscape(ctx.FormString("sort")))
|
2015-12-05 23:39:29 +01:00
|
|
|
}
|
2020-09-25 06:09:23 +02:00
|
|
|
|
|
|
|
// UnadoptedRepos lists the unadopted repositories
|
|
|
|
func UnadoptedRepos(ctx *context.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.repositories")
|
|
|
|
ctx.Data["PageIsAdminRepositories"] = true
|
|
|
|
|
2021-09-24 13:32:56 +02:00
|
|
|
opts := db.ListOptions{
|
2020-09-25 06:09:23 +02:00
|
|
|
PageSize: setting.UI.Admin.UserPagingNum,
|
2021-07-29 03:42:15 +02:00
|
|
|
Page: ctx.FormInt("page"),
|
2020-09-25 06:09:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if opts.Page <= 0 {
|
|
|
|
opts.Page = 1
|
|
|
|
}
|
|
|
|
|
2020-12-24 16:26:19 +01:00
|
|
|
ctx.Data["CurrentPage"] = opts.Page
|
|
|
|
|
2021-07-29 03:42:15 +02:00
|
|
|
doSearch := ctx.FormBool("search")
|
2020-09-25 06:09:23 +02:00
|
|
|
|
|
|
|
ctx.Data["search"] = doSearch
|
2021-08-11 02:31:13 +02:00
|
|
|
q := ctx.FormString("q")
|
2020-09-25 06:09:23 +02:00
|
|
|
|
|
|
|
if !doSearch {
|
|
|
|
pager := context.NewPagination(0, opts.PageSize, opts.Page, 5)
|
|
|
|
pager.SetDefaultParams(ctx)
|
2020-12-24 16:26:19 +01:00
|
|
|
pager.AddParam(ctx, "search", "search")
|
2020-09-25 06:09:23 +02:00
|
|
|
ctx.Data["Page"] = pager
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.HTML(http.StatusOK, tplUnadoptedRepos)
|
2020-09-25 06:09:23 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Keyword"] = q
|
2023-02-28 23:17:51 +01:00
|
|
|
repoNames, count, err := repo_service.ListUnadoptedRepositories(ctx, q, &opts)
|
2020-09-25 06:09:23 +02:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("ListUnadoptedRepositories", err)
|
2024-05-28 11:31:59 +02:00
|
|
|
return
|
2020-09-25 06:09:23 +02:00
|
|
|
}
|
|
|
|
ctx.Data["Dirs"] = repoNames
|
2022-06-20 12:02:49 +02:00
|
|
|
pager := context.NewPagination(count, opts.PageSize, opts.Page, 5)
|
2020-09-25 06:09:23 +02:00
|
|
|
pager.SetDefaultParams(ctx)
|
2020-12-24 16:26:19 +01:00
|
|
|
pager.AddParam(ctx, "search", "search")
|
2020-09-25 06:09:23 +02:00
|
|
|
ctx.Data["Page"] = pager
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.HTML(http.StatusOK, tplUnadoptedRepos)
|
2020-09-25 06:09:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// AdoptOrDeleteRepository adopts or deletes a repository
|
|
|
|
func AdoptOrDeleteRepository(ctx *context.Context) {
|
2021-08-11 02:31:13 +02:00
|
|
|
dir := ctx.FormString("id")
|
|
|
|
action := ctx.FormString("action")
|
2021-08-11 17:08:52 +02:00
|
|
|
page := ctx.FormString("page")
|
2021-08-11 02:31:13 +02:00
|
|
|
q := ctx.FormString("q")
|
2020-12-24 16:26:19 +01:00
|
|
|
|
2020-09-25 06:09:23 +02:00
|
|
|
dirSplit := strings.SplitN(dir, "/", 2)
|
|
|
|
if len(dirSplit) != 2 {
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/repos")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-20 16:08:52 +02:00
|
|
|
ctxUser, err := user_model.GetUserByName(ctx, dirSplit[0])
|
2020-09-25 06:09:23 +02:00
|
|
|
if err != nil {
|
2021-11-24 10:49:20 +01:00
|
|
|
if user_model.IsErrUserNotExist(err) {
|
2020-09-25 06:09:23 +02:00
|
|
|
log.Debug("User does not exist: %s", dirSplit[0])
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/repos")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.ServerError("GetUserByName", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
repoName := dirSplit[1]
|
|
|
|
|
|
|
|
// check not a repo
|
2023-04-28 20:14:26 +02:00
|
|
|
has, err := repo_model.IsRepositoryModelExist(ctx, ctxUser, repoName)
|
2020-11-28 03:42:08 +01:00
|
|
|
if err != nil {
|
2020-09-25 06:09:23 +02:00
|
|
|
ctx.ServerError("IsRepositoryExist", err)
|
|
|
|
return
|
2020-11-28 03:42:08 +01:00
|
|
|
}
|
2021-12-10 02:27:50 +01:00
|
|
|
isDir, err := util.IsDir(repo_model.RepoPath(ctxUser.Name, repoName))
|
2020-11-28 03:42:08 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("IsDir", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if has || !isDir {
|
2020-09-25 06:09:23 +02:00
|
|
|
// Fallthrough to failure mode
|
|
|
|
} else if action == "adopt" {
|
2023-09-06 14:08:51 +02:00
|
|
|
if _, err := repo_service.AdoptRepository(ctx, ctx.Doer, ctxUser, repo_service.CreateRepoOptions{
|
2020-09-25 06:09:23 +02:00
|
|
|
Name: dirSplit[1],
|
|
|
|
IsPrivate: true,
|
|
|
|
}); err != nil {
|
|
|
|
ctx.ServerError("repository.AdoptRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.adopt_preexisting_success", dir))
|
|
|
|
} else if action == "delete" {
|
2023-02-28 23:17:51 +01:00
|
|
|
if err := repo_service.DeleteUnadoptedRepository(ctx, ctx.Doer, ctxUser, dirSplit[1]); err != nil {
|
2020-09-25 06:09:23 +02:00
|
|
|
ctx.ServerError("repository.AdoptRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.delete_preexisting_success", dir))
|
|
|
|
}
|
2021-11-16 19:18:25 +01:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/repos/unadopted?search=true&q=" + url.QueryEscape(q) + "&page=" + url.QueryEscape(page))
|
2020-09-25 06:09:23 +02:00
|
|
|
}
|