2016-11-15 01:33:58 +03:00
// Copyright 2016 The Gogs Authors. All rights reserved.
2020-01-24 22:00:29 +03:00
// Copyright 2020 The Gitea Authors.
2016-11-15 01:33:58 +03: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 20:07:12 +03:00
"net/http"
2016-11-15 01:33:58 +03:00
"code.gitea.io/gitea/models"
2021-09-24 14:32:56 +03:00
"code.gitea.io/gitea/models/db"
2021-12-12 18:48:20 +03:00
repo_model "code.gitea.io/gitea/models/repo"
2021-11-24 12:49:20 +03:00
user_model "code.gitea.io/gitea/models/user"
2016-11-15 01:33:58 +03:00
"code.gitea.io/gitea/modules/context"
2020-12-03 00:38:30 +03:00
"code.gitea.io/gitea/modules/convert"
2019-08-23 19:40:30 +03:00
api "code.gitea.io/gitea/modules/structs"
2020-01-24 22:00:29 +03:00
"code.gitea.io/gitea/routers/api/v1/utils"
2016-11-15 01:33:58 +03:00
)
// getStarredRepos returns the repos that the user with the specified userID has
// starred
2021-11-24 12:49:20 +03:00
func getStarredRepos ( user * user_model . User , private bool , listOptions db . ListOptions ) ( [ ] * api . Repository , error ) {
2020-01-24 22:00:29 +03:00
starredRepos , err := models . GetStarredRepos ( user . ID , private , listOptions )
2016-11-15 01:33:58 +03:00
if err != nil {
return nil , err
}
2017-03-15 03:51:46 +03:00
2016-11-15 01:33:58 +03:00
repos := make ( [ ] * api . Repository , len ( starredRepos ) )
for i , starred := range starredRepos {
2018-11-28 14:26:14 +03:00
access , err := models . AccessLevel ( user , starred )
2016-12-06 02:48:51 +03:00
if err != nil {
return nil , err
}
2020-12-03 00:38:30 +03:00
repos [ i ] = convert . ToRepo ( starred , access )
2016-11-15 01:33:58 +03:00
}
return repos , nil
}
2017-11-13 10:02:25 +03:00
// GetStarredRepos returns the repos that the given user has starred
2016-11-15 01:33:58 +03:00
func GetStarredRepos ( ctx * context . APIContext ) {
2017-11-13 10:02:25 +03: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 22:00:29 +03:00
// - name: page
// in: query
// description: page number of results to return (1-based)
// type: integer
// - name: limit
// in: query
2020-06-09 07:57:38 +03:00
// description: page size of results
2020-01-24 22:00:29 +03:00
// type: integer
2017-11-13 10:02:25 +03:00
// responses:
// "200":
// "$ref": "#/responses/RepositoryList"
2019-12-20 20:07:12 +03:00
2016-11-15 01:33:58 +03:00
user := GetUserByParams ( ctx )
private := user . ID == ctx . User . ID
2020-01-24 22:00:29 +03:00
repos , err := getStarredRepos ( user , private , utils . GetListOptions ( ctx ) )
2016-11-15 01:33:58 +03:00
if err != nil {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusInternalServerError , "getStarredRepos" , err )
2016-11-15 01:33:58 +03:00
}
2019-12-20 20:07:12 +03:00
ctx . JSON ( http . StatusOK , & repos )
2016-11-15 01:33:58 +03:00
}
// GetMyStarredRepos returns the repos that the authenticated user has starred
func GetMyStarredRepos ( ctx * context . APIContext ) {
2017-11-13 10:02:25 +03:00
// swagger:operation GET /user/starred user userCurrentListStarred
// ---
// summary: The repos that the authenticated user has starred
2020-01-24 22:00:29 +03:00
// parameters:
// - name: page
// in: query
// description: page number of results to return (1-based)
// type: integer
// - name: limit
// in: query
2020-06-09 07:57:38 +03:00
// description: page size of results
2020-01-24 22:00:29 +03:00
// type: integer
2017-11-13 10:02:25 +03:00
// produces:
// - application/json
// responses:
// "200":
// "$ref": "#/responses/RepositoryList"
2019-12-20 20:07:12 +03:00
2020-01-24 22:00:29 +03:00
repos , err := getStarredRepos ( ctx . User , true , utils . GetListOptions ( ctx ) )
2016-11-15 01:33:58 +03:00
if err != nil {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusInternalServerError , "getStarredRepos" , err )
2016-11-15 01:33:58 +03:00
}
2021-08-12 15:43:08 +03:00
ctx . SetTotalCountHeader ( int64 ( ctx . User . NumStars ) )
2019-12-20 20:07:12 +03:00
ctx . JSON ( http . StatusOK , & repos )
2016-11-15 01:33:58 +03:00
}
// IsStarring returns whether the authenticated is starring the repo
func IsStarring ( ctx * context . APIContext ) {
2017-11-13 10:02:25 +03: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 20:07:12 +03:00
2021-12-12 18:48:20 +03:00
if repo_model . IsStaring ( ctx . User . ID , ctx . Repo . Repository . ID ) {
2019-12-20 20:07:12 +03:00
ctx . Status ( http . StatusNoContent )
2016-11-15 01:33:58 +03:00
} else {
2019-03-19 05:29:43 +03:00
ctx . NotFound ( )
2016-11-15 01:33:58 +03:00
}
}
// Star the repo specified in the APIContext, as the authenticated user
func Star ( ctx * context . APIContext ) {
2017-11-13 10:02:25 +03: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 20:07:12 +03:00
2021-12-12 18:48:20 +03:00
err := repo_model . StarRepo ( ctx . User . ID , ctx . Repo . Repository . ID , true )
2016-11-15 01:33:58 +03:00
if err != nil {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusInternalServerError , "StarRepo" , err )
2016-11-15 01:33:58 +03:00
return
}
2019-12-20 20:07:12 +03:00
ctx . Status ( http . StatusNoContent )
2016-11-15 01:33:58 +03:00
}
// Unstar the repo specified in the APIContext, as the authenticated user
func Unstar ( ctx * context . APIContext ) {
2017-11-13 10:02:25 +03: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 20:07:12 +03:00
2021-12-12 18:48:20 +03:00
err := repo_model . StarRepo ( ctx . User . ID , ctx . Repo . Repository . ID , false )
2016-11-15 01:33:58 +03:00
if err != nil {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusInternalServerError , "StarRepo" , err )
2016-11-15 01:33:58 +03:00
return
}
2019-12-20 20:07:12 +03:00
ctx . Status ( http . StatusNoContent )
2016-11-15 01:33:58 +03:00
}