summaryrefslogtreecommitdiffstats
path: root/routers/api/v1/repo/fork.go
blob: 25464dbd78b26e767659d1dc77c27ada616476c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Copyright 2016 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 repo

import (
	api "code.gitea.io/sdk/gitea"

	"code.gitea.io/gitea/models"
	"code.gitea.io/gitea/modules/context"
	"code.gitea.io/gitea/routers/api/v1/utils"
)

// ListForks list a repository's forks
func ListForks(ctx *context.APIContext) {
	// swagger:route GET /repos/{owner}/{repo}/forks listForks
	//
	//     Produces:
	//     - application/json
	//
	//     Responses:
	//       200: RepositoryList
	//       500: error

	forks, err := ctx.Repo.Repository.GetForks()
	if err != nil {
		ctx.Error(500, "GetForks", err)
		return
	}
	apiForks := make([]*api.Repository, len(forks))
	for i, fork := range forks {
		access, err := models.AccessLevel(utils.UserID(ctx), fork)
		if err != nil {
			ctx.Error(500, "AccessLevel", err)
			return
		}
		apiForks[i] = fork.APIFormat(access)
	}
	ctx.JSON(200, apiForks)
}

// CreateFork create a fork of a repo
func CreateFork(ctx *context.APIContext, form api.CreateForkOption) {
	// swagger:route POST /repos/{owner}/{repo}/forks createFork
	//
	//     Produces:
	//     - application/json
	//
	//     Responses:
	//       202: Repository
	//       403: forbidden
	//       422: validationError
	//       500: error

	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 {
			if models.IsErrOrgNotExist(err) {
				ctx.Error(422, "", err)
			} else {
				ctx.Error(500, "GetOrgByName", err)
			}
			return
		}
		if !org.IsOrgMember(ctx.User.ID) {
			ctx.Status(403)
			return
		}
		forker = org
	}
	fork, err := models.ForkRepository(forker, repo, repo.Name, repo.Description)
	if err != nil {
		ctx.Error(500, "ForkRepository", err)
		return
	}
	ctx.JSON(202, fork.APIFormat(models.AccessModeOwner))
}