2016-12-30 20:15:45 -05:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2020-01-24 14:00:29 -05:00
|
|
|
// Copyright 2020 The Gitea Authors.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-12-30 20:15:45 -05:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2023-05-22 06:21:46 -04:00
|
|
|
"errors"
|
2019-12-20 12:07:12 -05:00
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
2022-03-29 02:29:02 -04:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2021-11-28 06:58:28 -05:00
|
|
|
"code.gitea.io/gitea/models/perm"
|
2022-05-11 06:09:36 -04:00
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2021-12-12 10:48:20 -05:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 04:49:20 -05:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2019-05-11 06:21:34 -04:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2023-05-22 06:21:46 -04:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-01-26 10:36:53 -05:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2020-01-24 14:00:29 -05:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2024-02-27 02:12:22 -05:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2022-12-28 21:57:15 -05:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2019-10-26 02:54:11 -04:00
|
|
|
repo_service "code.gitea.io/gitea/services/repository"
|
2016-12-30 20:15:45 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// ListForks list a repository's forks
|
|
|
|
func ListForks(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/forks repository listForks
|
|
|
|
// ---
|
|
|
|
// summary: List a repository's forks
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2020-01-24 14:00:29 -05:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 00:57:38 -04:00
|
|
|
// description: page size of results
|
2020-01-24 14:00:29 -05:00
|
|
|
// type: integer
|
2017-11-13 02:02:25 -05:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/RepositoryList"
|
2023-09-12 22:37:54 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2023-09-14 13:09:32 -04:00
|
|
|
forks, err := repo_model.GetForks(ctx, ctx.Repo.Repository, utils.GetListOptions(ctx))
|
2016-12-30 20:15:45 -05:00
|
|
|
if err != nil {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetForks", err)
|
2016-12-30 20:15:45 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
apiForks := make([]*api.Repository, len(forks))
|
|
|
|
for i, fork := range forks {
|
2023-06-22 09:08:08 -04:00
|
|
|
permission, err := access_model.GetUserRepoPermission(ctx, fork, ctx.Doer)
|
2016-12-30 20:15:45 -05:00
|
|
|
if err != nil {
|
2023-06-22 09:08:08 -04:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetUserRepoPermission", err)
|
2016-12-30 20:15:45 -05:00
|
|
|
return
|
|
|
|
}
|
2023-06-22 09:08:08 -04:00
|
|
|
apiForks[i] = convert.ToRepo(ctx, fork, permission)
|
2016-12-30 20:15:45 -05:00
|
|
|
}
|
2021-08-12 08:43:08 -04:00
|
|
|
|
|
|
|
ctx.SetTotalCountHeader(int64(ctx.Repo.Repository.NumForks))
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.JSON(http.StatusOK, apiForks)
|
2016-12-30 20:15:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateFork create a fork of a repo
|
2021-01-26 10:36:53 -05:00
|
|
|
func CreateFork(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:operation POST /repos/{owner}/{repo}/forks repository createFork
|
|
|
|
// ---
|
|
|
|
// summary: Fork a repository
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo to fork
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo to fork
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/CreateForkOption"
|
|
|
|
// responses:
|
|
|
|
// "202":
|
|
|
|
// "$ref": "#/responses/Repository"
|
2019-12-20 12:07:12 -05:00
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
2023-09-12 22:37:54 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2021-12-24 09:43:00 -05:00
|
|
|
// "409":
|
|
|
|
// description: The repository with the same name already exists.
|
2019-12-20 12:07:12 -05:00
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
|
|
|
|
2021-01-26 10:36:53 -05:00
|
|
|
form := web.GetForm(ctx).(*api.CreateForkOption)
|
2016-12-30 20:15:45 -05:00
|
|
|
repo := ctx.Repo.Repository
|
2021-11-24 04:49:20 -05:00
|
|
|
var forker *user_model.User // user/org that will own the fork
|
2016-12-30 20:15:45 -05:00
|
|
|
if form.Organization == nil {
|
2022-03-22 03:03:22 -04:00
|
|
|
forker = ctx.Doer
|
2016-12-30 20:15:45 -05:00
|
|
|
} else {
|
2023-02-08 01:44:42 -05:00
|
|
|
org, err := organization.GetOrgByName(ctx, *form.Organization)
|
2016-12-30 20:15:45 -05:00
|
|
|
if err != nil {
|
2022-03-29 02:29:02 -04:00
|
|
|
if organization.IsErrOrgNotExist(err) {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
2016-12-30 20:15:45 -05:00
|
|
|
} else {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetOrgByName", err)
|
2016-12-30 20:15:45 -05:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2023-10-03 06:30:41 -04:00
|
|
|
isMember, err := org.IsOrgMember(ctx, ctx.Doer.ID)
|
2017-12-21 02:43:26 -05:00
|
|
|
if err != nil {
|
2020-09-20 16:20:14 -04:00
|
|
|
ctx.Error(http.StatusInternalServerError, "IsOrgMember", err)
|
2017-12-21 02:43:26 -05:00
|
|
|
return
|
|
|
|
} else if !isMember {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusForbidden, "isMemberNot", fmt.Sprintf("User is no Member of Organisation '%s'", org.Name))
|
2016-12-30 20:15:45 -05:00
|
|
|
return
|
|
|
|
}
|
2021-11-19 06:41:40 -05:00
|
|
|
forker = org.AsUser()
|
2016-12-30 20:15:45 -05:00
|
|
|
}
|
2019-10-26 02:54:11 -04:00
|
|
|
|
2021-12-24 09:43:00 -05:00
|
|
|
var name string
|
|
|
|
if form.Name == nil {
|
|
|
|
name = repo.Name
|
|
|
|
} else {
|
|
|
|
name = *form.Name
|
|
|
|
}
|
|
|
|
|
2022-03-29 15:13:41 -04:00
|
|
|
fork, err := repo_service.ForkRepository(ctx, ctx.Doer, forker, repo_service.ForkRepoOptions{
|
2021-08-28 04:37:14 -04:00
|
|
|
BaseRepo: repo,
|
2021-12-24 09:43:00 -05:00
|
|
|
Name: name,
|
2021-08-28 04:37:14 -04:00
|
|
|
Description: repo.Description,
|
|
|
|
})
|
2016-12-30 20:15:45 -05:00
|
|
|
if err != nil {
|
2023-05-22 06:21:46 -04:00
|
|
|
if errors.Is(err, util.ErrAlreadyExist) || repo_model.IsErrReachLimitOfRepo(err) {
|
2021-12-24 09:43:00 -05:00
|
|
|
ctx.Error(http.StatusConflict, "ForkRepository", err)
|
|
|
|
} else {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "ForkRepository", err)
|
|
|
|
}
|
2016-12-30 20:15:45 -05:00
|
|
|
return
|
|
|
|
}
|
2019-10-26 02:54:11 -04:00
|
|
|
|
2022-01-20 12:46:10 -05:00
|
|
|
// TODO change back to 201
|
2023-06-22 09:08:08 -04:00
|
|
|
ctx.JSON(http.StatusAccepted, convert.ToRepo(ctx, fork, access_model.Permission{AccessMode: perm.AccessModeOwner}))
|
2016-12-30 20:15:45 -05:00
|
|
|
}
|