diff options
author | Ethan Koenig <etk39@cornell.edu> | 2016-12-30 20:15:45 -0500 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2016-12-31 09:15:45 +0800 |
commit | b75450ad361bd7c468af5a01f42d203010206f62 (patch) | |
tree | 41dd186977e6d4cedc8935aaa152563d07df6e06 /routers | |
parent | 527c2dd6651bc7beed12acd48b22ac69c0bf337e (diff) | |
download | gitea-b75450ad361bd7c468af5a01f42d203010206f62.tar.gz gitea-b75450ad361bd7c468af5a01f42d203010206f62.zip |
API endpoints for forks (#509)
Diffstat (limited to 'routers')
-rw-r--r-- | routers/api/v1/api.go | 2 | ||||
-rw-r--r-- | routers/api/v1/repo/fork.go | 61 |
2 files changed, 63 insertions, 0 deletions
diff --git a/routers/api/v1/api.go b/routers/api/v1/api.go index 547dbceb4e..46695c79e9 100644 --- a/routers/api/v1/api.go +++ b/routers/api/v1/api.go @@ -276,6 +276,8 @@ func RegisterRoutes(m *macaron.Macaron) { }) m.Get("/raw/*", context.RepoRef(), repo.GetRawFile) m.Get("/archive/*", repo.GetArchive) + m.Combo("/forks").Get(repo.ListForks). + Post(bind(api.CreateForkOption{}), repo.CreateFork) m.Group("/branches", func() { m.Get("", repo.ListBranches) m.Get("/:branchname", repo.GetBranch) diff --git a/routers/api/v1/repo/fork.go b/routers/api/v1/repo/fork.go new file mode 100644 index 0000000000..e8f57ace74 --- /dev/null +++ b/routers/api/v1/repo/fork.go @@ -0,0 +1,61 @@ +// 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" +) + +// ListForks list a repository's forks +func ListForks(ctx *context.APIContext) { + 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(ctx.User, 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) { + 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 err == models.ErrOrgNotExist { + 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)) +} |