mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 09:44:21 +00:00 
			
		
		
		
	API endpoint for stargazers (#597)
This commit is contained in:
		@@ -63,12 +63,12 @@ func IsStaring(userID, repoID int64) bool {
 | 
			
		||||
// GetStargazers returns the users that starred the repo.
 | 
			
		||||
func (repo *Repository) GetStargazers(page int) ([]*User, error) {
 | 
			
		||||
	users := make([]*User, 0, ItemsPerPage)
 | 
			
		||||
	err := x.
 | 
			
		||||
		Limit(ItemsPerPage, (page-1)*ItemsPerPage).
 | 
			
		||||
		Where("star.repo_id = ?", repo.ID).
 | 
			
		||||
		Join("LEFT", "star", "`user`.id = star.uid").
 | 
			
		||||
		Find(&users)
 | 
			
		||||
	return users, err
 | 
			
		||||
	sess := x.Where("star.repo_id = ?", repo.ID).
 | 
			
		||||
		Join("LEFT", "star", "`user`.id = star.uid")
 | 
			
		||||
	if page > 0 {
 | 
			
		||||
		sess = sess.Limit(ItemsPerPage, (page-1)*ItemsPerPage)
 | 
			
		||||
	}
 | 
			
		||||
	return users, sess.Find(&users)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetStarredRepos returns the repos the user starred.
 | 
			
		||||
 
 | 
			
		||||
@@ -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)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										25
									
								
								routers/api/v1/repo/star.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								routers/api/v1/repo/star.go
									
									
									
									
									
										Normal file
									
								
							@@ -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)
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user