aboutsummaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorEthan Koenig <etk39@cornell.edu>2017-01-06 02:05:09 -0500
committerLunny Xiao <xiaolunwen@gmail.com>2017-01-06 15:05:09 +0800
commit1a7fc53c98f06f79955d217f91c8a5553e5a27b3 (patch)
tree76d684ec41ce8077b7bb396ec0d84b2034d332b9 /routers
parent61306fa737f693c3b325d9a8da047ba0b939537e (diff)
downloadgitea-1a7fc53c98f06f79955d217f91c8a5553e5a27b3.tar.gz
gitea-1a7fc53c98f06f79955d217f91c8a5553e5a27b3.zip
API endpoint for stargazers (#597)
Diffstat (limited to 'routers')
-rw-r--r--routers/api/v1/api.go1
-rw-r--r--routers/api/v1/repo/star.go25
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)
+}