2016-12-23 20:53:11 -05:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-12-23 20:53:11 -05:00
|
|
|
|
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
2022-11-19 03:12:33 -05:00
|
|
|
std_context "context"
|
2019-12-20 12:07:12 -05:00
|
|
|
"net/http"
|
|
|
|
|
2021-09-24 07:32:56 -04:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-05-11 06:09:36 -04:00
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2021-12-09 20:27:50 -05:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 04:49:20 -05:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-12-23 20:53:11 -05:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-08-23 12:40:30 -04:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2020-01-24 14:00:29 -05:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2022-12-28 21:57:15 -05:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2016-12-23 20:53:11 -05:00
|
|
|
)
|
|
|
|
|
2021-08-12 08:43:08 -04:00
|
|
|
// getWatchedRepos returns the repos that the user with the specified userID is watching
|
2022-11-19 03:12:33 -05: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-23 20:53:11 -05:00
|
|
|
if err != nil {
|
2021-08-12 08:43:08 -04:00
|
|
|
return nil, 0, err
|
2016-12-23 20:53:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
repos := make([]*api.Repository, len(watchedRepos))
|
|
|
|
for i, watched := range watchedRepos {
|
2023-06-22 09:08:08 -04:00
|
|
|
permission, err := access_model.GetUserRepoPermission(ctx, watched, user)
|
2016-12-23 20:53:11 -05:00
|
|
|
if err != nil {
|
2021-08-12 08:43:08 -04:00
|
|
|
return nil, 0, err
|
2016-12-23 20:53:11 -05:00
|
|
|
}
|
2023-06-22 09:08:08 -04:00
|
|
|
repos[i] = convert.ToRepo(ctx, watched, permission)
|
2016-12-23 20:53:11 -05:00
|
|
|
}
|
2021-08-12 08:43:08 -04: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-13 02:02:25 -05: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 11:20:28 -04:00
|
|
|
// required: true
|
2020-01-24 14:00:29 -05:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 00:57:38 -04:00
|
|
|
// description: page size of results
|
2020-01-24 14:00:29 -05:00
|
|
|
// type: integer
|
2017-11-13 02:02:25 -05:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/RepositoryList"
|
2023-09-12 22:37:54 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2022-03-26 05:04:22 -04:00
|
|
|
private := ctx.ContextUser.ID == ctx.Doer.ID
|
2022-11-19 03:12:33 -05:00
|
|
|
repos, total, err := getWatchedRepos(ctx, ctx.ContextUser, private, utils.GetListOptions(ctx))
|
2016-12-23 20:53:11 -05:00
|
|
|
if err != nil {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "getWatchedRepos", err)
|
2016-12-23 20:53:11 -05:00
|
|
|
}
|
2021-08-12 08:43:08 -04:00
|
|
|
|
|
|
|
ctx.SetTotalCountHeader(total)
|
2019-12-20 12:07:12 -05: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-13 02:02:25 -05:00
|
|
|
// swagger:operation GET /user/subscriptions user userCurrentListSubscriptions
|
|
|
|
// ---
|
|
|
|
// summary: List repositories watched by the authenticated user
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
2020-01-24 14:00:29 -05:00
|
|
|
// parameters:
|
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 00:57:38 -04:00
|
|
|
// description: page size of results
|
2020-01-24 14:00:29 -05:00
|
|
|
// type: integer
|
2017-11-13 02:02:25 -05:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/RepositoryList"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2022-11-19 03:12:33 -05:00
|
|
|
repos, total, err := getWatchedRepos(ctx, ctx.Doer, true, utils.GetListOptions(ctx))
|
2016-12-23 20:53:11 -05:00
|
|
|
if err != nil {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "getWatchedRepos", err)
|
2016-12-23 20:53:11 -05:00
|
|
|
}
|
2021-08-12 08:43:08 -04:00
|
|
|
|
|
|
|
ctx.SetTotalCountHeader(total)
|
2019-12-20 12:07:12 -05: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-13 02:02:25 -05: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 09:03:05 -04:00
|
|
|
// "404":
|
|
|
|
// description: User is not watching this repo or repo do not exist
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2023-09-15 02:13:19 -04:00
|
|
|
if repo_model.IsWatching(ctx, ctx.Doer.ID, ctx.Repo.Repository.ID) {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.JSON(http.StatusOK, api.WatchInfo{
|
2016-12-23 20:53:11 -05:00
|
|
|
Subscribed: true,
|
|
|
|
Ignored: false,
|
|
|
|
Reason: nil,
|
2017-12-10 23:37:04 -05:00
|
|
|
CreatedAt: ctx.Repo.Repository.CreatedUnix.AsTime(),
|
2016-12-23 20:53:11 -05:00
|
|
|
URL: subscriptionURL(ctx.Repo.Repository),
|
2020-04-21 09:48:53 -04:00
|
|
|
RepositoryURL: ctx.Repo.Repository.APIURL(),
|
2016-12-23 20:53:11 -05:00
|
|
|
})
|
|
|
|
} else {
|
2019-03-18 22:29:43 -04:00
|
|
|
ctx.NotFound()
|
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-13 02:02:25 -05: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"
|
2023-09-12 22:37:54 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2022-05-20 10:08:52 -04:00
|
|
|
err := repo_model.WatchRepo(ctx, ctx.Doer.ID, ctx.Repo.Repository.ID, true)
|
2016-12-23 20:53:11 -05:00
|
|
|
if err != nil {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "WatchRepo", err)
|
2016-12-23 20:53:11 -05:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.JSON(http.StatusOK, api.WatchInfo{
|
2016-12-23 20:53:11 -05:00
|
|
|
Subscribed: true,
|
|
|
|
Ignored: false,
|
|
|
|
Reason: nil,
|
2017-12-10 23:37:04 -05:00
|
|
|
CreatedAt: ctx.Repo.Repository.CreatedUnix.AsTime(),
|
2016-12-23 20:53:11 -05:00
|
|
|
URL: subscriptionURL(ctx.Repo.Repository),
|
2020-04-21 09:48:53 -04:00
|
|
|
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-13 02:02:25 -05: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"
|
2023-09-12 22:37:54 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2022-05-20 10:08:52 -04:00
|
|
|
err := repo_model.WatchRepo(ctx, ctx.Doer.ID, ctx.Repo.Repository.ID, false)
|
2016-12-23 20:53:11 -05:00
|
|
|
if err != nil {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "UnwatchRepo", err)
|
2016-12-23 20:53:11 -05:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 12:07:12 -05: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
|
2021-12-09 20:27:50 -05:00
|
|
|
func subscriptionURL(repo *repo_model.Repository) string {
|
2020-04-21 09:48:53 -04:00
|
|
|
return repo.APIURL() + "/subscription"
|
2016-12-23 20:53:11 -05:00
|
|
|
}
|