2014-05-01 03:48:01 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2020-01-24 19:00:29 +00:00
|
|
|
// Copyright 2020 The Gitea Authors.
|
2014-05-01 03:48:01 +00:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-12-04 22:16:42 +00:00
|
|
|
package user
|
2014-05-01 03:48:01 +00:00
|
|
|
|
|
|
|
import (
|
2018-10-23 02:57:42 +00:00
|
|
|
"net/http"
|
2017-02-11 04:00:01 +00:00
|
|
|
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-11-10 04:41:51 +00:00
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2020-01-24 19:00:29 +00:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2014-05-01 03:48:01 +00:00
|
|
|
)
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// Search search users
|
2016-03-13 22:49:16 +00:00
|
|
|
func Search(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation GET /users/search user userSearch
|
|
|
|
// ---
|
|
|
|
// summary: Search for users
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: q
|
|
|
|
// in: query
|
|
|
|
// description: keyword
|
|
|
|
// type: string
|
2018-10-18 08:44:51 +00:00
|
|
|
// - name: uid
|
|
|
|
// in: query
|
|
|
|
// description: ID of the user to search for
|
|
|
|
// type: integer
|
2018-10-21 03:40:42 +00:00
|
|
|
// format: int64
|
2020-01-24 19:00:29 +00:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
2017-11-13 07:02:25 +00:00
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 04:57:38 +00:00
|
|
|
// description: page size of results
|
2017-11-13 07:02:25 +00:00
|
|
|
// type: integer
|
|
|
|
// responses:
|
|
|
|
// "200":
|
2018-09-21 08:56:26 +00:00
|
|
|
// description: "SearchResults of a successful search"
|
|
|
|
// schema:
|
|
|
|
// type: object
|
|
|
|
// properties:
|
|
|
|
// ok:
|
|
|
|
// type: boolean
|
|
|
|
// data:
|
|
|
|
// type: array
|
|
|
|
// items:
|
|
|
|
// "$ref": "#/definitions/User"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2020-06-21 08:22:06 +00:00
|
|
|
listOptions := utils.GetListOptions(ctx)
|
|
|
|
|
2021-08-30 18:00:59 +00:00
|
|
|
users, maxResults, err := models.SearchUsers(&models.SearchUserOptions{
|
2021-06-26 19:53:14 +00:00
|
|
|
Actor: ctx.User,
|
2021-08-11 15:08:52 +00:00
|
|
|
Keyword: ctx.FormTrim("q"),
|
2021-07-29 01:42:15 +00:00
|
|
|
UID: ctx.FormInt64("uid"),
|
2020-01-24 19:00:29 +00:00
|
|
|
Type: models.UserTypeIndividual,
|
2020-06-21 08:22:06 +00:00
|
|
|
ListOptions: listOptions,
|
2021-08-30 18:00:59 +00:00
|
|
|
})
|
2014-05-01 03:48:01 +00:00
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusInternalServerError, map[string]interface{}{
|
2014-08-26 10:11:15 +00:00
|
|
|
"ok": false,
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
2014-05-01 03:48:01 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-06-21 08:22:06 +00:00
|
|
|
ctx.SetLinkHeader(int(maxResults), listOptions.PageSize)
|
2021-08-12 12:43:08 +00:00
|
|
|
ctx.SetTotalCountHeader(maxResults)
|
2020-06-21 08:22:06 +00:00
|
|
|
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, map[string]interface{}{
|
2014-05-01 03:48:01 +00:00
|
|
|
"ok": true,
|
2021-06-17 14:02:34 +00:00
|
|
|
"data": convert.ToUsers(ctx.User, users),
|
2014-05-01 03:48:01 +00:00
|
|
|
})
|
|
|
|
}
|
2014-11-18 16:07:16 +00:00
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// GetInfo get user's information
|
2016-03-13 22:49:16 +00:00
|
|
|
func GetInfo(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation GET /users/{username} user userGet
|
|
|
|
// ---
|
|
|
|
// summary: Get a user
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of user to get
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/User"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2021-01-24 15:23:05 +00:00
|
|
|
u := GetUserByParams(ctx)
|
2021-06-26 19:53:14 +00:00
|
|
|
|
2021-01-24 15:23:05 +00:00
|
|
|
if ctx.Written() {
|
2014-11-18 16:07:16 +00:00
|
|
|
return
|
|
|
|
}
|
2015-07-14 15:21:34 +00:00
|
|
|
|
2021-11-22 15:21:55 +00:00
|
|
|
if !models.IsUserVisibleToViewer(u, ctx.User) {
|
2021-06-26 19:53:14 +00:00
|
|
|
// fake ErrUserNotExist error message to not leak information about existence
|
|
|
|
ctx.NotFound("GetUserByName", models.ErrUserNotExist{Name: ctx.Params(":username")})
|
|
|
|
return
|
|
|
|
}
|
2021-03-27 16:45:26 +00:00
|
|
|
ctx.JSON(http.StatusOK, convert.ToUser(u, ctx.User))
|
2016-08-11 22:29:39 +00:00
|
|
|
}
|
|
|
|
|
2017-11-13 07:02:25 +00:00
|
|
|
// GetAuthenticatedUser get current user's information
|
2016-08-11 22:29:39 +00:00
|
|
|
func GetAuthenticatedUser(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation GET /user user userGetCurrent
|
|
|
|
// ---
|
|
|
|
// summary: Get the authenticated user
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/User"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2021-03-27 16:45:26 +00:00
|
|
|
ctx.JSON(http.StatusOK, convert.ToUser(ctx.User, ctx.User))
|
2014-11-18 16:07:16 +00:00
|
|
|
}
|
2018-10-23 02:57:42 +00:00
|
|
|
|
|
|
|
// GetUserHeatmapData is the handler to get a users heatmap
|
|
|
|
func GetUserHeatmapData(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /users/{username}/heatmap user userGetHeatmapData
|
|
|
|
// ---
|
|
|
|
// summary: Get a user's heatmap
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of user to get
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/UserHeatmapData"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
2021-01-24 15:23:05 +00:00
|
|
|
user := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
2018-10-23 02:57:42 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-22 02:53:37 +00:00
|
|
|
heatmap, err := models.GetUserHeatmapDataByUser(user, ctx.User)
|
2018-10-23 02:57:42 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetUserHeatmapDataByUser", err)
|
|
|
|
return
|
|
|
|
}
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, heatmap)
|
2018-10-23 02:57:42 +00:00
|
|
|
}
|