diff options
Diffstat (limited to 'routers/api')
-rw-r--r-- | routers/api/v1/api.go | 1 | ||||
-rw-r--r-- | routers/api/v1/repo/star.go | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/routers/api/v1/api.go b/routers/api/v1/api.go index c35f9afa6f..cc773150e6 100644 --- a/routers/api/v1/api.go +++ b/routers/api/v1/api.go @@ -326,6 +326,7 @@ func RegisterRoutes(m *macaron.Macaron) { Patch(reqRepoWriter(), bind(api.EditMilestoneOption{}), repo.EditMilestone). Delete(reqRepoWriter(), repo.DeleteMilestone) }) + m.Get("/stargazers", repo.ListStargazers) m.Group("/subscription", func() { m.Get("", user.IsWatching) m.Put("", user.Watch) diff --git a/routers/api/v1/repo/star.go b/routers/api/v1/repo/star.go new file mode 100644 index 0000000000..20e7e4e508 --- /dev/null +++ b/routers/api/v1/repo/star.go @@ -0,0 +1,25 @@ +// Copyright 2017 The Gitea 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/modules/context" +) + +// ListStargazers list a repository's stargazers +func ListStargazers(ctx *context.APIContext) { + stargazers, err := ctx.Repo.Repository.GetStargazers(-1) + if err != nil { + ctx.Error(500, "GetStargazers", err) + return + } + users := make([]*api.User, len(stargazers)) + for i, stargazer := range stargazers { + users[i] = stargazer.APIFormat() + } + ctx.JSON(200, users) +} |