Files

217 lines
5.8 KiB
Go
Raw Permalink Normal View History

2016-11-14 17:33:58 -05:00
// Copyright 2016 The Gogs Authors. All rights reserved.
2020-01-24 19:00:29 +00:00
// Copyright 2020 The Gitea Authors.
// SPDX-License-Identifier: MIT
2016-11-14 17:33:58 -05:00
package user
import (
2024-03-04 09:16:03 +01:00
"errors"
2019-12-20 18:07:12 +01:00
"net/http"
access_model "code.gitea.io/gitea/models/perm/access"
2021-12-12 23:48:20 +08:00
repo_model "code.gitea.io/gitea/models/repo"
user_model "code.gitea.io/gitea/models/user"
2019-08-23 09:40:30 -07:00
api "code.gitea.io/gitea/modules/structs"
2020-01-24 19:00:29 +00:00
"code.gitea.io/gitea/routers/api/v1/utils"
"code.gitea.io/gitea/services/context"
2022-12-29 03:57:15 +01:00
"code.gitea.io/gitea/services/convert"
2016-11-14 17:33:58 -05:00
)
// getStarredRepos returns the repos that the user with the specified userID has
// starred
2024-03-04 09:16:03 +01:00
func getStarredRepos(ctx *context.APIContext, user *user_model.User, private bool) ([]*api.Repository, error) {
opts := &repo_model.StarredReposOptions{
2024-03-04 09:16:03 +01:00
ListOptions: utils.GetListOptions(ctx),
StarrerID: user.ID,
IncludePrivate: private,
}
opts.ApplyPublicOnly(ctx.PublicOnly)
starredRepos, err := repo_model.GetStarredRepos(ctx, opts)
2016-11-14 17:33:58 -05:00
if err != nil {
return nil, err
}
2017-03-14 20:51:46 -04:00
2016-11-14 17:33:58 -05:00
repos := make([]*api.Repository, len(starredRepos))
for i, starred := range starredRepos {
permission, err := access_model.GetIndividualUserRepoPermission(ctx, starred, user)
2016-12-05 18:48:51 -05:00
if err != nil {
return nil, err
}
repos[i] = convert.ToRepo(ctx, starred, permission)
2016-11-14 17:33:58 -05:00
}
return repos, nil
}
2017-11-12 23:02:25 -08:00
// GetStarredRepos returns the repos that the given user has starred
2016-11-14 17:33:58 -05:00
func GetStarredRepos(ctx *context.APIContext) {
2017-11-12 23:02:25 -08: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 the user whose starred repos are to be listed
2017-11-12 23:02:25 -08:00
// 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
// description: page size of results
2020-01-24 19:00:29 +00:00
// type: integer
2017-11-12 23:02:25 -08:00
// responses:
// "200":
// "$ref": "#/responses/RepositoryList"
// "404":
// "$ref": "#/responses/notFound"
// "403":
// "$ref": "#/responses/forbidden"
2019-12-20 18:07:12 +01:00
private := ctx.ContextUser.ID == ctx.Doer.ID
2024-03-04 09:16:03 +01:00
repos, err := getStarredRepos(ctx, ctx.ContextUser, private)
2016-11-14 17:33:58 -05:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
return
2016-11-14 17:33:58 -05:00
}
2026-03-08 15:35:50 +01:00
ctx.SetLinkHeader(int64(ctx.ContextUser.NumStars), utils.GetListOptions(ctx).PageSize)
ctx.SetTotalCountHeader(int64(ctx.ContextUser.NumStars))
2019-12-20 18:07:12 +01:00
ctx.JSON(http.StatusOK, &repos)
2016-11-14 17:33:58 -05:00
}
// GetMyStarredRepos returns the repos that the authenticated user has starred
func GetMyStarredRepos(ctx *context.APIContext) {
2017-11-12 23:02:25 -08: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
// description: page size of results
2020-01-24 19:00:29 +00:00
// type: integer
2017-11-12 23:02:25 -08:00
// produces:
// - application/json
// responses:
// "200":
// "$ref": "#/responses/RepositoryList"
// "403":
// "$ref": "#/responses/forbidden"
2019-12-20 18:07:12 +01:00
2024-03-04 09:16:03 +01:00
repos, err := getStarredRepos(ctx, ctx.Doer, true)
2016-11-14 17:33:58 -05:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2016-11-14 17:33:58 -05:00
}
2021-08-12 14:43:08 +02:00
2026-03-08 15:35:50 +01:00
ctx.SetLinkHeader(int64(ctx.Doer.NumStars), utils.GetListOptions(ctx).PageSize)
2022-03-22 08:03:22 +01:00
ctx.SetTotalCountHeader(int64(ctx.Doer.NumStars))
2019-12-20 18:07:12 +01:00
ctx.JSON(http.StatusOK, &repos)
2016-11-14 17:33:58 -05:00
}
// IsStarring returns whether the authenticated is starring the repo
func IsStarring(ctx *context.APIContext) {
2017-11-12 23:02:25 -08: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"
// "403":
// "$ref": "#/responses/forbidden"
2019-12-20 18:07:12 +01:00
if repo_model.IsStaring(ctx, ctx.Doer.ID, ctx.Repo.Repository.ID) {
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusNoContent)
2016-11-14 17:33:58 -05:00
} else {
2025-02-17 14:13:17 +08:00
ctx.APIErrorNotFound()
2016-11-14 17:33:58 -05:00
}
}
// Star the repo specified in the APIContext, as the authenticated user
func Star(ctx *context.APIContext) {
2017-11-12 23:02:25 -08: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"
2024-03-04 09:16:03 +01:00
// "403":
// "$ref": "#/responses/forbidden"
// "404":
// "$ref": "#/responses/notFound"
2019-12-20 18:07:12 +01:00
2024-03-04 09:16:03 +01:00
err := repo_model.StarRepo(ctx, ctx.Doer, ctx.Repo.Repository, true)
2016-11-14 17:33:58 -05:00
if err != nil {
2024-03-04 09:16:03 +01:00
if errors.Is(err, user_model.ErrBlockedUser) {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusForbidden, err)
2024-03-04 09:16:03 +01:00
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2024-03-04 09:16:03 +01:00
}
2016-11-14 17:33:58 -05:00
return
}
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusNoContent)
2016-11-14 17:33:58 -05:00
}
// Unstar the repo specified in the APIContext, as the authenticated user
func Unstar(ctx *context.APIContext) {
2017-11-12 23:02:25 -08: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"
// "404":
// "$ref": "#/responses/notFound"
// "403":
// "$ref": "#/responses/forbidden"
2019-12-20 18:07:12 +01:00
2024-03-04 09:16:03 +01:00
err := repo_model.StarRepo(ctx, ctx.Doer, ctx.Repo.Repository, false)
2016-11-14 17:33:58 -05:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2016-11-14 17:33:58 -05:00
return
}
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusNoContent)
2016-11-14 17:33:58 -05:00
}