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