mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
2289580bb7
* Add info about list endpoints to CONTRIBUTING.md * Let all list endpoints return X-Total-Count header * Add TODOs for GetCombinedCommitStatusByRef * Fix models/issue_stopwatch.go * Rrefactor models.ListDeployKeys * Introduce helper func and use them for SetLinkHeader related func
59 lines
1.5 KiB
Go
59 lines
1.5 KiB
Go
// 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 (
|
|
"net/http"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
"code.gitea.io/gitea/modules/convert"
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
|
)
|
|
|
|
// ListSubscribers list a repo's subscribers (i.e. watchers)
|
|
func ListSubscribers(ctx *context.APIContext) {
|
|
// swagger:operation GET /repos/{owner}/{repo}/subscribers repository repoListSubscribers
|
|
// ---
|
|
// summary: List a repo's watchers
|
|
// 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
|
|
// - name: page
|
|
// in: query
|
|
// description: page number of results to return (1-based)
|
|
// type: integer
|
|
// - name: limit
|
|
// in: query
|
|
// description: page size of results
|
|
// type: integer
|
|
// responses:
|
|
// "200":
|
|
// "$ref": "#/responses/UserList"
|
|
|
|
subscribers, err := ctx.Repo.Repository.GetWatchers(utils.GetListOptions(ctx))
|
|
if err != nil {
|
|
ctx.Error(http.StatusInternalServerError, "GetWatchers", err)
|
|
return
|
|
}
|
|
users := make([]*api.User, len(subscribers))
|
|
for i, subscriber := range subscribers {
|
|
users[i] = convert.ToUser(subscriber, ctx.User)
|
|
}
|
|
|
|
ctx.SetTotalCountHeader(int64(ctx.Repo.Repository.NumWatches))
|
|
ctx.JSON(http.StatusOK, users)
|
|
}
|