Files

225 lines
6.3 KiB
Go
Raw Permalink Normal View History

2016-12-23 20:53:11 -05:00
// Copyright 2016 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2016-12-23 20:53:11 -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"
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-12-23 20:53:11 -05:00
)
2021-08-12 14:43:08 +02:00
// getWatchedRepos returns the repos that the user with the specified userID is watching
2024-03-04 09:16:03 +01:00
func getWatchedRepos(ctx *context.APIContext, user *user_model.User, private bool) ([]*api.Repository, int64, error) {
opts := &repo_model.WatchedReposOptions{
2024-03-04 09:16:03 +01:00
ListOptions: utils.GetListOptions(ctx),
WatcherID: user.ID,
IncludePrivate: private,
}
opts.ApplyPublicOnly(ctx.PublicOnly)
watchedRepos, total, err := repo_model.GetWatchedRepos(ctx, opts)
2016-12-23 20:53:11 -05:00
if err != nil {
2021-08-12 14:43:08 +02:00
return nil, 0, err
2016-12-23 20:53:11 -05:00
}
repos := make([]*api.Repository, len(watchedRepos))
for i, watched := range watchedRepos {
permission, err := access_model.GetIndividualUserRepoPermission(ctx, watched, user)
2016-12-23 20:53:11 -05:00
if err != nil {
2021-08-12 14:43:08 +02:00
return nil, 0, err
2016-12-23 20:53:11 -05:00
}
repos[i] = convert.ToRepo(ctx, watched, permission)
2016-12-23 20:53:11 -05:00
}
2021-08-12 14:43:08 +02:00
return repos, total, nil
2016-12-23 20:53:11 -05:00
}
// GetWatchedRepos returns the repos that the user specified in ctx is watching
func GetWatchedRepos(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation GET /users/{username}/subscriptions user userListSubscriptions
// ---
// summary: List the repositories watched by a user
// produces:
// - application/json
// parameters:
// - name: username
// type: string
// in: path
// description: username of the user whose watched repos are to be listed
// 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"
2019-12-20 18:07:12 +01:00
private := ctx.ContextUser.ID == ctx.Doer.ID
2024-03-04 09:16:03 +01:00
repos, total, err := getWatchedRepos(ctx, ctx.ContextUser, private)
2016-12-23 20:53:11 -05:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2016-12-23 20:53:11 -05:00
}
2021-08-12 14:43:08 +02:00
2026-03-08 15:35:50 +01:00
ctx.SetLinkHeader(total, utils.GetListOptions(ctx).PageSize)
2021-08-12 14:43:08 +02:00
ctx.SetTotalCountHeader(total)
2019-12-20 18:07:12 +01:00
ctx.JSON(http.StatusOK, &repos)
2016-12-23 20:53:11 -05:00
}
// GetMyWatchedRepos returns the repos that the authenticated user is watching
func GetMyWatchedRepos(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation GET /user/subscriptions user userCurrentListSubscriptions
// ---
// summary: List repositories watched by the authenticated user
// produces:
// - application/json
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
// responses:
// "200":
// "$ref": "#/responses/RepositoryList"
2019-12-20 18:07:12 +01:00
2024-03-04 09:16:03 +01:00
repos, total, err := getWatchedRepos(ctx, ctx.Doer, true)
2016-12-23 20:53:11 -05:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2016-12-23 20:53:11 -05:00
}
2026-03-08 15:35:50 +01:00
ctx.SetLinkHeader(total, utils.GetListOptions(ctx).PageSize)
2021-08-12 14:43:08 +02:00
ctx.SetTotalCountHeader(total)
2019-12-20 18:07:12 +01:00
ctx.JSON(http.StatusOK, &repos)
2016-12-23 20:53:11 -05:00
}
// IsWatching returns whether the authenticated user is watching the repo
// specified in ctx
func IsWatching(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation GET /repos/{owner}/{repo}/subscription repository userCurrentCheckSubscription
// ---
// summary: Check if the current user is watching a 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:
// "200":
// "$ref": "#/responses/WatchInfo"
2020-04-15 15:03:05 +02:00
// "404":
// description: User is not watching this repo or repo do not exist
2019-12-20 18:07:12 +01:00
if repo_model.IsWatching(ctx, ctx.Doer.ID, ctx.Repo.Repository.ID) {
2019-12-20 18:07:12 +01:00
ctx.JSON(http.StatusOK, api.WatchInfo{
2016-12-23 20:53:11 -05:00
Subscribed: true,
Ignored: false,
Reason: nil,
CreatedAt: ctx.Repo.Repository.CreatedUnix.AsTime(),
2016-12-23 20:53:11 -05:00
URL: subscriptionURL(ctx.Repo.Repository),
RepositoryURL: ctx.Repo.Repository.APIURL(),
2016-12-23 20:53:11 -05:00
})
} else {
2025-02-17 14:13:17 +08:00
ctx.APIErrorNotFound()
2016-12-23 20:53:11 -05:00
}
}
// Watch the repo specified in ctx, as the authenticated user
func Watch(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation PUT /repos/{owner}/{repo}/subscription repository userCurrentPutSubscription
// ---
// summary: Watch a 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:
// "200":
// "$ref": "#/responses/WatchInfo"
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.WatchRepo(ctx, ctx.Doer, ctx.Repo.Repository, true)
2016-12-23 20:53:11 -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-12-23 20:53:11 -05:00
return
}
2019-12-20 18:07:12 +01:00
ctx.JSON(http.StatusOK, api.WatchInfo{
2016-12-23 20:53:11 -05:00
Subscribed: true,
Ignored: false,
Reason: nil,
CreatedAt: ctx.Repo.Repository.CreatedUnix.AsTime(),
2016-12-23 20:53:11 -05:00
URL: subscriptionURL(ctx.Repo.Repository),
RepositoryURL: ctx.Repo.Repository.APIURL(),
2016-12-23 20:53:11 -05:00
})
}
// Unwatch the repo specified in ctx, as the authenticated user
func Unwatch(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation DELETE /repos/{owner}/{repo}/subscription repository userCurrentDeleteSubscription
// ---
// summary: Unwatch a 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 18:07:12 +01:00
2024-03-04 09:16:03 +01:00
err := repo_model.WatchRepo(ctx, ctx.Doer, ctx.Repo.Repository, false)
2016-12-23 20:53:11 -05:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2016-12-23 20:53:11 -05:00
return
}
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusNoContent)
2016-12-23 20:53:11 -05:00
}
// subscriptionURL returns the URL of the subscription API endpoint of a repo
func subscriptionURL(repo *repo_model.Repository) string {
return repo.APIURL() + "/subscription"
2016-12-23 20:53:11 -05:00
}