mirror of
https://github.com/go-gitea/gitea
synced 2024-11-04 21:29:12 +01:00
2848c5eb8f
* use numbers and not http.Status___ enum
* fix test
* add many missing swagger responses
* code format
* Deletion Sould return 204 ...
* error handling improvements
* if special error type ... then add it to swagger too
* one smal nit
* invalidTopicsError is []string
* valid swagger specification 2.0
- if you add responses swagger can tell you if you do it right 👍
* use ctx.InternalServerError
* Revert "use numbers and not http.Status___ enum"
This reverts commit b1ff386e24
.
* use http.Status* enum everywhere
47 lines
1.2 KiB
Go
47 lines
1.2 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"
|
|
)
|
|
|
|
// 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
|
|
// responses:
|
|
// "200":
|
|
// "$ref": "#/responses/UserList"
|
|
|
|
subscribers, err := ctx.Repo.Repository.GetWatchers(0)
|
|
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.IsSigned, ctx.User != nil && ctx.User.IsAdmin)
|
|
}
|
|
ctx.JSON(http.StatusOK, users)
|
|
}
|