2017-01-06 12:35:09 +05:30
|
|
|
// 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 (
|
2019-12-20 22:37:12 +05:30
|
|
|
"net/http"
|
|
|
|
|
2017-01-06 12:35:09 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-11-10 10:11:51 +05:30
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2019-05-11 15:51:34 +05:30
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2020-01-25 00:30:29 +05:30
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2017-01-06 12:35:09 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// ListStargazers list a repository's stargazers
|
|
|
|
func ListStargazers(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/stargazers repository repoListStargazers
|
|
|
|
// ---
|
|
|
|
// summary: List a repo's stargazers
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2020-01-25 00:30:29 +05:30
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 10:27:38 +05:30
|
|
|
// description: page size of results
|
2020-01-25 00:30:29 +05:30
|
|
|
// type: integer
|
2017-11-13 12:32:25 +05:30
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/UserList"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2020-01-25 00:30:29 +05:30
|
|
|
stargazers, err := ctx.Repo.Repository.GetStargazers(utils.GetListOptions(ctx))
|
2017-01-06 12:35:09 +05:30
|
|
|
if err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetStargazers", err)
|
2017-01-06 12:35:09 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
users := make([]*api.User, len(stargazers))
|
|
|
|
for i, stargazer := range stargazers {
|
2021-03-27 22:15:26 +05:30
|
|
|
users[i] = convert.ToUser(stargazer, ctx.User)
|
2017-01-06 12:35:09 +05:30
|
|
|
}
|
2021-08-12 18:13:08 +05:30
|
|
|
|
|
|
|
ctx.SetTotalCountHeader(int64(ctx.Repo.Repository.NumStars))
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.JSON(http.StatusOK, users)
|
2017-01-06 12:35:09 +05:30
|
|
|
}
|