2016-11-14 22:33:58 +00:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2020-01-24 19:00:29 +00:00
|
|
|
// Copyright 2020 The Gitea Authors.
|
2016-11-14 22:33:58 +00:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
2019-12-20 17:07:12 +00:00
|
|
|
"net/http"
|
|
|
|
|
2016-11-14 22:33:58 +00:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-08-23 16:40:30 +00:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2020-01-24 19:00:29 +00:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2016-11-14 22:33:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// getStarredRepos returns the repos that the user with the specified userID has
|
|
|
|
// starred
|
2020-01-24 19:00:29 +00:00
|
|
|
func getStarredRepos(user *models.User, private bool, listOptions models.ListOptions) ([]*api.Repository, error) {
|
|
|
|
starredRepos, err := models.GetStarredRepos(user.ID, private, listOptions)
|
2016-11-14 22:33:58 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-03-15 00:51:46 +00:00
|
|
|
|
2016-11-14 22:33:58 +00:00
|
|
|
repos := make([]*api.Repository, len(starredRepos))
|
|
|
|
for i, starred := range starredRepos {
|
2018-11-28 11:26:14 +00:00
|
|
|
access, err := models.AccessLevel(user, starred)
|
2016-12-05 23:48:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
repos[i] = starred.APIFormat(access)
|
2016-11-14 22:33:58 +00:00
|
|
|
}
|
|
|
|
return repos, nil
|
|
|
|
}
|
|
|
|
|
2017-11-13 07:02:25 +00:00
|
|
|
// GetStarredRepos returns the repos that the given user has starred
|
2016-11-14 22:33:58 +00:00
|
|
|
func GetStarredRepos(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation GET /users/{username}/starred user userListStarred
|
|
|
|
// ---
|
|
|
|
// summary: The repos that the given user has starred
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of user
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2020-01-24 19:00:29 +00:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 04:57:38 +00:00
|
|
|
// description: page size of results
|
2020-01-24 19:00:29 +00:00
|
|
|
// type: integer
|
2017-11-13 07:02:25 +00:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/RepositoryList"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2016-11-14 22:33:58 +00:00
|
|
|
user := GetUserByParams(ctx)
|
|
|
|
private := user.ID == ctx.User.ID
|
2020-01-24 19:00:29 +00:00
|
|
|
repos, err := getStarredRepos(user, private, utils.GetListOptions(ctx))
|
2016-11-14 22:33:58 +00:00
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "getStarredRepos", err)
|
2016-11-14 22:33:58 +00:00
|
|
|
}
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, &repos)
|
2016-11-14 22:33:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetMyStarredRepos returns the repos that the authenticated user has starred
|
|
|
|
func GetMyStarredRepos(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation GET /user/starred user userCurrentListStarred
|
|
|
|
// ---
|
|
|
|
// summary: The repos that the authenticated user has starred
|
2020-01-24 19:00:29 +00:00
|
|
|
// parameters:
|
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 04:57:38 +00:00
|
|
|
// description: page size of results
|
2020-01-24 19:00:29 +00:00
|
|
|
// type: integer
|
2017-11-13 07:02:25 +00:00
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/RepositoryList"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2020-01-24 19:00:29 +00:00
|
|
|
repos, err := getStarredRepos(ctx.User, true, utils.GetListOptions(ctx))
|
2016-11-14 22:33:58 +00:00
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "getStarredRepos", err)
|
2016-11-14 22:33:58 +00:00
|
|
|
}
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, &repos)
|
2016-11-14 22:33:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsStarring returns whether the authenticated is starring the repo
|
|
|
|
func IsStarring(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation GET /user/starred/{owner}/{repo} user userCurrentCheckStarring
|
|
|
|
// ---
|
|
|
|
// summary: Whether the authenticated is starring the repo
|
|
|
|
// 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:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2016-11-14 22:33:58 +00:00
|
|
|
if models.IsStaring(ctx.User.ID, ctx.Repo.Repository.ID) {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2016-11-14 22:33:58 +00:00
|
|
|
} else {
|
2019-03-19 02:29:43 +00:00
|
|
|
ctx.NotFound()
|
2016-11-14 22:33:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Star the repo specified in the APIContext, as the authenticated user
|
|
|
|
func Star(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation PUT /user/starred/{owner}/{repo} user userCurrentPutStar
|
|
|
|
// ---
|
|
|
|
// summary: Star the given repo
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo to star
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo to star
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2016-11-14 22:33:58 +00:00
|
|
|
err := models.StarRepo(ctx.User.ID, ctx.Repo.Repository.ID, true)
|
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "StarRepo", err)
|
2016-11-14 22:33:58 +00:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2016-11-14 22:33:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Unstar the repo specified in the APIContext, as the authenticated user
|
|
|
|
func Unstar(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation DELETE /user/starred/{owner}/{repo} user userCurrentDeleteStar
|
|
|
|
// ---
|
|
|
|
// summary: Unstar the given repo
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo to unstar
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo to unstar
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2016-11-14 22:33:58 +00:00
|
|
|
err := models.StarRepo(ctx.User.ID, ctx.Repo.Repository.ID, false)
|
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "StarRepo", err)
|
2016-11-14 22:33:58 +00:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2016-11-14 22:33:58 +00:00
|
|
|
}
|