2016-12-24 01:53:11 +00:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-12-24 01:53:11 +00:00
|
|
|
|
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
2022-11-19 08:12:33 +00:00
|
|
|
std_context "context"
|
2019-12-20 17:07:12 +00:00
|
|
|
"net/http"
|
|
|
|
|
2021-09-24 11:32:56 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-05-11 10:09:36 +00:00
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2021-12-10 01:27:50 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-12-24 01:53:11 +00:00
|
|
|
"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"
|
2022-12-29 02:57:15 +00:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2016-12-24 01:53:11 +00:00
|
|
|
)
|
|
|
|
|
2021-08-12 12:43:08 +00:00
|
|
|
// getWatchedRepos returns the repos that the user with the specified userID is watching
|
2022-11-19 08:12:33 +00:00
|
|
|
func getWatchedRepos(ctx std_context.Context, user *user_model.User, private bool, listOptions db.ListOptions) ([]*api.Repository, int64, error) {
|
|
|
|
watchedRepos, total, err := repo_model.GetWatchedRepos(ctx, user.ID, private, listOptions)
|
2016-12-24 01:53:11 +00:00
|
|
|
if err != nil {
|
2021-08-12 12:43:08 +00:00
|
|
|
return nil, 0, err
|
2016-12-24 01:53:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repos := make([]*api.Repository, len(watchedRepos))
|
|
|
|
for i, watched := range watchedRepos {
|
2023-06-22 15:01:42 +00:00
|
|
|
permission, err := access_model.GetUserRepoPermission(ctx, watched, user)
|
2016-12-24 01:53:11 +00:00
|
|
|
if err != nil {
|
2021-08-12 12:43:08 +00:00
|
|
|
return nil, 0, err
|
2016-12-24 01:53:11 +00:00
|
|
|
}
|
2023-06-22 15:01:42 +00:00
|
|
|
repos[i] = convert.ToRepo(ctx, watched, permission)
|
2016-12-24 01:53:11 +00:00
|
|
|
}
|
2021-08-12 12:43:08 +00:00
|
|
|
return repos, total, nil
|
2016-12-24 01:53:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetWatchedRepos returns the repos that the user specified in ctx is watching
|
|
|
|
func GetWatchedRepos(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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
|
2018-06-02 15:20:28 +00:00
|
|
|
// 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
|
|
|
|
2022-03-26 09:04:22 +00:00
|
|
|
private := ctx.ContextUser.ID == ctx.Doer.ID
|
2022-11-19 08:12:33 +00:00
|
|
|
repos, total, err := getWatchedRepos(ctx, ctx.ContextUser, private, utils.GetListOptions(ctx))
|
2016-12-24 01:53:11 +00:00
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "getWatchedRepos", err)
|
2016-12-24 01:53:11 +00:00
|
|
|
}
|
2021-08-12 12:43:08 +00:00
|
|
|
|
|
|
|
ctx.SetTotalCountHeader(total)
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, &repos)
|
2016-12-24 01:53:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetMyWatchedRepos returns the repos that the authenticated user is watching
|
|
|
|
func GetMyWatchedRepos(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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
|
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
|
|
|
|
2022-11-19 08:12:33 +00:00
|
|
|
repos, total, err := getWatchedRepos(ctx, ctx.Doer, true, utils.GetListOptions(ctx))
|
2016-12-24 01:53:11 +00:00
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "getWatchedRepos", err)
|
2016-12-24 01:53:11 +00:00
|
|
|
}
|
2021-08-12 12:43:08 +00:00
|
|
|
|
|
|
|
ctx.SetTotalCountHeader(total)
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, &repos)
|
2016-12-24 01:53:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsWatching returns whether the authenticated user is watching the repo
|
|
|
|
// specified in ctx
|
|
|
|
func IsWatching(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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 13:03:05 +00:00
|
|
|
// "404":
|
|
|
|
// description: User is not watching this repo or repo do not exist
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2022-03-22 07:03:22 +00:00
|
|
|
if repo_model.IsWatching(ctx.Doer.ID, ctx.Repo.Repository.ID) {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, api.WatchInfo{
|
2016-12-24 01:53:11 +00:00
|
|
|
Subscribed: true,
|
|
|
|
Ignored: false,
|
|
|
|
Reason: nil,
|
2017-12-11 04:37:04 +00:00
|
|
|
CreatedAt: ctx.Repo.Repository.CreatedUnix.AsTime(),
|
2016-12-24 01:53:11 +00:00
|
|
|
URL: subscriptionURL(ctx.Repo.Repository),
|
2020-04-21 13:48:53 +00:00
|
|
|
RepositoryURL: ctx.Repo.Repository.APIURL(),
|
2016-12-24 01:53:11 +00:00
|
|
|
})
|
|
|
|
} else {
|
2019-03-19 02:29:43 +00:00
|
|
|
ctx.NotFound()
|
2016-12-24 01:53:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Watch the repo specified in ctx, as the authenticated user
|
|
|
|
func Watch(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2022-05-20 14:08:52 +00:00
|
|
|
err := repo_model.WatchRepo(ctx, ctx.Doer.ID, ctx.Repo.Repository.ID, true)
|
2016-12-24 01:53:11 +00:00
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "WatchRepo", err)
|
2016-12-24 01:53:11 +00:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, api.WatchInfo{
|
2016-12-24 01:53:11 +00:00
|
|
|
Subscribed: true,
|
|
|
|
Ignored: false,
|
|
|
|
Reason: nil,
|
2017-12-11 04:37:04 +00:00
|
|
|
CreatedAt: ctx.Repo.Repository.CreatedUnix.AsTime(),
|
2016-12-24 01:53:11 +00:00
|
|
|
URL: subscriptionURL(ctx.Repo.Repository),
|
2020-04-21 13:48:53 +00:00
|
|
|
RepositoryURL: ctx.Repo.Repository.APIURL(),
|
2016-12-24 01:53:11 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unwatch the repo specified in ctx, as the authenticated user
|
|
|
|
func Unwatch(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2022-05-20 14:08:52 +00:00
|
|
|
err := repo_model.WatchRepo(ctx, ctx.Doer.ID, ctx.Repo.Repository.ID, false)
|
2016-12-24 01:53:11 +00:00
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "UnwatchRepo", err)
|
2016-12-24 01:53:11 +00:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2016-12-24 01:53:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// subscriptionURL returns the URL of the subscription API endpoint of a repo
|
2021-12-10 01:27:50 +00:00
|
|
|
func subscriptionURL(repo *repo_model.Repository) string {
|
2020-04-21 13:48:53 +00:00
|
|
|
return repo.APIURL() + "/subscription"
|
2016-12-24 01:53:11 +00:00
|
|
|
}
|