2016-12-31 01:15:45 +00:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2020-01-24 19:00:29 +00:00
|
|
|
// Copyright 2020 The Gitea Authors.
|
2016-12-31 01:15:45 +00:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2019-12-20 17:07:12 +00:00
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
2016-12-31 01:15:45 +00:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2020-12-02 21:38:30 +00:00
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2019-05-11 10:21:34 +00:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 15:36:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2020-01-24 19:00:29 +00:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2019-10-26 06:54:11 +00:00
|
|
|
repo_service "code.gitea.io/gitea/services/repository"
|
2016-12-31 01:15:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ListForks list a repository's forks
|
|
|
|
func ListForks(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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 19:00:29 +00:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 04:57:38 +00:00
|
|
|
// description: page size of results
|
2020-01-24 19:00:29 +00:00
|
|
|
// type: integer
|
2017-11-13 07:02:25 +00:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/RepositoryList"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2020-01-24 19:00:29 +00:00
|
|
|
forks, err := ctx.Repo.Repository.GetForks(utils.GetListOptions(ctx))
|
2016-12-31 01:15:45 +00:00
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetForks", err)
|
2016-12-31 01:15:45 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
apiForks := make([]*api.Repository, len(forks))
|
|
|
|
for i, fork := range forks {
|
2018-11-28 11:26:14 +00:00
|
|
|
access, err := models.AccessLevel(ctx.User, fork)
|
2016-12-31 01:15:45 +00:00
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "AccessLevel", err)
|
2016-12-31 01:15:45 +00:00
|
|
|
return
|
|
|
|
}
|
2020-12-02 21:38:30 +00:00
|
|
|
apiForks[i] = convert.ToRepo(fork, access)
|
2016-12-31 01:15:45 +00:00
|
|
|
}
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, apiForks)
|
2016-12-31 01:15:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateFork create a fork of a repo
|
2021-01-26 15:36:53 +00:00
|
|
|
func CreateFork(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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 17:07:12 +00:00
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
|
|
|
|
2021-01-26 15:36:53 +00:00
|
|
|
form := web.GetForm(ctx).(*api.CreateForkOption)
|
2016-12-31 01:15:45 +00:00
|
|
|
repo := ctx.Repo.Repository
|
|
|
|
var forker *models.User // user/org that will own the fork
|
|
|
|
if form.Organization == nil {
|
|
|
|
forker = ctx.User
|
|
|
|
} else {
|
|
|
|
org, err := models.GetOrgByName(*form.Organization)
|
|
|
|
if err != nil {
|
2017-07-06 13:30:19 +00:00
|
|
|
if models.IsErrOrgNotExist(err) {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
2016-12-31 01:15:45 +00:00
|
|
|
} else {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetOrgByName", err)
|
2016-12-31 01:15:45 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2017-12-21 07:43:26 +00:00
|
|
|
isMember, err := org.IsOrgMember(ctx.User.ID)
|
|
|
|
if err != nil {
|
2020-09-20 20:20:14 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "IsOrgMember", err)
|
2017-12-21 07:43:26 +00:00
|
|
|
return
|
|
|
|
} else if !isMember {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusForbidden, "isMemberNot", fmt.Sprintf("User is no Member of Organisation '%s'", org.Name))
|
2016-12-31 01:15:45 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
forker = org
|
|
|
|
}
|
2019-10-26 06:54:11 +00:00
|
|
|
|
|
|
|
fork, err := repo_service.ForkRepository(ctx.User, forker, repo, repo.Name, repo.Description)
|
2016-12-31 01:15:45 +00:00
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "ForkRepository", err)
|
2016-12-31 01:15:45 +00:00
|
|
|
return
|
|
|
|
}
|
2019-10-26 06:54:11 +00:00
|
|
|
|
2019-12-20 17:07:12 +00:00
|
|
|
//TODO change back to 201
|
2020-12-02 21:38:30 +00:00
|
|
|
ctx.JSON(http.StatusAccepted, convert.ToRepo(fork, models.AccessModeOwner))
|
2016-12-31 01:15:45 +00:00
|
|
|
}
|